@charset "utf-8";
html, body{
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background: #f3edf5;
}

#inicio {
    width: 100%;
}

#inicio img{
    width: 100%;
    height: auto;
    display: block;
}

.boton-hotmart{
    display: inline-block;
    background: #92247f;
    color: white;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: bold;
    padding: 22px 60px;
    border-radius: 60px;
    transition: 0.3s ease;
    box-shadow: 0 8px 15px rgba(0,0,0,0.15);
	position: absolute;
	left: 190px;
    top: 545px;
}

/* EFECTO AL PASAR EL MOUSE */

.boton-hotmart:hover{
    background: #b12d99;

    transform: translateY(-3px);

    box-shadow: 0 15px 25px rgba(146,36,127,0.35);
}


.contenedor-cards{
    display: flex;
    justify-content: center;
    gap: 120px;
    margin-top: 100px;
	position: absolute;
	 left: 150px;
    top: 1750px;
}

.card{
    width: 230px;
    top: 1713px;
    background: white;
    border-radius: 30px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 8px 15px rgba(0,0,0,0.25);
    transition: all 0.3s ease;
    cursor: pointer;
}

/* IMAGEN */

.card img{
    width: 90px;
    margin-bottom: 20px;
}

/* TITULO */

.card h3{
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    color: #3d3d3d;

    margin-bottom: 10px;
}

/* TEXTO */

.card p{
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: #555;

    line-height: 1.5;
}

/* EFECTO HOVER */

.card:hover{
    transform: translateY(-12px);

    box-shadow: 0 20px 30px rgba(0,0,0,0.35);
}

/* ====== SECCION CHAKRAS ====== */

.contenedor-chakras{
     width: 90%;

    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 45px;

    position: absolute;

    top: 700px;   /* ALTURA */
    left: 50%;

    transform: translateX(-50%);
}

/* CAJA */

.chakra-box{
    background: linear-gradient(90deg, #7b2d68, #b0208c);

    border-radius: 80px;

    padding: 22px 35px;

    display: flex;
    align-items: center;
    gap: 25px;

    box-shadow: 0 10px 20px rgba(0,0,0,0.20);

    transition: all 0.35s ease;

    cursor: pointer;
}

/* EFECTO HOVER */

.chakra-box:hover{
    transform: translateY(-10px);

    box-shadow: 0 22px 35px rgba(0,0,0,0.30);
}

/* NUMERO */

.numero{
    min-width: 90px;
    height: 90px;

    background: white;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 52px;
    font-family: 'Montserrat', sans-serif;
    color: #3d3d3d;

    font-weight: 300;
}

/* TEXTO */

.contenido h3{
    margin: 0 0 10px 0;

    color: white;

    font-size: 30px;

    font-family: 'Montserrat', sans-serif;
}

.contenido p{
    margin: 0;

    color: white;

    font-size: 18px;

    line-height: 1.5;

    font-family: 'Montserrat', sans-serif;
}

/* RESPONSIVE */

@media(max-width: 900px){

    .contenedor-chakras{
        grid-template-columns: 1fr;
    }

    .chakra-box{
        border-radius: 40px;
        padding: 20px;
    }

    .contenido h3{
        font-size: 24px;
    }

    .contenido p{
        font-size: 16px;
    }

    .numero{
        min-width: 75px;
        height: 75px;
        font-size: 42px;
    }
}	

/* ===== BOTON COMPRAR ===== */

.boton-comprar{

    display: inline-block;

    background: linear-gradient(90deg, #b12092, #d12aa7);

    color: white;

    text-decoration: none;

    font-family: 'Montserrat', sans-serif;

    font-size: 28px;

    font-weight: 700;

    padding: 24px 45px;

    border-radius: 25px;

    box-shadow: 0 8px 12px rgba(0,0,0,0.20);

    transition: all 0.35s ease;

    position: absolute;

    left: 50%;

    transform: translateX(-50%);

    top: 4150px; /* AJUSTA LA ALTURA */
	
	width: 820px;

text-align: center;
	
	box-sizing: border-box;
}

/* HOVER */

.boton-comprar:hover{

    background: linear-gradient(90deg, #d12aa7, #ef4fc4);

    transform: translateX(-50%) translateY(-8px);

    box-shadow: 0 18px 25px rgba(177,32,146,0.40);
}
