:root {
    --color-brown: #775c22;
    --color-bg-light: #ffffff;
    --font-header: 'Allrounder', 'Playfair Display', serif;
    --font-footer: 'Cabin', sans-serif;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--color-bg-light);
}

body.no-scroll {
    overflow: hidden; /*util para que el responsive no haga scroll con el menu abierto */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/*HEADER & NAVBAR*/
.main-header {
    background-color: #fff;
    padding: 10px 0;
    /* position: sticky; top: 0; z-index: 1000; (Opcional si queremos que baje al hacer scroll) */
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    /* Alineación vertical centrada */
}

/* Logo Header */
.logo-img {
    max-width: 80px;
    /* Ajusta según el tamaño real de la imagen */
    height: auto;
}

/* Navegación */
.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    /* Espacio entre items del menú */
}

.nav-item {
    position: relative;
}

.nav-item a {
    text-decoration: none;
    color: var(--color-brown);
    font-family: var(--font-header);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
    /* Espacio entre texto y flechita */
}

.nav-item a i {
    font-size: 10px;
    /* Flecha más pequeña */
}

.nav-item a:hover {
    opacity: 0.7;
}

/* Estilos del Dropdown (Submenú) */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgba(255, 255, 255, 0.8);
    min-width: 180px;
    list-style: none;
    padding: 10px 0;
    display: none;
    /* Oculto por defecto */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 100;

}

/* Dropdown color texto */
.dropdown li a {
    color: #775c22 !important;
    text-transform: none;
    padding: 8px 15px;
    display: block;
    font-size: 13px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);

}

.dropdown li a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}


.nav-item:hover .dropdown {
    display: block;
}


/* =========================================
   FOOTER
   ========================================= */
.main-footer {
    background-color: #fff;
    padding: 30px 0;
    border-top: 1px solid #eee;
    font-family: var(--font-footer);
    font-size: 14px;
    color: #4a4a4a;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
}


.footer-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    max-width: 50%;
}

.footer-logo img {
    max-width: 70px;
    display: block;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-align: left;
}

.footer-links a {
    text-decoration: none;
    color: var(--color-brown);
    font-weight: 500;
    display: block;
}

.copyright {
    margin-top: 5px;
    font-size: 12px;
    color: var(--color-brown);
}


.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.btn-contact {
    background-color: #8c734b;
    color: #fff !important;
    padding: 5px 20px;
    border-radius: 20px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: var(--color-brown);
    font-size: 24px;
    text-decoration: none;
    border: 1px solid var(--color-brown);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--color-brown);
    color: #fff;
}


/* =========================================
   CARRUSEL (HERO SECTION)
   ========================================= */
.hero-carousel {
    position: relative;
    width: 100%;
    height: 88.5vh;
    /* Altura del carrusel (85% de la pantalla) */
    overflow: hidden;
    background-color: #f0f0f0;
    /* Color de fondo por si no carga la imagen */
}


.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    /* Oculto por defecto */
    transition: opacity 0.8s ease-in-out;
    /* Efecto suave de desvanecimiento */
    z-index: 1;
}

.slide.active {
    opacity: 1;
    /* Solo mostramos el que tenga la clase 'active' */
    z-index: 2;
}

.img-slide {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.60); 
}

.img-slide-bright{
    width: 100%;
    height: 100%;
    object-fit:cover;
    filter: brightness(1); 
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    width: 80%;
    max-width: 900px;
    z-index: 3;
}

.slide-content h1, 
.slide-content h2 {
    font-family: var(--font-header);
    color: #fff;
    font-weight: 700; 
    font-size: 38px; 
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-transform: uppercase;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.9);
}

/* PÁRRAFOS DEL CARRUSEL */
.slide-content p {
    font-family: var(--font-header); 
    font-size: 18px;
    line-height: 1.6;
    letter-spacing: 1px;
    font-weight: 500; 
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
}

/* Botones de Flechas */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 50px;
    cursor: pointer;
    z-index: 10;
    padding: 20px;
    transition: color 0.3s;
}

.carousel-btn:hover {
    color: #fff;
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}


/* RESPONSIVE */

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: var(--color-brown);
    margin: 3px 0;
    transition: 0.4s;
}

/* Cuando la pantalla es menor de 768px */
@media (max-width: 768px) {

    /* BOTÓN HAMBURGUESA */
    .menu-toggle {
        display: flex;
        z-index: 2000;
        /* Muy alto para que siempre esté visible sobre el menú */
    }

    /* Animación del icono a X cuando está activo */
    .menu-toggle.is-active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .menu-toggle.is-active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.is-active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    /* EL MENÚ LATERAL */
    .main-nav {
        position: fixed;
        /* Fijo en la pantalla, no se mueve al hacer scroll */
        top: 0;
        right: 0;
        /* Pegado a la derecha */
        width: 70%;
        /* Ocupa el 70% del ancho del móvil */
        height: 100vh;
        /* Altura completa de la pantalla */
        background-color: #fff;
        padding-top: 80px;
        /* Espacio arriba para que no tape el botón X */
        /* MAGIA DEL DESLIZAMIENTO */
        transform: translateX(100%);
        /* Lo mueve 100% a la derecha (fuera de la vista) */
        transition: transform 0.4s cubic-bezier(0.77, 0.2, 0.05, 1.0);
        /* Animación suave */

        z-index: 1500;
        /* Por debajo del botón, pero encima del resto */
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        /* Sombra lateral elegante */
        overflow-y: auto;
        /* Permite scroll si el menú es muy alto */
    }

    /* ESTADO ACTIVO (VISIBLE) */
    .main-nav.active {
        transform: translateX(0);
      
    }

    /* ESTILOS DE LA LISTA */
    .nav-list {
        flex-direction: column;
        align-items: center;
      
        width: 100%;
    }

    .nav-item {
        width: 100%;
        text-align: center;
        padding: 20px 0;
        border-bottom: 1px solid #f5f5f5;
    }

    .dropdown {
        position: static;
        background-color: #fafafa;
        box-shadow: none;
        width: 100%;
        display: none;
        padding: 10px 0;
    }

    .nav-item:hover .dropdown {
        display: none; 
    }

    /* Solo se abre si tiene la clase que pusimos con JS */
    .nav-item.active-dropdown .dropdown {
        display: block;
        animation: fadeIn 0.3s ease; 
    }

    /* Pequeña animación para que no sea brusco */
    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }
    
    /* Para que la flechita gire cuando está abierto */
    .nav-item.active-dropdown > a i {
        transform: rotate(180deg);
        transition: transform 0.3s;
    }

    .nav-item a {
        justify-content: center;
        
        font-size: 16px;
       
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-left {
        align-items: center;
        max-width: 100%;
        margin-bottom: 20px;
    }

    .footer-links {
        text-align: center;
    }

    .footer-contact {
        align-items: center;
    }

    .slide-content h2 {
        font-size: 20px;
    }

    .slide-content p {
        font-size: 14px;
    }

    .hero-carousel {
        height: 60vh;
    }

    /* --- ARREGLO FLECHAS CARRUSEL MÓVIL --- */
    /* Las movemos abajo para que no tapen el texto */
    .carousel-btn {
        top: auto;
        bottom: 15px;
        transform: none;
        font-size: 18px;
        width: 35px;
        height: 35px;
        background-color: rgba(0, 0, 0, 0.3);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
    }

    .prev-btn {
        left: 20px;
    }

    .next-btn {
        right: 20px;
    }
}

/*---- Pagina interna de sobre mi casandra: 
----*/

/* Títulos de las Secciones (Mi Historia, Formación...) */
.section-title {
    font-family: var(--font-header); /* Fuente Allrounder */
    color: var(--color-brown);       /* Color Marrón #775c22 */
    font-size: 28px;
    text-align: center;              /* <--- CENTRADOS */
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Espaciado general */
.section-padding {
    padding: 80px 0;
}

.bg-cream {
    background-color: #f9f7f2;
}

/* 1. Page Hero (Cabecera) */
.page-hero {
    /* Fondo con degradado suave sobre la foto */
    background: linear-gradient(rgba(119, 92, 34, 0.3), rgba(119, 92, 34, 0.3)), url('../assets/img/hero/hero-casandra.jpg'); 
    background-size: cover;
    background-position: center;
    background-color: #8c734b;
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-bottom: 40px;
}

.hero-text-box h1 {
    font-family: var(--font-header);
    font-size: 40px;
    letter-spacing: 3px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.hero-quote {
    font-family: var(--font-header);
    font-size: 20px;
    font-style: italic;
    opacity: 0.95;
}

/* 2. Sección Biografía */
.bio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.bio-text p {
    font-family: var(--font-footer);
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    text-align: justify;
}

.bio-image img {
    width: 100%;
    border-radius: 5px;
    box-shadow: 10px 10px 0px rgba(119, 92, 34, 0.1);
}

/* 3. Banner Misión */
.mission-banner {
    background-color: var(--color-brown);
    padding: 60px 20px;
    text-align: center;
    color: #fff;
}

.mission-banner blockquote {
    font-family: var(--font-header);
    font-size: 22px;
    max-width: 800px;
    margin: 0 auto 20px auto;
    line-height: 1.5;
}

.mission-subtitle {
    font-family: var(--font-footer);
    font-size: 16px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* 4. Lista de Credenciales (Formación) */
.credentials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Dos columnas */
    gap: 150px;
    margin-top: 20px;
    max-width: 900px; 
    margin-left: auto; 
    margin-right: auto;
}

.credentials-list {
    list-style: none;    
    padding: 0;        
    margin: 0;           
}

/* ESTILOS DE LOS TÍTULOS ACADÉMICOS (Lo que pedías cambiar) */
.credentials-list li {
    margin-bottom: 15px;
    font-family: var(--font-footer); /* Mantenemos Cabin para que se lea claro */
    color: var(--color-brown);       /* <--- AHORA EN MARRÓN */
    font-weight: 500;                /* Un pelín más gordita la letra */
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.4;
    font-size: 15px;
}

.credentials-list li i {
    color: var(--color-brown);
    margin-top: 3px;
    min-width: 20px; /* Para que el icono no se coma espacio */
}

/* 5. Filosofía y CTA */
.philosophy-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.philosophy-content p {
    font-family: var(--font-footer);
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.cta-box {
    margin-top: 40px;
}

.btn-main {
    display: inline-block;
    padding: 12px 35px;
    background-color: var(--color-brown);
    color: #fff;
    text-decoration: none;
    font-family: var(--font-header);
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    transition: background 0.3s;
}

.btn-main:hover {
    background-color: #5a4519;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .bio-grid, .credentials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .page-hero {
        height: 30vh;
    }

    .hero-text-box h1 {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 24px;
    }

    .bio-image {
        order: -1; 
    }
}
/* --- ESTILOS ESPECÍFICOS PÁGINA BLESSING INDIGO --- */

/* Hero específico con otra imagen (si quieres cambiarla) */
.hero-blessing {
    /* Puedes poner otra imagen aquí */
    background: linear-gradient(rgba(46, 46, 45, 0.3), rgb(94, 87, 73)), url('../assets/img/hero/hero-blessing.jpg');
    background-size: cover;
    background-position: center;
    
}

/* Sección de texto oscuro sobre fondo crema */
.bg-cream.text-dark {
    color: #4a4a4a;
}

.mission-content p {
    font-family: var(--font-footer);
    font-size: 18px;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 20px auto;
    text-align: center;
}

.highlight-text {
    font-weight: 700;
    color: var(--color-brown);
    font-size: 20px;
    margin-top: 30px;
}

/* Cita Grande Final */
.quote-section {
    padding: 100px 0;
    background-color: var(--color-brown);
    text-align: center;
    color: #fff;
}

.big-quote {
    font-family: var(--font-header);
    font-size: 32px;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.4;
}

.quote-section cite {
    font-family: var(--font-footer);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
}
/* --- ESTILOS PÁGINA BLESSING (LOS 3 PILARES) --- */

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columnas */
    gap: 30px;
    text-align: center;
}

.pilar-card {
    background: #fff;
    padding: 40px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.pilar-card:hover {
    transform: translateY(-10px); /* Efecto elevación al pasar ratón */
}

.icon-box {
    font-size: 40px;
    color: var(--color-brown);
    margin-bottom: 20px;
}

.pilar-card h3 {
    font-family: var(--font-header);
    color: var(--color-brown);
    font-size: 20px;
    margin-bottom: 15px;
}

.pilar-card p {
    font-family: var(--font-footer);
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}
.cta-box {
    margin-top: 40px;
    text-align: center;  
    width: 100%;         
}


/* Ajuste responsive para la cita y Responsive para los pilares */
@media (max-width: 768px) {
    .big-quote {
        font-size: 24px;
        padding: 0 20px;
    }
    .pillars-grid {
        grid-template-columns: 1fr; /* 1 columna en móvil */
    }
}


/* --- ESTILOS SECCIÓN ESCUELA --- */

.hero-escuela {
    background: linear-gradient(#955f20, #b9935a);
    background-size: cover;
    background-position: center;
}

/* Grid de Cursos */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsivo automático */
    gap: 40px;
    margin-top: 20px;
}

/* Tarjeta de Curso */
.course-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column; /* Para que el botón se vaya al fondo si hace falta */
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(119, 92, 34, 0.15);
}

.course-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.course-card:hover .course-image img {
    transform: scale(1.05); /* Zoom suave en la imagen */
}

/* Etiqueta de Precio */
.course-price {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background-color: #fff;
    color: var(--color-brown);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-family: var(--font-footer);
    font-size: 14px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Contenido de la tarjeta */
.course-content {
    padding: 25px;
    text-align: center;
    flex-grow: 1; /* Ocupa el espacio restante */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.course-content h3 {
    font-family: var(--font-header);
    color: var(--color-brown);
    font-size: 20px;
    margin-bottom: 15px;
    min-height: 50px; /* Para alinear títulos de 1 y 2 líneas */
    display: flex;
    align-items: center;
    justify-content: center;
}

.course-content p {
    font-family: var(--font-footer);
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Botón de la tarjeta */
.btn-course {
    display: inline-block;
    padding: 10px 25px;
    border: 1px solid var(--color-brown);
    color: var(--color-brown);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s;
    align-self: center; /* Centrar botón */
}

.btn-course:hover {
    background-color: var(--color-brown);
    color: #fff;
}
/* =========================================
   ESTILOS FICHA DE CURSO INDIVIDUAL
   ========================================= */

/* Barra de Detalles (Precio, Duración, Modalidad) */
.course-details-bar {
    background-color: #f9f7f2;
    border: 1px solid var(--color-brown);
    border-radius: 8px;
    padding: 20px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
    text-align: center;
}

.detail-item i {
    font-size: 24px;
    color: var(--color-brown);
    margin-bottom: 10px;
}

.detail-item h4 {
    font-family: var(--font-header);
    font-size: 16px;
    margin-bottom: 5px;
}

.detail-item p {
    font-size: 15px;
    color: #666;
    font-weight: 600;
}

/* Temario (Lista bonita) */
.syllabus-box {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.syllabus-list {
    list-style: none;
    padding: 0;
}

.syllabus-list li {
    padding: 10px 0;
    border-bottom: 1px dashed #eee;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: #555;
    line-height: 1.6;
}

.syllabus-list li:last-child {
    border-bottom: none;
}

.syllabus-list li i {
    color: var(--color-brown);
    margin-top: 5px;
}

/* Tabla de Precios (Para cursos con niveles) */
.price-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.price-table th, .price-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.price-table th {
    background-color: var(--color-brown);
    color: #fff;
    font-family: var(--font-header);
}

.price-table td strong {
    color: var(--color-brown);
}
/* --- ESTILOS MAESTRÍA --- */

.hero-maestria {
    /* Imagen mística/oscura elegante */
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../assets/img/hero/hero-maestria.jpg');
    background-size: cover;
    background-position: center;
}

/* Grid de Módulos */
.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.module-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
}

.module-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.module-header {
    background-color: var(--color-brown);
    color: #fff;
    padding: 10px;
    text-align: center;
    font-family: var(--font-footer);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
}

.module-body {
    padding: 25px;
}

.module-body h3 {
    font-family: var(--font-header);
    color: var(--color-brown);
    font-size: 20px;
    margin-bottom: 15px;
    text-align: center;
}

.module-body ul {
    list-style: none;
    padding: 0;
}

.module-body ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

.module-body ul li::before {
    content: "•";
    color: var(--color-brown);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Módulo Ancho (Prácticas) */
.module-card.full-width {
    grid-column: 1 / -1; /* Ocupa todo el ancho disponible */
    background-color: #fffaf0; /* Un tono un pelín diferente para destacar */
    text-align: center;
}

/* Caja de Precio Premium */
.pricing-box {
    background: #fff;
    border: 2px solid var(--color-brown);
    padding: 50px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    border-radius: 10px;
    position: relative;
}

.pricing-box h2 {
    font-family: var(--font-header);
    color: var(--color-brown);
    font-size: 30px;
    margin-bottom: 10px;
}

.intro-price {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.details-list {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 30px;
    font-size: 16px;
}

.price-tag-big {
    font-size: 45px;
    font-family: var(--font-header);
    color: var(--color-brown);
    font-weight: bold;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
}

.price-tag-big span {
    font-size: 14px;
    font-family: var(--font-footer);
    font-weight: normal;
    color: #888;
    margin-top: 10px;
}

/* Botón Dorado */
.btn-gold {
    background-color: #bfa878; /* Un dorado más brillante */
    border-color: #bfa878;
}

.btn-gold:hover {
    background-color: var(--color-brown);
    border-color: var(--color-brown);
}
/* Estilos para la tarjeta del Premio */
.award-section {
    padding: 60px 20px;
    background-color: #fff; /* Fondo limpio para separar del resto */
}

.award-card {
    background: linear-gradient(135deg, #fdfbf7 0%, #fff 100%);
    border: 1px solid #e0d0a0; /* Borde dorado suave */
    border-radius: 12px;
    padding: 40px;
    display: flex;
    flex-wrap: wrap; /* Para que se adapte a móviles */
    align-items: center;
    gap: 40px;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15); /* Sombra dorada muy sutil */
    max-width: 1000px;
    margin: 0 auto;
}

.award-text {
    flex: 1;
    min-width: 300px;
}

.award-subtitle {
    display: block;
    font-family: 'Cabin', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #b8860b; /* Color Oro oscuro */
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.award-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.2;
}

.award-text p {
    font-family: 'Cabin', sans-serif;
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.award-badge-text {
    display: inline-block;
    background-color: #f0e6ce;
    color: #8b7355;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 0.9rem;
}

.award-badge-text i {
    margin-right: 8px;
    color: #b8860b;
}

.award-image-container {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.award-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 4px solid #fff; /* Marco blanco tipo foto */
}

/* Responsive */
@media (max-width: 768px) {
    .details-list {
        flex-direction: column;
        gap: 10px;
    }
    .pricing-box {
        padding: 30px 20px;
    }
    .award-card {
        flex-direction: column-reverse; /* Pone la imagen arriba en móvil */
        text-align: center;
        padding: 25px;
    }
    
    .award-title {
        font-size: 1.5rem;
    }
}

/*ESTILOS TESTIMONIOS*/
.hero-testimonios-escuela{
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../assets/img/hero/hero-testimonio.jpg');
    background-size: cover;
    background-position: center;

}
.testimonials-grid-full {
    display: grid;
    gap: 40px; /* Separación entre tarjetas */
    max-width: 800px; /* Ancho máximo para que no se lea mal si la línea es muy larga */
    margin: 0 auto;
}

/* La Tarjeta Maestra  */
.testi-full-card.no-video {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

/* Contenido */
.content-side {
    display: flex;
    flex-direction: column;
}

/* Cabecera del alumno (Foto + Nombre) */
.student-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    border-bottom: 1px solid #f5f5f5;
    padding-bottom: 15px;
}

.student-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--color-brown);
    flex-shrink: 0;
}

.student-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.student-info h4 {
    font-family: var(--font-header);
    color: var(--color-brown);
    font-size: 20px;
    margin-bottom: 5px;
}

.course-label {
    display: block;
    font-size: 13px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* La Cita */
.student-quote {
    position: relative;
    margin-bottom: 20px;
}

.student-quote p {
    font-family: var(--font-footer);
    font-size: 16px;
    font-style: italic;
    color: #555;
    line-height: 1.7;
}

/* Comillas decorativas grandes */
.student-quote::before {
    content: '"';
    font-size: 80px;
    color: #f2efe6; /* Color muy suave */
    position: absolute;
    top: -40px;
    left: -20px;
    z-index: -1;
}

/* Redes Sociales */
.student-social a {
    color: #888;
    text-decoration: none;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
    background-color: #fcfcfc;
    padding: 8px 18px;
    border-radius: 20px;
    border: 1px solid #eee;
}

.student-social a:hover {
    color: var(--color-brown);
    border-color: var(--color-brown);
    background-color: #fff;
}

.video-section-separator {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px dashed #ddd; /* Una línea para separar visualmente */
}

.video-section-title {
    font-family: var(--font-header);
    color: var(--color-brown);
    font-size: 22px;
    margin-bottom: 30px;
    text-align: center;
}

.video-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columnas */
    gap: 30px;
}

.simple-video-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.video-wrapper-small {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* Proporción 16:9 exacta */
    height: 0;
    background: #000;
}

.video-wrapper-small iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.simple-video-card p {
    text-align: center;
    padding: 10px;
    font-size: 14px;
    color: #666;
    font-weight: 500;
    margin: 0;
}

/* AJUSTES PARA LA INFO DEBAJO DEL VÍDEO */
.video-info {
    padding: 15px;
    text-align: center;
}

.video-name {
    font-weight: 700;
    color: var(--color-brown);
    margin-bottom: 5px;
    font-size: 15px;
    font-family: var(--font-header);
}

.video-social-link {
    color: #888;
    font-size: 13px;
    text-decoration: none;
    transition: color 0.3s;
}

.video-social-link:hover {
    color: var(--color-brown);
}

/* ESTILO ESPECIAL PARA YOUTUBE SHORTS (VERTICALES) */
.video-wrapper-short {
    position: relative;
    width: 100%;
    padding-bottom: 177.77%; /* Proporción 9:16 (Vertical) */
    height: 0;
    background: #000;
}

.video-wrapper-short iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* CLASE PARA ENFOCAR LA PARTE DE ARRIBA DE LA FOTO */
.focus-top {
    object-position: top center !important; /* Fuerza a mostrar la parte superior */
}
/* Responsive */
@media (max-width: 768px) {
    .testi-full-card.no-video {
        padding: 25px;
    }
    
    .student-header {
        flex-direction: column; /* Foto arriba, nombre abajo en móvil */
        text-align: center;
        gap: 10px;
    }
    
    .student-social {
        text-align: center;
    }
    .video-grid-3 {
        grid-template-columns: 1fr; /* 1 columna en móvil */
    }
}
/* =========================================
   ESTILOS FORMACIONES PRESENCIALES
   ========================================= */


/* Grid de Eventos */
.events-grid {
    display: grid;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

/* Tarjeta de Evento (Diseño Horizontal) */
.event-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    display: flex; /* Para poner fecha a la izq y texto a la derecha */
    align-items: center;
    overflow: hidden;
    border: 1px solid #eee;
    transition: transform 0.3s;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(119, 92, 34, 0.15);
    border-color: var(--color-brown);
}

/* Bloque de Fecha (Izquierda) */
.event-date {
    background-color: var(--color-brown);
    color: #fff;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 120px; /* Ancho fijo para que todas sean iguales */
    height: 100%; /* Ocupa toda la altura */
    align-self: stretch; /* Estirar */
}

.event-date .day {
    font-size: 35px;
    font-weight: 700;
    line-height: 1;
    font-family: var(--font-header);
}

.event-date .month {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 5px;
}

/* Detalles del Evento (Derecha) */
.event-details {
    padding: 25px;
    flex-grow: 1;
}

.event-location {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-weight: 600;
}

.event-location i {
    color: var(--color-brown);
    margin-right: 5px;
}

.event-details h3 {
    font-family: var(--font-header);
    color: var(--color-brown);
    font-size: 22px;
    margin-bottom: 10px;
}

.event-details p {
    font-family: var(--font-footer);
    font-size: 15px;
    color: #555;
    margin-bottom: 20px;
}

/* Botón pequeño dentro de la tarjeta */
.btn-event {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid var(--color-brown);
    color: var(--color-brown);
    text-decoration: none;
    font-size: 12px;
    text-transform: uppercase;
    border-radius: 20px;
    transition: all 0.3s;
    font-weight: 600;
}

.btn-event:hover {
    background-color: var(--color-brown);
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .event-card {
        flex-direction: column; /* Fecha arriba, texto abajo */
        text-align: center;
    }
    
    .event-date {
        width: 100%; /* Fecha ocupa todo el ancho */
        padding: 15px;
        flex-direction: row; /* Día y mes en línea horizontal */
        gap: 10px;
        align-items: baseline;
    }
    
    .event-date .day { font-size: 28px; }
    
    .event-details {
        padding: 20px;
    }
}

/* =========================================
   ESTILOS PÁGINA SERVICIOS / TERAPIAS
   ========================================= */

/* Hero Servicios */
.hero-servicios {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('../assets/img/hero/hero-terapia.avif');
    background-size: cover;
    background-position: center;
}

/* Filas de Servicios (Imagen - Texto) */
.service-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

/* Clase para invertir el orden (Texto - Imagen) */
.service-row.reverse {
    flex-direction: row-reverse;
}

.service-img {
    flex: 1; /* Ocupa la mitad */
    height: 350px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 10px 10px 0px rgba(119, 92, 34, 0.1); /* Sombra sólida elegante */
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-row:hover .service-img img {
    transform: scale(1.05); /* Zoom suave al pasar el ratón */
}

.service-text {
    flex: 1; /* Ocupa la otra mitad */
}

.service-text h3 {
    font-family: var(--font-header);
    color: var(--color-brown);
    font-size: 28px;
    margin-bottom: 20px;
}

.service-text p {
    font-family: var(--font-footer);
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
    text-align: justify;
}

/* Botón de línea simple ("Reservar Sesión") */
.btn-line {
    font-family: var(--font-header);
    color: var(--color-brown);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    border-bottom: 2px solid var(--color-brown);
    padding-bottom: 5px;
    transition: all 0.3s;
}

.btn-line:hover {
    color: #333;
    border-color: #333;
}

/* Grid de Iconos Filosofía */
.features-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin: 50px 0;
    flex-wrap: wrap;
}

.feature-item {
    text-align: center;
    width: 180px;
}

.icon-circle {
    width: 70px;
    height: 70px;
    background-color: #f9f7f2; /* Color crema suave */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    color: var(--color-brown);
    font-size: 28px;
    transition: transform 0.3s;
}

.feature-item:hover .icon-circle {
    transform: translateY(-5px);
    background-color: var(--color-brown);
    color: #fff;
}

.feature-item p {
    font-family: var(--font-header);
    font-size: 16px;
    color: #444;
    line-height: 1.4;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .service-row, .service-row.reverse {
        flex-direction: column; /* Todo en columna vertical */
        gap: 30px;
        margin-bottom: 60px;
    }
    
    .service-img {
        width: 100%;
        height: 250px;
    }

    .service-text {
        text-align: center; /* Centrar textos en móvil */
    }

    .service-text p {
        text-align: center; /* Quitar justificado en móvil */
    }

    .features-grid {
        gap: 30px;
    }
}
/* =========================================
   ESTILOS SERVICIOS A EMPRESAS
   ========================================= */

/* Hero Empresas */
.hero-empresas {
    /* Busca una foto de oficina relajada o equipo */
    background: linear-gradient(rgba(119, 92, 34, 0.4), rgba(119, 92, 34, 0.4)), url('../assets/img/hero/hero-empresas.avif');
    background-size: cover;
    background-position: center;
}

/* Grid de Servicios (4 columnas) */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    border: 1px solid #f9f9f9;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-brown);
}

.card-icon {
    font-size: 40px;
    color: var(--color-brown);
    margin-bottom: 20px;
}

.service-card h3 {
    font-family: var(--font-header);
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.service-card p {
    font-family: var(--font-footer);
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* Sección de Beneficios (Texto izq - Foto der) */
.benefits-box {
    display: flex;
    align-items: center;
    gap: 50px;
}

.benefits-text {
    flex: 1;
}

.benefits-img {
    flex: 1;
}

.benefits-img img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 10px 10px 0px rgba(119, 92, 34, 0.1);
}

.benefits-list {
    list-style: none;
    margin-top: 20px;
    padding: 0;
}

.benefits-list li {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefits-list li i {
    color: var(--color-brown);
    font-size: 18px;
}

/* Responsive */
@media (max-width: 768px) {
    .benefits-box {
        flex-direction: column;
    }
    
    .benefits-text {
        order: 2;
    }
    
    .benefits-img {
        order: 1;
    }
    
    .cta-box {
        text-align: center !important; /* Centrar botón en móvil */
    }
}


/* =========================================
   ESTILOS PÁGINA PODCAST (MEDIOS)
   ========================================= */


/* Grid para las imágenes de Spotify Wrapped */
.wrapped-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columnas */
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.wrapped-card {
    background: #000; /* Fondo negro como la imagen de Spotify */
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s;
    color: #fff;
    display: flex;
    flex-direction: column;
}

.wrapped-card:hover {
    transform: translateY(-5px);
}

.wrapped-card img {
    width: 100%;
    height: auto;
    display: block;
    /* Un pequeño truco para que si la imagen no es perfecta se vea bien */
    border-bottom: 2px solid #1DB954; /* Borde verde Spotify */
}

.wrapped-caption {
    padding: 20px;
    text-align: center;
}

.wrapped-caption h3 {
    font-family: var(--font-header);
    color: #1DB954; /* Verde Spotify */
    font-size: 20px;
    margin-bottom: 10px;
}

.wrapped-caption p {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.5;
}

/* Responsive Wrapped */
@media (max-width: 768px) {
    .wrapped-grid {
        grid-template-columns: 1fr; /* 1 columna en móvil */
        gap: 30px;
    }
}
/* --- ESTILOS PÁGINA ENTREVISTAS --- */

/* Hero Entrevistas (Busca una foto tipo conferencia, micrófono o tele) */
.hero-entrevistas {
    background: linear-gradient(rgba(119, 92, 34, 0.4), rgba(119, 92, 34, 0.4)), url('../assets/img/slides/carrusel3.jpg');
    background-position: center;
}

/* Etiqueta de la fuente del vídeo (ej: Mindalia TV) */
.video-source {
    display: block;
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    margin-top: 5px;
    letter-spacing: 1px;
}

/* --- ESTILOS PRENSA Y COLABORACIONES --- */
.hero-entrevistas-prensa {
    background: linear-gradient(#955f20, #b9935a);
    background-position: center;
}
/* Grid Prensa */
.press-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.press-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
}

.press-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.press-img {
    height: 200px;
    overflow: hidden;
}

.press-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.press-card:hover .press-img img {
    transform: scale(1.05);
}

.press-content {
    padding: 25px;
}

.press-content h3 {
    font-family: var(--font-header);
    color: var(--color-brown);
    font-size: 20px;
    margin-bottom: 10px;
}

.press-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.read-more {
    font-size: 13px;
    color: var(--color-brown);
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
}

/* Grid Colaboraciones */
.colab-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.colab-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    width: 350px;
    text-align: center;
    padding-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.colab-logo {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fcfcfc;
    border-bottom: 1px solid #f0f0f0;
    padding: 20px;
}

.colab-logo img {
    max-height: 80px;
    width: auto;
}

.colab-content {
    padding: 25px;
}

.colab-content h3 {
    font-family: var(--font-header);
    color: var(--color-brown);
    margin-bottom: 15px;
}

.colab-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}
.read-more {
    font-size: 13px;
    color: var(--color-brown);
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none; 
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.read-more:hover {
    text-decoration: underline; /* Que salga la raya solo al pasar el ratón */
}
/* =========================================
   ESTILOS PÁGINA RETIROS (ALMA TRIBU)
   ========================================= */

/* Hero Retiros (Busca una foto de naturaleza, bosque o grupo) */
.hero-retiros {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('../assets/img/hero/hero-retiros.jpg');
    background-size: cover;
    background-position: center;
}

/* Grid de Actividades */
.retreat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.retreat-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    border: 1px solid #f5f5f5;
}

.retreat-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-brown);
}

.retreat-icon {
    font-size: 35px;
    color: var(--color-brown);
    margin-bottom: 20px;
    background-color: #f9f7f2;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px auto;
}

.retreat-card h3 {
    font-family: var(--font-header);
    color: var(--color-brown);
    font-size: 18px;
    margin-bottom: 15px;
}

.retreat-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Caja de Información (Precios y Lugar) */
.retreat-info-box {
    background: #fff;
    border: 2px solid var(--color-brown);
    border-radius: 10px;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.info-header {
    background-color: var(--color-brown);
    color: #fff;
    padding: 30px;
    text-align: center;
}

.info-header h2 {
    font-family: var(--font-header);
    font-size: 28px;
    margin-bottom: 5px;
}

.info-body {
    display: flex;
    justify-content: space-around;
    padding: 40px 20px;
    flex-wrap: wrap;
    gap: 30px;
    text-align: center;
}

.info-item i {
    font-size: 30px;
    color: var(--color-brown);
    margin-bottom: 15px;
}

.info-item h4 {
    font-family: var(--font-header);
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.info-item p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.info-footer {
    padding: 0 30px 40px 30px;
    background-color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .info-body {
        flex-direction: column;
        align-items: center;
    }
    
    .info-item {
        width: 100%;
        border-bottom: 1px solid #eee;
        padding-bottom: 20px;
    }
    
    .info-item:last-child {
        border-bottom: none;
    }
}
/* =========================================
   ESTILOS PÁGINA LIBRO
   ========================================= */

/* Hero Libro (Busca una foto de alguien leyendo o escribiendo, o un fondo místico suave) */
.hero-libro {
    background: linear-gradient(#955f20, #b9935a);
    background-size: cover;
    background-position: center;
}

/* Contenedor Principal Libro (Portada + Info) */
.book-showcase {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.book-cover-container {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.book-img {
    width: 100%;
    max-width: 350px;
    border-radius: 5px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2); /* Sombra potente para efecto 3D */
    transform: rotate(-2deg); /* Un toque desenfadado */
    transition: transform 0.3s;
}

.book-img:hover {
    transform: rotate(0deg) scale(1.02);
}

/* Etiqueta "2ª Edición" */
.edition-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background-color: #d4af37; /* Dorado */
    color: #fff;
    padding: 8px 15px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 12px;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    z-index: 10;
}

/* Info del Libro */
.book-info {
    flex: 1.2;
}

.book-title {
    font-family: var(--font-header);
    color: var(--color-brown);
    font-size: 36px;
    margin-bottom: 5px;
    line-height: 1.2;
}

.book-subtitle {
    font-family: var(--font-footer);
    font-size: 18px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.book-description {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Botón Amazon */
.btn-amazon {
    background-color: #FF9900; /* Naranja Amazon */
    border-color: #FF9900;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-amazon:hover {
    background-color: #e68a00;
}

.book-small-text {
    font-size: 12px;
    color: #999;
    margin-top: 10px;
}

/* Lista de detalles */
.book-details-list {
    max-width: 700px;
    margin: 40px auto 0 auto;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #f0f0f0;
}

.book-details-list ul {
    list-style: none;
    padding: 0;
}

.book-details-list li {
    margin-bottom: 15px;
    font-size: 16px;
    color: #555;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.book-details-list li i {
    color: var(--color-brown);
    margin-top: 4px;
}

/* Caja de Cita Destacada */
.book-highlight-box {
    background-color: var(--color-brown);
    padding: 40px;
    border-radius: 10px;
    margin: 40px 0;
    position: relative;
}

/* Responsive */
@media (max-width: 768px) {
    .book-showcase {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .book-cover-container {
        width: 100%;
    }

    .book-img {
        max-width: 250px;
        transform: rotate(0);
    }

    .edition-badge {
        right: 50%;
        transform: translateX(50%);
        top: -20px;
    }

    .book-title {
        font-size: 28px;
    }
}
/* =========================================
   ESTILOS PÁGINA CONTACTO
   ========================================= */

/* Layout de Contacto (Izquierda Info - Derecha Formulario) */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

/* Info Izquierda */
.info-block {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.info-block i {
    font-size: 24px;
    color: var(--color-brown);
    background-color: #f9f7f2;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.info-block h4 {
    font-family: var(--font-header);
    font-size: 18px;
    margin-bottom: 5px;
    color: #333;
}

.info-block p {
    font-size: 15px;
    color: #666;
}

/* Caja del Formulario */
.contact-form-box {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #f5f5f5;
}

.form-group {
    margin-bottom: 20px;
}

.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.main-form label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #444;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.main-form input, 
.main-form select, 
.main-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: var(--font-footer);
    font-size: 15px;
    background-color: #fcfcfc;
    transition: border 0.3s;
}

.main-form input:focus, 
.main-form select:focus, 
.main-form textarea:focus {
    border-color: var(--color-brown);
    outline: none;
    background-color: #fff;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.form-checkbox input {
    width: auto;
}

.form-checkbox label {
    text-transform: none;
    font-weight: 400;
    font-size: 13px;
    margin: 0;
    color: #666;
}

/* Responsive Contacto */
@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr; /* Una columna en móvil */
        gap: 40px;
    }

    .form-grid-2 {
        grid-template-columns: 1fr; /* Inputs uno debajo de otro */
    }

    .contact-form-box {
        padding: 25px;
    }
}
/* =========================================
   ESTILOS PÁGINAS LEGALES
   ========================================= */
.legal-content {
    max-width: 900px; /* Evita que el texto sea demasiado ancho para leer */
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.8;
    color: #444;
    text-align: justify; /* Justificado para que se vea más formal */
}

.legal-content h3 {
    font-family: var(--font-header);
    color: var(--color-brown);
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 20px;
    text-transform: uppercase;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.legal-content h4 {
    font-family: var(--font-header);
    color: #333;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 18px;
}

.legal-content p {
    margin-bottom: 15px;
}

.legal-content ul {
    list-style: disc; /* Puntos normales */
    margin-left: 20px;
    margin-bottom: 20px;
}

.legal-content li {
    margin-bottom: 10px;
}
/* Esto ya debería estar en tu style.css, revísalo */
.main-form input, 
.main-form select, 
.main-form textarea {
    /* ... otras propiedades ... */
    border: 1px solid #ddd;
    transition: border 0.3s; /* ESTO ES LO IMPORTANTE PARA QUE QUEDE FINO */
}
/* =========================================
   ESTILOS NUEVOS: TARJETA PORTFOLIO / DOSSIER
   ========================================= */

.portfolio-section {
    padding-bottom: 60px; /* Espacio antes de los videos */
}

.portfolio-card {
    display: flex;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08); /* Sombra elegante */
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid #f0f0f0;
}

.portfolio-image {
    flex: 1;
    min-width: 35%; /* La imagen ocupa aprox un tercio */
    position: relative;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Recorta la imagen para llenar el hueco sin deformar */
    display: block;
    min-height: 250px; /* Altura mínima en móviles */
}

.portfolio-content {
    flex: 1.5; /* El texto tiene más espacio que la foto */
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.portfolio-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    color: #775c22; /* Tu color índigo */
    margin-bottom: 15px;
    margin-top: 0;
}

.portfolio-content p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.portfolio-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap; /* Si no caben, bajan a la siguiente línea */
}

/* Estilos de los Botones de Descarga */
.btn-dossier {
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px; /* Espacio entre icono y texto */
    font-family: 'Cabin', sans-serif;
    cursor: pointer;
}

/* Botón Español (Relleno) */
.btn-dossier.primary {
    background-color: #775c22;
    color: white;
    border: 2px solid #775c22;
}

.btn-dossier.primary:hover {
    background-color: #775c22;
    border-color: #775c22;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px #775c22  (75, 0, 130, 0.2);
}

/* Botón Inglés (Borde) */
.btn-dossier.secondary {
    background-color: transparent;
    color: #775c22;
    border: 2px solid #775c22;
}

.btn-dossier.secondary:hover {
    background-color: #775c22;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px #775c22(75, 0, 130, 0.2);
}

/* RESPONSIVE: Adaptación a móviles */
@media (max-width: 768px) {
    .portfolio-card {
        flex-direction: column; /* Pone la foto arriba y texto abajo */
        margin: 0 15px; /* Un poco de margen lateral */
    }

    .portfolio-image {
        height: 200px;
        min-height: auto;
    }

    .portfolio-content {
        padding: 30px 20px;
        text-align: center; /* Texto centrado en móvil */
    }

    .portfolio-buttons {
        justify-content: center;
        flex-direction: column; /* Botones uno encima de otro en móvil muy pequeño */
        width: 100%;
    }

    .btn-dossier {
        justify-content: center;
    }
}
