/* --- VARIABLES (Colores Oficiales) --- */
:root {
--bg-header: #e8dbca;
    --bg-cream: #f7f3da;   /* Segunda sección */
    --bg-peach: #fde1be;   /* Tercera sección */
    --bg-white: #fef9fa;   /* Sección Enfoque */
    
    --text-main: #151515;
    --text-title: #8e6c4b; /* Marrón BioRhyme */
    --text-btn: #473e35;   /* Texto botones */
    --text-red: #a42855;   /* Footer */
    
    --font-heading: 'Cabin', serif;
    --font-body: 'Cabin', sans-serif;
    --font-serif: 'Cardo', serif;
}	

/* --- RESET Y BASE --- */
* { box-sizing: border-box; margin: 0; padding: 0; }

/* --- REGLAS GENERALES --- */
body {
    font-family: var(--font-body); /* Todo el texto será Serif (como en la foto) */
    font-size: var(--size-body);
    color: #473e35; /* Un gris oscuro/marrón como en la foto */
    line-height: 1.6;
    margin: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading); /* Títulos en Serif */
    font-weight: 700; /* Negrita elegante */
    color: #5e4b45; /* Marrón oscuro de la foto */
    margin-top: 0;
}

/* --- BOTONES Y MENÚS (Letra moderna) --- */
button, .btn, .btn-text, .main-nav a, input[type="submit"] {
    font-family: var(--font-ui); /* Cabin */
    letter-spacing: 0.5px;
}

/* Textos Serif (Cuerpo de texto) */
.hero-text p, .text-content p {
    font-family: var(--font-serif);
    font-size: 1.25rem; /* Letra un poco más grande como en la web */
    margin-bottom: 1.2rem;
    color: var(--text-main);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

/* --- HEADER --- */
.site-header {
    background-color: var(--bg-header);
    padding: 15px 0;
    position: relative;
    z-index: 100;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    width: 130px; /* Logo más grande */
    height: auto;
}

/* Navegación Escritorio */
.main-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 32px;
}

.main-nav a {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    color: var(--text-main);
}
.main-nav a:hover, .main-nav a.active {
    color: #b50b08;
}
.nav-plus a { font-size: 1.2rem; }

/* Menú móvil (oculto en PC) */
.menu-toggle { display: none; }
.menu-btn { display: none; }


/* --- HERO SECTION (La parte principal) --- */
.hero-section {
    position: relative;
    
    /* 1. Color de seguridad por si falla la imagen (un tono rosado/crema) */
    background-color: #e8dbca; 
    
    /* 2. Intentamos cargar la imagen. 
       Asegúrate de que tu archivo se llame hero-bg.jpg o hero-bg.jpeg 
       y edita la extensión aquí abajo si hace falta */
    background-image: url('../img/hero-bg.jpeg'); 
    
    background-attachment: fixed;
    background-size: cover;
    background-position: center top;
    
    /* El corte diagonal */
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
    
    padding-top: 60px;
    padding-bottom: 180px;
    margin-bottom: -8vw;
    z-index: 1;
}

/* La Tarjeta Blanca */
.hero-card {
    background-color: var(--bg-white);
    padding: 48px;
    max-width: 650px;
    border-radius: 2px;
    position: relative; /* Para posicionar el sello */
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Sello Flotante */
.hero-badge {
    position: absolute;
    width: 160px; /* Sello grande */
    height: 160px;
    bottom: -60px; /* Que sobresalga por abajo */
    right: -60px;  /* Que sobresalga por la derecha */
    border-radius: 50%;
    z-index: 10;
}

/* --- SECCIONES DE CONTENIDO --- */
.content-section {
    padding: 8rem 0 6rem 0; /* Padding top alto para compensar el corte */
    position: relative;
}

/* Fondos */
.bg-white { background-color: var(--bg-white); z-index: 0; }
.bg-cream { background-color: var(--bg-cream); }
.bg-peach { background-color: var(--bg-peach); }

/* CLASE MÁGICA PARA LAS DIAGONALES (Slanted) */
/* Aplica esto a las secciones 2 y 3 */
.slanted-section {
    /* Mismo corte: empieza plano arriba, corta diagonal abajo */
    /* PERO necesitamos que el TOP sea inclinado también para encajar con la anterior */
    
    /* Truco visual: Usamos margin negativo y clip path en la parte SUPERIOR */
    clip-path: polygon(0 5vw, 100% 0, 100% 100%, 0 100%);
    margin-top: -5vw;
    padding-top: 10vw; /* Empujamos contenido abajo */
    z-index: 2; /* Encima de la anterior */
}

/* Layout Grid */
.grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 50% 50% */
    gap: 4rem;
    align-items: center;
}

/* Imágenes Circulares */
.image-wrapper {
    display: flex;
    justify-content: center;
}
.circle-img {
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    width: 100%;
    max-width: 450px; /* Tamaño máximo controlado */
    object-fit: cover;
}

/* Botón fantasma */
.btn-ghost {
    display: inline-block;
    padding: 12px 24px;
    border: 1px solid var(--text-btn);
    color: var(--text-btn);
    font-family: var(--font-body);
    font-weight: 500;
    margin-top: 2rem;
    border-radius: 4px;
}
.btn-ghost:hover {
    background-color: var(--text-btn);
    color: #fff;
    text-decoration: none;
}

/* --- FOOTER --- */
.site-footer {
    background-color: var(--bg-header);
    color: var(--text-red);
    padding: 6rem 0 3rem 0;
    text-align: center;
    position: relative;
    /* Corte diagonal superior para el footer */
    clip-path: polygon(0 5vw, 100% 0, 100% 100%, 0 100%);
    margin-top: -5vw;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.footer-nav {
    display: flex;
    gap: 30px;
    font-weight: 700;
}

.footer-logo {
    width: 120px;
    margin-bottom: 10px;
}

.brand-name { font-weight: 600; font-size: 1.1rem; }
.copyright { font-size: 0.9rem; }

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

/* --- RESPONSIVE (MÓVIL Y TABLET) --- */

/* Tablet (hasta 1024px) */
@media (max-width: 1024px) {
    h1 { font-size: 2.2rem; }
    .hero-card { margin-right: 20px; }
    .hero-badge { width: 120px; height: 120px; right: -30px; bottom: -40px; }
}

/* Móvil (hasta 768px) */
@media (max-width: 768px) {
    /* Ajustes generales */
    .grid-2-col {
        grid-template-columns: 1fr; /* Una columna */
        gap: 3rem;
        text-align: center;
    }
    
    /* Invertir orden en secciones pares para imagen siempre arriba */
    .col-image { order: -1; }
    
    /* Header Móvil */
    .menu-btn {
        display: block;
        cursor: pointer;
        padding: 10px;
        z-index: 200;
    }
    .menu-btn span {
        display: block;
        width: 25px;
        height: 3px;
        background: var(--text-main);
        margin: 5px 0;
    }
    
    /* Navegación desplegable */
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-header);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }
    .main-nav ul {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }
    /* Abrir menú al hacer check */
    #menu-toggle:checked ~ .main-nav {
        max-height: 400px;
    }

    /* Hero Móvil */
    .hero-section {
        padding-top: 40px;
        padding-bottom: 100px;
        background-position: center center;
    }
    .hero-card {
        padding: 30px;
        margin: 0; /* Quitar margenes laterales */
        width: 100%;
    }
    .hero-badge {
        width: 90px;
        height: 90px;
        bottom: -30px;
        right: 10px; /* Meterlo un poco para que no se corte en pantallas pequeñas */
    }
    h1 { font-size: 2rem; }
    .hero-text p { font-size: 1.1rem; }
    
    /* Ajuste de diagonales en móvil (menos inclinadas) */
    .slanted-section, .site-footer {
        clip-path: polygon(0 30px, 100% 0, 100% 100%, 0 100%);
        margin-top: -30px;
        padding-top: 60px;
    }
    @media (max-width: 768px) {
    .hero-section {
        /* En móviles volvemos al comportamiento normal para evitar errores visuales */
        background-attachment: scroll; 
        }
    }
}
/* --- ESTILOS PÁGINA SOBRE MÍ --- */

:root {
    /* Color específico para esta sección extraído de la imagen */
    --bg-about-brown: #967863; 
    --text-light: #fef9fa; /* Color crema muy claro para el texto */
}

.about-section {
    background-color: var(--bg-about-brown);
    padding: 6rem 0;
    min-height: 80vh; /* Que ocupe casi toda la pantalla */
    display: flex;
    align-items: center;
}

/* Ajustes específicos para el texto en esta sección */
.about-text h1 {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 3rem; /* Título un poco más grande */
}

.about-text p {
    color: var(--text-light);
    font-family: var(--font-serif);
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Ajuste de la imagen en esta página */
.about-photo {
    border: 5px solid rgba(255, 255, 255, 0.1); /* Un borde sutil si quieres */
    max-width: 350px; /* Control de tamaño */
}

/* Responsivo para Sobre mí */
@media (max-width: 768px) {
    .about-section {
        padding: 3rem 0;
    }
    .about-text h1 {
        font-size: 2.2rem;
        text-align: center;
    }
    .about-photo {
        max-width: 250px;
        margin-bottom: 2rem;
    }
}
/* --- ESTILOS PÁGINA SESIONES --- */

.services-section {
    padding: 60px 0;
}

.services-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem auto;
}
.services-header p {
    font-family: var(--font-serif);
    font-size: 1.2rem;
}

/* GRID DE SERVICIOS (3 columnas) */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-card {
    /* Las tarjetas no tienen fondo ni borde visible en el video */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.service-img {
    width: 100%;
    aspect-ratio: 4/3; /* Formato rectangular paisaje */
    object-fit: cover;
    margin-bottom: 16px;
    border-radius: 4px;
}

.service-card h3 {
    font-family: var(--font-heading);
    color: var(--text-title);
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.service-card p {
    font-family: var(--font-serif);
    font-size: 1rem;
    margin-bottom: 16px;
    line-height: 1.5;
}

/* Ajuste botón pequeño para las tarjetas */
.btn-small {
    margin-top: auto; /* Empuja el botón abajo si las tarjetas tienen distinta altura */
    font-size: 0.85rem;
    padding: 8px 16px;
}

/* SECCIÓN ¿CÓMO TRABAJO? */
.methodology-section {
    padding: 60px 0;
}

.methodology-steps {
    max-width: 800px;
    margin-top: 30px;
}

.step-item {
    margin-bottom: 30px;
}

.step-item h4 {
    font-family: var(--font-heading);
    color: var(--text-title);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.step-item p {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--text-main);
}

/* RESPONSIVE SESIONES */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columnas en tablets */
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr; /* 1 columna en móvil */
    }
    .service-card {
        align-items: center; /* Centrar contenido en móvil */
        text-align: center;
    }
    .btn-small { width: 100%; text-align: center; }
}

/* --- ESTILOS PÁGINA CONTACTA --- */

.contact-section {
    padding: 80px 0;
    min-height: 70vh;
}

/* Columna Izquierda (Info) */
.contact-info {
    padding-right: 40px;
}

.contact-intro {
    margin-bottom: 40px;
    font-size: 1.2rem;
    color: var(--text-main);
}

.info-item {
    margin-bottom: 30px;
}

.info-item h3 {
    font-family: var(--font-heading);
    color: var(--text-title);
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.info-item p, .info-item a {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--text-main);
}

/* Columna Derecha (Formulario) */
.contact-form-wrapper {
    background-color: var(--bg-cream); /* Fondo sutil para el form */
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-family: var(--font-body);
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-btn);
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #dcdcdc;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
    background-color: #fff;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--text-title);
    outline: none;
}

/* Checkbox Privacidad */
.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}
.checkbox-group input {
    width: auto;
    margin: 0;
}

/* Botón Sólido (Estilo diferente al ghost) */
.btn-solid {
    display: inline-block;
    width: 100%;
    padding: 15px;
    background-color: var(--text-btn); /* Marrón oscuro */
    color: #fff;
    border: none;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 10px;
}

.btn-solid:hover {
    background-color: var(--text-title); /* Marrón más claro al pasar ratón */
}

/* Responsive Contacto */
@media (max-width: 768px) {
    .contact-info {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }
    .contact-form-wrapper {
        padding: 25px;
    }
}
/* --- ESTILOS PÁGINA DESCARGAS --- */

.downloads-section {
    padding: 60px 0;
    min-height: 60vh;
}

.downloads-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

/* Grid similar al de sesiones pero adaptado */
.downloads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.download-card {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.download-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    border-color: var(--text-title);
}

/* Iconos de archivo */
.file-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.download-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--text-main);
    margin-bottom: 10px;
    text-transform: capitalize;
}

.download-card p {
    font-family: var(--font-serif);
    font-size: 0.95rem;
    color: #777;
    margin-bottom: 20px;
}

/* Botón específico de descarga */
.btn-download {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--text-red); /* Color corporativo */
    color: #fff;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-download:hover {
    background-color: var(--text-btn); /* Cambia a marrón al pasar ratón */
    color: #fff;
}

.empty-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    background: var(--bg-cream);
    border-radius: 8px;
}
/* --- ESTILOS CONTACTA (NUEVO DISEÑO) --- */

.contact-page-section {
    background-color: #f3ece4; /* Color beige de fondo general */
    padding: 60px 0 100px 0;
    min-height: 80vh;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Mitad y mitad */
    gap: 60px;
    align-items: flex-start;
}

/* --- Columna Izquierda (Formulario) --- */
.form-side {
    padding-top: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.95rem;
    margin-bottom: 8px;
    color: var(--text-main);
}

/* Inputs Redondeados Estilo Imagen */
.input-rounded {
    width: 100%;
    padding: 12px 20px;
    background-color: transparent; /* Fondo transparente para ver el beige */
    border: 1px solid #333; /* Borde negro fino */
    border-radius: 25px; /* Bordes muy redondeados */
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
}
.input-rounded:focus {
    border-color: var(--text-title);
    border-width: 1px;
}

textarea.input-rounded {
    border-radius: 20px;
    resize: vertical;
}

/* Checkbox Privacidad */
.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 15px;
}
.form-checkbox input {
    margin-top: 4px;
}

.required-note {
    font-size: 0.8rem;
    margin-bottom: 25px;
}

/* Botón "Envía" redondeado y hueco */
.btn-outline-rounded {
    display: inline-block;
    width: 100%;
    padding: 10px 0;
    background: transparent;
    border: 1px solid #333;
    border-radius: 25px;
    color: #333;
    font-family: var(--font-body);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}
.btn-outline-rounded:hover {
    background-color: #333;
    color: #fff;
}


/* --- Columna Derecha (Visuales) --- */
.info-side {
    text-align: center;
    padding-top: 40px;
}

.contact-title {
    font-family: var(--font-heading);
    color: var(--text-title); /* Marrón */
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 30px;
}

/* Contenedor de la imagen BLOB */
.blob-image-wrapper {
    width: 100%;
    max-width: 400px;
    margin: 0 auto 20px auto;
    position: relative;
}

/* La magia del recorte orgánico */
.blob-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    /* Esto crea la forma irregular (Arco arriba, plano abajo irregular) */
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    /* Opcional: Para hacerlo más irregular como la foto */
    border-radius: 48% 52% 56% 44% / 55% 58% 42% 45%; 
}

.contact-email-text {
    font-family: var(--font-heading); /* BioRhyme */
    font-size: 1.2rem;
    color: var(--text-main);
    margin-bottom: 15px;
}

.social-icons-contact {
    display: flex;
    justify-content: center;
    gap: 15px;
}
.social-icons-contact svg {
    width: 28px;
    height: 28px;
    stroke: #000; /* Iconos negros en esta sección */
}

/* Responsive */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr; /* Una columna */
        gap: 40px;
    }
    
    /* En móvil, primero la imagen/título, luego el formulario */
    .info-side { order: -1; padding-top: 0; }
    .form-side { padding-top: 0; }
    
    .contact-title { font-size: 2rem; }
    .blob-img { max-width: 300px; margin: 0 auto; }
}
/* --- ESTILOS COMENTARIOS (NATIVOS) --- */

.divider-line {
    border: 0;
    border-top: 1px solid #eee;
    margin: 50px 0;
}

.comments-section h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--text-main);
}

/* Lista de Comentarios */
.comments-list {
    margin-bottom: 50px;
}

.comment-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #f9f9f9;
}

.comment-avatar {
    width: 50px;
    height: 50px;
    background-color: #e8dbca; /* Color corporativo */
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.comment-meta strong {
    color: var(--text-title);
    font-size: 1.1rem;
}
.comment-meta span {
    color: #999;
    font-size: 0.9rem;
}

/* El Formulario (Estilo Imagen) */
.comment-form-wrapper {
    background-color: #fff; /* Fondo blanco limpio */
    padding-top: 20px;
}

.small-text {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
}

.comment-form label {
    display: block;
    margin-bottom: 5px;
    color: #444;
    font-family: var(--font-body);
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc; /* Borde gris simple */
    border-radius: 0; /* Cuadrados como en la foto */
    margin-bottom: 20px;
    font-family: var(--font-body);
    font-size: 1rem;
    background: #fff;
}

/* Checkbox */
.checkbox-wrapper {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 25px;
}
.checkbox-wrapper input {
    margin-top: 5px;
}
.checkbox-wrapper label {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

/* Botón Negro (Publicar el comentario) */
.btn-black {
    background-color: #000;
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 30px; /* Muy redondeado */
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-black:hover {
    background-color: #333;
}
/* --- ESPACIO CUANDO NO HAY FOTO EN EL BLOG --- */
.separador-sin-foto {
    height: 60px; /* Altura del espacio en blanco */
    width: 100%;
    background-color: transparent;
    /* Línea decorativa sutil en la parte inferior del espacio */
    border-bottom: 2px dashed #e0e0e0; 
    margin-bottom: 10px; /* Un poco de aire antes del texto */
    position: relative;
}

/* Opcional: Si quieres que solo sea espacio blanco sin línea, 
   borra la línea que dice "border-bottom..." */
/* --- EFECTOS AVANZADOS PARA PÁGINAS DINÁMICAS --- */

/* 1. EFECTO PARALLAX (Fondo Fijo) */
.parallax-container {
    background-attachment: fixed; /* ESTO ES LA MAGIA: La imagen se queda quieta */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 400px; /* Altura mínima */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.parallax-overlay {
    background: rgba(255, 255, 255, 0.85); /* Capa blanca semitransparente encima */
    padding: 40px;
    border-radius: 8px;
    max-width: 800px;
    margin: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* 2. TABLA DE SESIONES (Columnas) */
.grid-sesiones {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Se adapta al móvil solo */
    gap: 30px;
    margin-top: 30px;
}
.card-sesion {
    background: white;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #eee;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}
.card-sesion:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border-color: var(--color-primary);
}
.precio {
    font-size: 2rem;
    color: var(--color-primary);
    font-weight: bold;
    margin: 15px 0;
    font-family: var(--font-heading);
}

/* --- ESTILOS ESTILO VÍDEO (CLON) --- */

/* 1. HERO (Cabecera Inicio) */
.hero-video-style {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 0;
    gap: 40px;
    background-color: var(--color-bg-light); /* Beige suave */
}
.hero-text-content { flex: 1; }
.hero-text-content h1 {
    font-size: 3.5rem;
    color: #473e35;
    line-height: 1.2;
    margin-bottom: 20px;
}
.hero-text-content p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
    max-width: 90%;
}
.badge-logo {
    width: 120px;
    opacity: 0.9;
    margin-top: 20px;
}
.hero-image-content { flex: 1; text-align: right; }
.hero-image-content img {
    max-width: 100%;
    border-radius: 20px 0 0 20px; /* Borde redondeado solo a la izquierda como el video */
    box-shadow: -10px 10px 30px rgba(0,0,0,0.1);
}

/* 2. SECCIONES ALTERNAS (Círculos) */
.section-row {
    padding: 80px 0;
    display: flex;
    align-items: center;
    gap: 60px;
}
.section-row.bg-cream { background-color: var(--color-bg-light); } /* Fondo Beige */
.section-row.bg-white { background-color: #ffffff; } /* Fondo Blanco */

/* Para cambiar el orden (Foto derecha, Texto izquierda) */
.section-row.reverse { flex-direction: row-reverse; }

.circle-img-wrapper { flex: 1; text-align: center; }
.circle-img-wrapper img {
    width: 380px;
    height: 380px;
    object-fit: cover; /* Recorta la foto para que no se deforme */
    border-radius: 50%; /* ¡Círculo perfecto! */
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.text-wrapper { flex: 1; }
.text-wrapper h2 {
    font-size: 2.5rem;
    color: #5e4b45;
    margin-bottom: 20px;
}
.text-wrapper p { font-size: 1.1rem; line-height: 1.8; color: #555; margin-bottom: 30px; }

/* Botón "Más información" del video */
.btn-outline {
    display: inline-block;
    border: 1px solid #5e4b45;
    color: #5e4b45;
    padding: 10px 30px;
    text-decoration: none;
    border-radius: 4px;
    transition: 0.3s;
}
.btn-outline:hover {
    background: #5e4b45;
    color: white;
}

/* Móvil */
@media (max-width: 768px) {
    .hero-video-style, .section-row { flex-direction: column; text-align: center; padding: 40px 20px; }
    .hero-text-content h1 { font-size: 2.5rem; }
    .hero-image-content img { border-radius: 0; }
    .circle-img-wrapper img { width: 280px; height: 280px; }
}

/* --- ESTILOS EXACTOS PÁGINA INICIO --- */

/* 1. HERO (Cabecera) */
.hero-video-style {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 0;
    gap: 50px;
    background-color: #f3ece4; /* Beige Fijo */
}
.hero-text-content { flex: 1; }
.hero-text-content h1 {
    font-size: 3.5rem;
    color: #473e35;
    line-height: 1.2;
    margin-bottom: 20px;
    font-family: 'Cardo', serif; /* Tu fuente elegante */
}
.hero-text-content p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}
.badge-logo { width: 120px; margin-top: 20px; }

.hero-image-content { flex: 1; display: flex; justify-content: flex-end; }
.hero-image-content img {
    max-width: 100%;
    border-radius: 20px 0 0 20px; 
    box-shadow: -10px 10px 30px rgba(0,0,0,0.1);
}

/* 2. SECCIONES ALTERNAS (Círculos) */
.section-row {
    padding: 100px 0; /* Más espacio vertical */
    display: flex;
    align-items: center;
    gap: 80px; /* Más espacio entre foto y texto */
}

/* Fondos */
.bg-cream { background-color: #f3ece4 !important; } /* Beige forzado */
.bg-white { background-color: #ffffff !important; }

/* Invertir orden (Foto derecha) */
.section-row.reverse { flex-direction: row-reverse; }

/* Fotos Redondas */
.circle-img-wrapper { flex: 1; display: flex; justify-content: center; }
.circle-img-wrapper img {
    width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Texto de las secciones */
.text-wrapper { flex: 1; }
.text-wrapper h2 {
    font-size: 2.8rem;
    color: #5e4b45;
    margin-bottom: 25px;
    font-family: 'Cardo', serif;
}
.text-wrapper p { 
    font-size: 1.15rem; 
    line-height: 1.8; 
    color: #555; 
    margin-bottom: 30px; 
}

/* Botón */
.btn-outline {
    display: inline-block;
    border: 1px solid #5e4b45;
    color: #5e4b45;
    padding: 12px 35px;
    text-decoration: none;
    border-radius: 4px;
    font-family: 'Cabin', sans-serif;
    letter-spacing: 1px;
    transition: 0.3s;
}
.btn-outline:hover {
    background: #5e4b45;
    color: white;
}

/* MÓVIL */
@media (max-width: 900px) {
    .hero-video-style, .section-row { flex-direction: column; text-align: center; padding: 50px 20px; gap: 40px; }
    .hero-image-content img { border-radius: 0; }
    .circle-img-wrapper img { width: 280px; height: 280px; }
    .section-row.reverse { flex-direction: column; } /* En móvil siempre foto arriba */
}