/* ================================
   PALETA DE COLORES
   ================================ */

:root {
    --rosa-viejo: #CFA7A0;
    --rosa-profundo: #B98C86;
    --gris-claro: #E6E6E6;
    --gris-humo: #6F6F6F;
    --beige-lineas: #EEDFCC;
    --blanco: #FFFFFF;
}

/* ================================
   RESETEO BÁSICO
   ================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--blanco);
    color: var(--gris-humo);
    line-height: 1.6;
}

/* ================================
   BOTONES
   ================================ */

.btn {
    display: inline-block;
    background-color: var(--rosa-viejo);
    color: var(--blanco);
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s ease;
}

.btn:hover {
    background-color: var(--rosa-profundo);
}

.btn-light {
    display: inline-block;
    background-color: var(--blanco);
    color: var(--rosa-profundo);
    padding: 12px 24px;
    border-radius: 6px;
    border: 2px solid var(--rosa-profundo);
    text-decoration: none;
    transition: 0.3s ease;
}

.btn-light:hover {
    background-color: var(--rosa-profundo);
    color: var(--blanco);
}

/* ================================
   HERO PRINCIPAL
   ================================ */

.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px;
    gap: 40px;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 20px;
}

.hero-form {
    flex: 1;
    background-color: var(--gris-claro);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid var(--beige-lineas);
}

.hero-form input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 6px;
    border: 1px solid var(--gris-humo);
}

.hero-form button {
    width: 100%;
    padding: 12px;
    background-color: var(--rosa-viejo);
    color: var(--blanco);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s ease;
}

.hero-form button:hover {
    background-color: var(--rosa-profundo);
}

/* ================================
   BENEFICIOS
   ================================ */

.beneficios {
    background-color: var(--gris-claro);
    padding: 60px 20px;
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.beneficio img {
    width: 60px;
    margin-bottom: 10px;
}

/* ================================
   SOBRE MÍ Y SOBRE HATHA FLOW YOGA
   ================================ */

.sobre-mi {
    display: flex;
    gap: 40px;
    padding: 80px;
    border-top: 2px solid var(--beige-lineas);
    border-bottom: 2px solid var(--beige-lineas);
    align-items: center; /* CENTRA TODO VERTICALMENTE */
}

/* Imagen ocupa 1/3 del ancho */
.sobre-mi-img {
    flex: 1;
    display: flex;
    justify-content: center;
}

.sobre-mi-img img {
    width: 100%;
    max-width: 350px; /* FOTO MÁS PEQUEÑA */
    border-radius: 10px;
    object-fit: cover;
}

/* Texto ocupa 2/3 del ancho */
.sobre-mi-text {
    flex: 2;
    font-size: 20px; /* LETRA MÁS GRANDE */
    display: flex;
    flex-direction: column;
}

/* Sobre mí alineado arriba */
.sobre-mi-arriba {
    justify-content: flex-start;
}

/* Sobre Hatha Flow Yoga alineado abajo */
.sobre-mi-abajo {
    justify-content: flex-end;
}

.sobre-mi-text h2 {
    color: var(--rosa-profundo);
    margin-bottom: 20px;
    font-size: 30px;
}

/* ================================
   MANTRA DEL DÍA
   ================================ */

.mantra {
    background-color: #F4E9E7;
    padding: 60px 20px;
    text-align: center;
}

.mantra-box {
    background-color: var(--blanco);
    border: 2px solid var(--beige-lineas);
    padding: 30px;
    border-radius: 10px;
    display: inline-block;
}

.mantra-box h3 {
    margin-bottom: 10px;
    color: var(--rosa-profundo);
}

/* ================================
   RESEÑAS
   ================================ */

.reviews {
    background-color: var(--gris-claro);
    padding: 60px 20px;
    text-align: center;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.review-img {
    width: 100%;
    border-radius: 10px;
    border: 1px solid var(--beige-lineas);
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.review-img.show {
    opacity: 1;
}

/* ================================
   CTA FINAL
   ================================ */

.cta-final {
    background-color: var(--rosa-viejo);
    padding: 80px 20px;
    text-align: center;
    color: var(--blanco);
}

/* ================================
   FOOTER
   ================================ */

.footer {
    padding: 20px;
    text-align: center;
    background-color: var(--blanco);
    color: var(--gris-humo);
}

/* ================================
   ANIMACIONES
   ================================ */

.fade-in, .fade-up, .fade-left, .fade-right {
    opacity: 0;
    transform: translateY(20px);
    transition: 0.8s ease;
}

.fade-left {
    transform: translateX(-30px);
}

.fade-right {
    transform: translateX(30px);
}

.show {
    opacity: 1;
    transform: translate(0,0);
}

/* ================================
   RESPONSIVE
   ================================ */

@media (max-width: 900px) {

    .hero {
        flex-direction: column;
        padding: 40px;
    }

    .sobre-mi {
        flex-direction: column;
        padding: 40px;
        text-align: center;
    }

    .sobre-mi-img img {
        max-width: 260px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }
}