/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600&display=swap');

/* Prevenir overflow horizontal */
html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Variables de colores según tu paleta - Algoritmo 3-6-9 Tesla */
:root {
    --dorado-mostaza: #D79A29;
    --verde-azulado: #005B5C;
    --verde-teal: #2C5530;
    --blanco: #FFFFFF;
    --gris-suave: #E6E6E6;
    --texto-oscuro: #333333;
    
    /* Tamaños tipográficos basados en algoritmo 3-6-9 */
    --font-size-small: 12px;    /* 3 x 4 */
    --font-size-base: 15px;     /* 3 x 5 */  
    --font-size-medium: 18px;   /* 3 x 6 */
    --font-size-large: 21px;    /* 3 x 7 */
    --font-size-xl: 24px;       /* 3 x 8 */
    --font-size-xxl: 27px;      /* 3 x 9 */
    --font-size-hero: 36px;     /* 3 x 12 */
    
    /* Espaciado basado en algoritmo 3-6-9 */
    --space-3: 3px;
    --space-6: 6px;
    --space-9: 9px;
    --space-18: 18px;   /* 3 x 6 */
    --space-27: 27px;   /* 3 x 9 */
    --space-36: 36px;   /* 3 x 12 */
    --space-54: 54px;   /* 3 x 18 */
}

/* Estilos generales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--blanco);
    color: var(--texto-oscuro);
    line-height: 1.8; /* Múltiplo de 6 (1.2 x 1.5) */
    font-size: var(--font-size-base);
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-18);
}

/* Clases específicas del algoritmo Tesla 3-6-9 */
.tesla-369 {
    /* Aplicar principios de espaciado 3-6-9 */
}

.tesla-369-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-27);
    margin: var(--space-36) 0;
}

.benefits-369 {
    list-style: none;
    padding: 0;
    margin: var(--space-27) 0;
}

.benefits-369 li {
    margin-bottom: var(--space-18);
    font-size: var(--font-size-base);
    line-height: 1.8;
}

/* Títulos con tamaños Tesla 3-6-9 */
h1 { font-size: var(--font-size-hero); line-height: 1.2; margin-bottom: var(--space-36); }
h2 { font-size: var(--font-size-xxl); line-height: 1.3; margin-bottom: var(--space-27); }
h3 { font-size: var(--font-size-xl); line-height: 1.4; margin-bottom: var(--space-18); }
h4 { font-size: var(--font-size-large); line-height: 1.5; margin-bottom: var(--space-18); }
h5 { font-size: var(--font-size-medium); line-height: 1.6; margin-bottom: var(--space-9); }
h6 { font-size: var(--font-size-base); line-height: 1.8; margin-bottom: var(--space-9); }

/* Párrafos con espaciado Tesla */
p {
    margin-bottom: var(--space-18);
    font-size: var(--font-size-base);
    line-height: 1.8;
}

/* Navegación Tesla 3-6-9 - Exactamente 6 elementos */
.tesla-nav-369 {
    display: flex;
    gap: var(--space-27);
}

.tesla-footer-369 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-18);
    text-align: center;
}

/* Responsive para navegación Tesla */
@media (max-width: 768px) {
    .tesla-footer-369 {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-9);
    }
}

/* Optimización móvil mejorada */
@media (max-width: 1024px) {
    .container {
        width: 92%;
        padding: 0 12px;
    }
}

@media (max-width: 768px) {
    .container {
        width: 95%;
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .container {
        width: 98%;
        padding: 0 8px;
    }
}

/* Header y Navegación */
header {
    background-color: var(--blanco);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

/* Enhanced Focus States for Accessibility */
.nav-link:focus,
.logo:focus,
.hero-btn:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 3px solid var(--dorado-mostaza);
    outline-offset: 2px;
    border-radius: 4px;
    box-shadow: 0 0 0 1px var(--verde-azulado);
}

/* Skip to main content link for screen readers */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--verde-azulado);
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 2000;
    border-radius: 4px;
    font-weight: bold;
}

.skip-link:focus {
    top: 6px;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 2.2rem;
    color: var(--verde-azulado);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: transform 0.3s ease;
}

@media (max-width: 768px) {
    .logo {
        font-size: 1.8rem;
        gap: 0.6rem;
    }
    
    .logo-image {
        height: 60px;
        width: 60px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.5rem;
        gap: 0.4rem;
    }
    
    .logo-image {
        height: 48px;
        width: 48px;
    }
}

.logo:hover {
    transform: scale(1.05);
}

.logo-image {
    height: 72px; /* Algoritmo Tesla 3-6-9: 72 = 3 x 24 - Logo más grande */
    width: 72px;
    object-fit: contain;
}

.logo-text {
    color: var(--verde-azulado);
}

.logo span {
    color: var(--dorado-mostaza);
}

.mariana-font {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 600 !important;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-item {
    margin-left: 1.5rem;
}

/* Prevenir line breaks en el navbar ya incluido arriba */

/* Ajuste para pantallas medianas - reducir espaciado */
@media (max-width: 1024px) {
    .nav-item {
        margin-left: 1rem;
    }
    
    .nav-link {
        padding: 0.5rem 0.8rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 900px) {
    .nav-item {
        margin-left: 0.8rem;
    }
    
    .nav-link {
        padding: 0.5rem 0.6rem;
        font-size: 0.85rem;
    }
}

.nav-link {
    text-decoration: none;
    color: var(--texto-oscuro);
    font-weight: 500;
    transition: color 0.3s;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--dorado-mostaza);
}

.nav-link.btn {
    background-color: var(--dorado-mostaza);
    color: var(--blanco);
}

.nav-link.btn:hover {
    background-color: #c0851e;
    color: var(--blanco);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--texto-oscuro);
    transition: all 0.3s;
}

/* Hero Section Moderno */
.hero-modern {
    background: linear-gradient(135deg, var(--verde-azulado) 0%, #006B6C 50%, var(--dorado-mostaza) 100%);
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    gap: 4rem;
}

.hero-text {
    flex: 1;
    color: var(--blanco);
}

.hero-badge {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    display: inline-block;
}

.hero-subtitle {
    display: block;
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.hero-main-title {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 0.3rem;
}

.hero-main-title .highlight {
    color: var(--dorado-mostaza);
    font-style: italic;
}

/* Nueva frase principal del hero */
.main-phrase {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--blanco);
}

.main-phrase span {
    display: block;
    margin-bottom: 0.3rem;
    color: var(--blanco);
}

.main-phrase span:nth-child(2) {
    color: var(--dorado-mostaza);
}

.main-phrase span:nth-child(3) {
    color: #ffffff;
    font-style: italic;
}

/* Responsive para la frase principal */
@media (max-width: 768px) {
    .main-phrase {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .main-phrase {
        font-size: 1.8rem;
    }
}

.hero-description {
    font-size: 1.1rem;
    margin: 2rem 0;
    opacity: 0.9;
    max-width: 400px;
}

.hero-btn {
    background: var(--dorado-mostaza);
    color: var(--blanco);
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(215, 154, 41, 0.4);
}

.hero-btn:hover {
    background: #c0851e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(215, 154, 41, 0.6);
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    object-fit: contain !important;
}

/* Hero Section Original - Mantenemos para compatibilidad */
.hero {
    background: linear-gradient(rgba(0, 91, 92, 0.8), rgba(0, 91, 92, 0.8)), 
                linear-gradient(135deg, var(--verde-azulado) 0%, var(--dorado-mostaza) 100%);
    color: var(--blanco);
    padding: 6rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-block;
    background-color: var(--dorado-mostaza);
    color: var(--blanco);
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid var(--dorado-mostaza);
}

.btn:hover {
    background-color: transparent;
    color: var(--dorado-mostaza);
    border-color: var(--dorado-mostaza);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--blanco);
    color: var(--blanco);
}

.btn-outline:hover {
    background-color: var(--blanco);
    color: var(--verde-azulado);
}

/* Secciones */
.section {
    padding: 5rem 0;
}

.section-alt {
    background-color: var(--gris-suave);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--verde-azulado);
    font-size: 2.5rem;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--texto-oscuro);
    font-size: 1.2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Servicios */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Carrusel Simple de Servicios */
.services-carousel-simple {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.service-slides {
    position: relative;
    min-height: 400px;
}

.service-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.service-slide.active {
    display: block;
    opacity: 1;
}

.carousel-navigation {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.nav-btn {
    background: var(--verde-azulado);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.nav-btn:hover {
    background: var(--dorado-mostaza);
    transform: scale(1.1);
}

.slide-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 2rem;
}

.indicator-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator-dot.active {
    background: var(--verde-azulado);
    transform: scale(1.2);
}

.indicator-dot:hover {
    background: var(--dorado-mostaza);
}

/* Servicios móviles */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .carousel-prev {
        left: -20px;
    }
    
    .carousel-next {
        right: -20px;
    }
    
    .carousel-slide {
        padding: 0 0.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }
    
    .service-icon {
        font-size: 2.5rem;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .service-card p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .services-grid {
        gap: 1rem;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .carousel-prev {
        left: -15px;
    }
    
    .carousel-next {
        right: -15px;
    }
    
    .service-card {
        padding: 1.2rem;
        margin: 0;
    }
    
    .service-icon {
        font-size: 2rem;
    }
}

.service-card {
    background-color: var(--blanco);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    padding: 2rem;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 3rem;
    color: var(--dorado-mostaza);
    margin-bottom: 1rem;
}

.service-card h3 {
    color: var(--verde-azulado);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-card p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Biografía */
.bio {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
}

/* Eliminado estilo conflictivo de .bio-image */

.bio-content h2 {
    color: var(--verde-azulado);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.bio-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* Blog */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.blog-card {
    background-color: var(--blanco);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-image {
    height: 200px;
    background: linear-gradient(135deg, var(--verde-azulado) 0%, var(--dorado-mostaza) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blanco);
    font-size: 1rem;
}

.blog-content {
    padding: 1.5rem;
}

.blog-content h3 {
    color: var(--verde-azulado);
    margin-bottom: 0.5rem;
}

.blog-meta {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* Agendar */
.booking {
    background-color: var(--gris-suave);
    padding: 4rem 0;
    text-align: center;
}

.booking-options {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.booking-btn {
    background-color: var(--verde-azulado);
    color: white;
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.booking-btn:hover {
    background-color: #004445;
}

.booking-btn i {
    font-size: 1.2rem;
}

/* Formularios */
.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--verde-azulado);
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--gris-suave);
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--dorado-mostaza);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

/* Alertas */
.alert {
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Footer */
footer {
    background-color: var(--verde-azulado);
    color: var(--blanco);
    padding: 3rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--dorado-mostaza);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--blanco);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--dorado-mostaza);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    color: var(--blanco);
    font-size: 1.5rem;
    transition: color 0.3s;
    text-decoration: none;
}

.social-icon:hover {
    color: var(--dorado-mostaza);
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 800px) {
    .hamburger {
        display: block;
    }
    
    .tesla-nav-369 {
        flex-direction: column;
        gap: var(--space-18);
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        gap: 0;
        flex-direction: column;
        background-color: var(--blanco);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 1rem 0;
        z-index: 1000;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        margin: 1rem 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .bio {
        grid-template-columns: 1fr;
    }
    
    .booking-options {
        flex-direction: column;
        align-items: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        width: 95%;
    }
    
    .hero {
        padding: 4rem 0;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .service-card,
    .blog-card {
        margin-bottom: 1rem;
    }
}

/* Sección Marianna - Cambio a fondo sólido */
.bio-section {
    background: white;
    padding: 6rem 0;
}

.bio-image-container {
    /* Eliminado - ya no necesitamos contenedor de imagen */
}

.bio-background-image {
    /* Eliminado - ya no usamos imagen de fondo */
}

.bio-overlay {
    /* Convertido en contenedor principal */
    width: 100%;
    height: auto;
    background: transparent;
    z-index: 1;
    display: flex;
    align-items: center;
    color: #333;
    padding: 0;
}

.bio-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.bio-text {
    flex: 1;
    max-width: none;
    padding-right: 0;
}

.bio-image {
    flex: 0 0 400px;
    text-align: center;
    background: none;
    position: relative;
}

.bio-image img {
    width: 350px !important;
    height: 350px !important;
    max-width: 350px;
    min-width: 350px;
    border-radius: 50%;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    object-fit: cover;
    aspect-ratio: 1 !important;
    background: transparent;
    flex-shrink: 0;
    display: block;
}

.bio-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--verde-azulado);
    margin-bottom: 2rem;
    letter-spacing: 2px;
    text-shadow: none;
    position: relative;
    filter: none;
}

.bio-description {
    font-size: 1.1rem !important;
    line-height: 1.8 !important;
    color: #333 !important;
    text-shadow: none !important;
    background: #f8f9fa !important;
    padding: 2rem !important;
    border-radius: 15px !important;
    border: 1px solid #e9ecef !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 10 !important;
}

.bio-description p {
    margin-bottom: 1.5rem !important;
    color: #333 !important;
    display: block !important;
    visibility: visible !important;
}

.bio-description strong {
    color: var(--dorado-mostaza);
}

.bio-link {
    color: var(--dorado-mostaza);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid var(--dorado-mostaza);
    padding-bottom: 2px;
}

.bio-link:hover {
    opacity: 0.8;
}

/* Sección Propuesta de Valor */
.value-proposition-section {
    background: #f8f9fa;
    padding: 4rem 0;
}

.value-proposition-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.propuesta-imagen {
    flex: 0 0 400px;
    text-align: center;
}

.propuesta-imagen img {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    object-fit: cover;
}

.propuesta-texto-completo {
    flex: 1;
    max-width: none;
    padding-left: 0;
}

.value-proposition-content .propuesta-texto-completo p {
    font-size: 1.2rem !important;
    line-height: 1.8 !important;
    color: #333 !important;
    margin: 0 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    text-align: left;
}

@media (max-width: 768px) {
    .value-proposition-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        padding: 0 1rem;
    }
    
    .propuesta-imagen {
        flex: none;
        order: -1;
    }
    
    .propuesta-imagen img {
        max-width: 280px;
    }
    
    .value-proposition-content .propuesta-texto-completo p {
        text-align: center;
    }
}

/* CSS duplicado eliminado - ya está definido arriba */

@media (max-width: 768px) {
    .bio-image img {
        max-width: 280px;
        height: 280px;
    }
}

/* Sección de Eventos */
.events-section {
    background-image: url('/static/images/Conference_event_background_aae7ff6e.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
}

.events-overlay {
    background: rgba(0, 91, 92, 0.85);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.events-content {
    text-align: center;
    color: var(--blanco);
}

.events-brand {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: 3px;
}

.live-badge {
    background: var(--dorado-mostaza);
    color: var(--blanco);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 1.8rem;
    font-weight: 600;
}

.events-title {
    font-size: 2rem;
    font-weight: 600;
    margin: 2rem 0;
    font-style: italic;
}

.events-btn {
    background: var(--dorado-mostaza);
    color: var(--blanco);
    padding: 1rem 3rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.events-btn:hover {
    background: #c0851e;
    transform: translateY(-2px);
}

/* Servicios Modernos */
.services-highlight {
    padding: 6rem 0;
    background: var(--gris-suave);
    min-height: 500px;
}

.service-card-modern {
    background: var(--blanco);
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 350px;
    display: block !important;
    visibility: visible !important;
}

.service-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--verde-azulado), var(--dorado-mostaza));
}

.service-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card-modern .service-icon {
    font-size: 3rem;
    color: var(--verde-azulado);
    margin-bottom: 1.5rem;
}

.service-card-modern h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--verde-azulado);
}

.service-card-modern p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    display: block;
    visibility: visible;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dorado-mostaza);
    margin-bottom: 1.5rem;
}

.service-btn {
    background: var(--verde-azulado);
    color: var(--blanco);
    padding: 0.8rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-btn:hover {
    background: #004a4b;
}

/* Sección de Resultados */
.results-section {
    background: var(--verde-azulado);
    color: var(--blanco);
    padding: 5rem 0;
    text-align: center;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.result-card {
    padding: 2rem;
}

.result-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--dorado-mostaza);
    margin-bottom: 0.5rem;
}

.result-label {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 500;
}

/* CTA Final */
.cta-final {
    background: linear-gradient(135deg, var(--dorado-mostaza), #e6a832);
    color: var(--blanco);
    padding: 5rem 0;
    text-align: center;
}

.cta-final h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-final p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.cta-primary,
.cta-whatsapp {
    padding: 1.2rem 3rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
}

.cta-primary {
    background: var(--verde-azulado);
    color: var(--blanco);
}

.cta-primary:hover {
    background: #004a4b;
    transform: translateY(-2px);
}

.cta-whatsapp {
    background: #25D366;
    color: var(--blanco);
}

.cta-whatsapp:hover {
    background: #20b858;
    transform: translateY(-2px);
}

/* Optimización móvil completa */
@media (max-width: 1024px) {
    .hero-content {
        gap: 2.5rem;
        padding: 0 1rem;
    }
    
    .hero-main-title {
        font-size: 3rem;
    }
    
    .bio-content {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .hero-main-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .main-phrase {
        font-size: 2rem !important;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin: 1.5rem 0;
        max-width: 100%;
        padding: 0 0.5rem;
    }
    
    .hero-actions {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .hero-btn {
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        text-align: center;
    }
    
    /* Sección Marianna optimizada */
    .bio-section {
        padding: 2rem 0;
    }
    
    .bio-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        padding: 0 1rem;
    }
    
    .bio-text {
        padding-right: 0;
        order: 2;
    }
    
    .bio-image {
        flex: none;
        order: 1;
        max-width: 200px;
        margin: 0 auto;
    }
    
    .bio-image img {
        width: 180px !important;
        height: 180px !important;
        max-width: 180px;
        min-width: 180px;
        border-radius: 50%;
    }
    
    .bio-title {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }
    
    .bio-description {
        font-size: 1rem;
        padding: 1.5rem;
        margin: 0 0.5rem;
        color: #333 !important;
    }
    
    .events-brand {
        font-size: 2rem;
    }
    
    .events-title {
        font-size: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .result-number {
        font-size: 2.5rem;
    }
    
    /* Navegación móvil mejorada */
    .navbar {
        padding: 0.8rem 0;
    }
    
    .nav-menu {
        padding: 1rem;
        gap: 1.5rem;
    }
    
    .nav-menu a {
        font-size: 1.1rem;
        padding: 0.8rem 1.2rem;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 0 0.5rem;
        gap: 1.5rem;
    }
    
    .hero-main-title {
        font-size: 2rem;
    }
    
    .main-phrase {
        font-size: 1.6rem !important;
        line-height: 1.3;
    }
    
    .hero-description {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .hero-btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.95rem;
        max-width: 250px;
    }
    
    /* Sección Marianna móvil pequeño */
    .bio-section {
        padding: 1.5rem 0;
    }
    
    .bio-content {
        gap: 1rem;
        padding: 0 0.5rem;
    }
    
    .bio-title {
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
    }
    
    .bio-description {
        font-size: 0.9rem;
        padding: 1rem;
        margin: 0;
        line-height: 1.5;
        color: #333 !important;
    }
    
    .bio-image {
        max-width: 160px;
        margin: 0 auto;
    }
    
    .bio-image img {
        width: 150px !important;
        height: 150px !important;
        max-width: 150px;
        min-width: 150px;
        border-radius: 50%;
    }
}

/* Móviles extra pequeños */
@media (max-width: 360px) {
    .bio-section {
        padding: 1rem 0;
    }
    
    .bio-content {
        gap: 0.8rem;
        padding: 0 0.3rem;
    }
    
    .bio-image {
        max-width: 120px;
    }
    
    .bio-image img {
        width: 110px !important;
        height: 110px !important;
        max-width: 110px;
        min-width: 110px;
        border-radius: 50%;
    }
    
    .bio-title {
        font-size: 1.4rem;
        margin-bottom: 0.6rem;
    }
    
    .bio-description {
        font-size: 0.85rem;
        padding: 0.8rem;
        line-height: 1.4;
    }
    
    /* Formularios táctiles */
    input[type=\"text\"],
    input[type=\"email\"],
    textarea,
    select {
        min-height: 44px;
        font-size: 16px;
        padding: 0.8rem;
    }
    
    button,
    .btn {
        min-height: 44px;
        font-size: 16px;
        padding: 0.8rem 1.2rem;
    }
    
    /* Prevenir zoom en inputs */
    input[type=\"text\"],
    input[type=\"email\"],
    textarea {
        font-size: 16px !important;
    }
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: var(--blanco);
    padding: 4rem 0;
    text-align: center;
}

.newsletter-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form input {
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    min-width: 200px;
    flex: 1;
}

.newsletter-form input::placeholder {
    color: #999;
}

.newsletter-form button {
    background: var(--verde-azulado);
    color: var(--blanco);
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.newsletter-form button:hover {
    background: #004a4b;
    transform: translateY(-2px);
}

/* Footer Moderno */
.footer-modern {
    background: var(--texto-oscuro);
    color: var(--blanco);
    padding: 3rem 0 2rem;
}

.footer-social-section {
    text-align: center;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.footer-logo-image {
    height: 108px;
    width: 108px;
    object-fit: contain;
}

.footer-logo-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    color: var(--blanco);
}

.social-icons-large {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.social-large {
    background: var(--blanco);
    color: var(--texto-oscuro);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-large:hover {
    transform: translateY(-5px);
    background: var(--dorado-mostaza);
    color: var(--blanco);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--blanco);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--dorado-mostaza);
}

.footer-bottom-modern {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-bottom-modern a {
    color: var(--dorado-mostaza);
    text-decoration: none;
}

.footer-bottom-modern a:hover {
    text-decoration: underline;
}

.developer-credit {
    margin-top: 0.5rem;
    font-size: 0.8rem;
    opacity: 0.7;
}

.developer-credit a {
    color: var(--dorado-mostaza);
    font-weight: 500;
}

/* Responsivo para Newsletter y Footer */
@media (max-width: 768px) {
    .newsletter-section h2 {
        font-size: 1.4rem;
        line-height: 1.4;
        margin-bottom: 1.5rem;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 1rem;
    }
    
    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
        max-width: 300px;
    }
    
    .social-icons-large {
        gap: 1rem;
    }
    
    .social-large {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Hero Simple para páginas internas */
.hero-simple {
    background: linear-gradient(135deg, var(--verde-azulado), #007b7d);
    color: var(--blanco);
    padding: 8rem 0 4rem;
    text-align: center;
}

.hero-simple h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--blanco);
}

.hero-simple p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Sección de contenido general */
.section-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.section-content h2 {
    font-size: 2rem;
    color: var(--verde-azulado);
    margin-bottom: 2rem;
}

.section-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

/* Responsivo para hero simple */
@media (max-width: 768px) {
    .hero-simple {
        padding: 6rem 0 3rem;
    }
    
    .hero-simple h1 {
        font-size: 2rem;
    }
    
    .hero-simple p {
        font-size: 1rem;
        padding: 0 1rem;
    }
}

/* Página Mariana - Estilo Marco Antonio Regil */

/* Hero Principal */
.mariana-hero {
    background: linear-gradient(135deg, rgba(0, 91, 92, 0.7), rgba(0, 91, 92, 0.8)), 
                url('/static/images/coach-portrait.png') center/contain;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.mariana-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.mariana-hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mariana-hero-image img {
    width: 500px !important;
    height: 500px !important;
    max-width: 500px;
    min-width: 500px;
    border-radius: 50%;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    object-fit: cover;
    aspect-ratio: 1 !important;
    flex-shrink: 0;
    display: block;
}

/* Sección "Algo sobre mí" con imagen personal */
.about-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--space-54);
    align-items: center;
    margin-top: var(--space-36);
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image img {
    width: 350px !important;
    height: 350px !important;
    max-width: 350px;
    min-width: 350px;
    border-radius: 50%;
    box-shadow: 0 var(--space-18) var(--space-54) rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    object-fit: cover;
    aspect-ratio: 1 !important;
    flex-shrink: 0;
    display: block;
}

.about-image img:hover {
    transform: translateY(-6px);
    box-shadow: 0 var(--space-27) var(--space-54) rgba(0, 0, 0, 0.25);
}

.about-text {
    padding-left: var(--space-18);
}

/* Responsive para imagen personal */
@media (max-width: 768px) {
    .about-layout {
        grid-template-columns: 1fr;
        gap: var(--space-27);
        text-align: center;
    }
    
    .about-image {
        order: -1;
        margin-bottom: var(--space-18);
    }
    
    .about-image img {
        width: 280px !important;
        height: 280px !important;
        max-width: 280px;
        min-width: 280px;
    }
    
    .about-text {
        padding-left: 0;
        text-align: left;
    }
}

/* Sección "Mis hobbies" con imagen de yoga */
.hobbies-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-54);
    align-items: center;
    margin-top: var(--space-36);
}

.hobbies-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hobbies-image img {
    width: 400px !important;
    height: 400px !important;
    max-width: 400px;
    min-width: 400px;
    border-radius: 50%;
    box-shadow: 0 var(--space-18) var(--space-54) rgba(215, 154, 41, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    object-fit: cover;
    aspect-ratio: 1 !important;
    flex-shrink: 0;
    display: block;
}

.hobbies-image img:hover {
    transform: translateY(-6px) rotate(1deg);
    box-shadow: 0 var(--space-27) var(--space-54) rgba(215, 154, 41, 0.4);
}

.hobbies-text {
    padding-right: var(--space-18);
}

/* Responsive para sección hobbies */
@media (max-width: 768px) {
    .hobbies-layout {
        grid-template-columns: 1fr;
        gap: var(--space-27);
        text-align: center;
    }
    
    .hobbies-image {
        order: 1;
        margin-top: var(--space-18);
    }
    
    .hobbies-image img {
        width: 300px !important;
        height: 300px !important;
        max-width: 300px;
        min-width: 300px;
    }
    
    .hobbies-text {
        padding-right: 0;
        text-align: left;
    }
}

/* Sección "Mis raíces" con imagen vintage de infancia */
.roots-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--space-54);
    align-items: center;
    margin-top: var(--space-36);
}

.roots-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.roots-image img {
    width: 380px !important;
    height: 380px !important;
    max-width: 380px;
    min-width: 380px;
    border-radius: 50%;
    box-shadow: 0 var(--space-18) var(--space-54) rgba(0, 91, 92, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    object-fit: cover;
    aspect-ratio: 1 !important;
    flex-shrink: 0;
    filter: sepia(20%) saturate(1.2) brightness(1.1);
    display: block;
}

.roots-image img:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 var(--space-27) var(--space-54) rgba(0, 91, 92, 0.4);
    filter: sepia(10%) saturate(1.3) brightness(1.15);
}

.roots-text {
    padding-left: var(--space-18);
}

/* Responsive para sección raíces */
@media (max-width: 768px) {
    .roots-layout {
        grid-template-columns: 1fr;
        gap: var(--space-27);
        text-align: center;
    }
    
    .roots-image {
        order: -1;
        margin-bottom: var(--space-18);
    }
    
    .roots-image img {
        width: 280px !important;
        height: 280px !important;
        max-width: 280px;
        min-width: 280px;
    }
    
    .roots-text {
        padding-left: 0;
        text-align: left;
    }
}

/* Sección "Maestros y referentes inspiradores" con carrusel */
.mentors-layout {
    display: flex;
    flex-direction: column;
    gap: var(--space-36);
    margin-top: var(--space-36);
}

.mentors-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--space-18);
}

.mentors-carousel-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: var(--space-27);
}

.mentors-carousel {
    position: relative;
    max-width: 400px;
    width: 100%;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: var(--space-18);
    box-shadow: 0 var(--space-18) var(--space-54) rgba(0, 91, 92, 0.3);
}

.carousel-slide {
    display: none;
    width: 100%;
}

.carousel-slide.active {
    display: block;
}

.carousel-slide img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.carousel-slide img:hover {
    transform: scale(1.05);
}

/* Controles del carrusel */
.carousel-prev,
.carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 91, 92, 0.8);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: var(--font-size-xl);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

.carousel-prev:hover,
.carousel-next:hover {
    background: rgba(215, 154, 41, 0.9);
    transform: translateY(-50%) scale(1.1);
}

/* Indicadores del carrusel */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: var(--space-9);
    margin-top: var(--space-18);
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 91, 92, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active,
.indicator:hover {
    background: var(--dorado-mostaza);
    transform: scale(1.2);
}

/* Responsive para carrusel de maestros */
@media (max-width: 768px) {
    .mentors-text {
        text-align: left;
        padding: 0;
    }
    
    .mentors-carousel {
        max-width: 350px;
    }
    
    .carousel-slide img {
        height: 250px;
    }
    
    .carousel-prev,
    .carousel-next {
        width: 40px;
        height: 40px;
        font-size: var(--font-size-large);
    }
}

.mariana-hero-text {
    color: var(--blanco);
    padding-left: 2rem;
}

.mariana-hero-text h1 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    font-style: italic;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.mariana-hero-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.95;
}

/* Historia Personal */
.mariana-story {
    background: var(--blanco);
    padding: 6rem 0;
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text {
    padding-right: 2rem;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #333;
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Sección de Experiencia - Azul */
.mariana-experience {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: var(--blanco);
    padding: 6rem 0;
    position: relative;
}

.mariana-experience::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="3" fill="rgba(255,255,255,0.08)"/><circle cx="40" cy="80" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
}

.experience-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.experience-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.experience-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 3rem 0;
    font-style: italic;
}

/* Sección de Maestros - Naranja */
.mariana-mentors {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: var(--blanco);
    padding: 6rem 0;
}

.mentors-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mentors-text h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.mentors-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.mentors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.mentor-photo {
    aspect-ratio: 1;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mentor-photo i {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.7);
}

.mentor-photo:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px);
}

/* Sección Personal */
.mariana-personal {
    background: linear-gradient(135deg, #0891b2, #06b6d4);
    color: var(--blanco);
    padding: 6rem 0;
    background-image: url('/static/images/coach-portrait.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.mariana-personal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(8, 145, 178, 0.8);
}

.personal-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.personal-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--blanco);
}

.personal-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* CTA Final */
.mariana-cta {
    background: linear-gradient(135deg, var(--verde-azulado) 0%, var(--dorado-mostaza) 100%);
    padding: 6rem 0;
    color: white;
    text-align: center;
}

.cta-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.cta-text {
    padding-right: 2rem;
}

.cta-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: white;
}

.cta-text h2 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    line-height: 1.3;
    margin: 3rem 0;
    font-style: italic;
}

.cta-brand {
    text-align: center;
    padding-left: 2rem;
}

.cta-brand h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    font-weight: 600;
    color: var(--verde-azulado);
    margin-bottom: 2rem;
    letter-spacing: 3px;
    line-height: 1;
}

.cta-buttons-bio {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.cta-buttons-bio a {
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

/* Responsivo para página Mariana */
@media (max-width: 1024px) {
    .mariana-hero-content,
    .story-content,
    .mentors-content,
    .personal-content,
    .cta-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .mariana-hero-text {
        padding-left: 0;
        text-align: center;
        order: 2;
    }
    
    .mariana-hero-image {
        order: 1;
    }
    
    .mariana-hero-text h1 {
        font-size: 2.5rem;
    }
    
    .story-text,
    .cta-text {
        padding-right: 0;
    }
    
    .cta-brand {
        padding-left: 0;
        order: -1;
    }
    
    .cta-brand h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .mariana-hero {
        padding: 2rem 0;
        min-height: auto;
    }
    
    .mariana-hero-text h1 {
        font-size: 2rem;
    }
    
    .mentors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .experience-content h2,
    .personal-text h2 {
        font-size: 1.8rem;
    }
    
    .cta-text h2 {
        font-size: 1.6rem;
    }
    
    .mentors-text h2 {
        font-size: 2rem;
    }
    
    .cta-brand h1 {
        font-size: 2.5rem;
    }
}

/* ====================
   ESTILOS GALERÍA
   ==================== */

/* Sección Preview de Galería en Home */
.gallery-preview {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Galería Interactiva */
.interactive-gallery {
    padding: 6rem 0;
    background: var(--fondo-claro);
}

.gallery-description {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.interactive-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.gallery-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.gallery-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: contain !important;
    transition: transform 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 91, 92, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.1);
}

.interactive-item {
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.interactive-item:hover {
    transform: translateY(-5px);
}

.interactive-item .gallery-image {
    position: relative;
    border-radius: 50%;
    overflow: hidden;
    aspect-ratio: 1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.interactive-item:hover .gallery-image {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.interactive-item .gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover !important;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.gallery-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(218, 165, 32, 0.9), rgba(0, 91, 92, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50%;
}

.gallery-hover-overlay i {
    color: var(--blanco);
    font-size: 2.5rem;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.interactive-item:hover .gallery-hover-overlay {
    opacity: 1;
}

.interactive-item:hover .gallery-hover-overlay i {
    transform: scale(1);
}

.interactive-item:hover .gallery-image img {
    transform: scale(1.02);
    filter: brightness(1.1);
}

.gallery-overlay i {
    color: white;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.gallery-caption {
    padding: 1.5rem;
}

.gallery-caption h4 {
    color: var(--verde-azulado);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.gallery-caption p {
    color: #666;
    font-size: 1rem;
}

.gallery-cta {
    text-align: center;
}

.gallery-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--dorado-mostaza);
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.gallery-btn:hover {
    background: var(--verde-azulado);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Página Principal de Galería */
.gallery-hero {
    background: linear-gradient(135deg, var(--verde-azulado) 0%, #004545 100%);
    color: white;
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.gallery-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/static/images/Conference_event_background_aae7ff6e.png') center/contain;
    opacity: 0.1;
    z-index: 0;
}

.gallery-hero-overlay {
    position: relative;
    z-index: 1;
}

.gallery-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.gallery-hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.gallery-hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 3rem;
}

.gallery-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--dorado-mostaza);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Filtros de Galería */
.gallery-filters {
    background: white;
    padding: 2rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 80px;
    z-index: 500;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    border: 2px solid var(--verde-azulado);
    background: transparent;
    color: var(--verde-azulado);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--verde-azulado);
    color: white;
}

/* Grid Principal de Galería */
.gallery-main {
    padding: 4rem 0;
    background: #f8f9fa;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.gallery-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    opacity: 1;
    transform: scale(1);
}

.gallery-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.gallery-card.hidden {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
}

.gallery-image-container {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.gallery-image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain !important;
    transition: transform 0.3s ease;
}

.gallery-card:hover .gallery-image-container img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,91,92,0.9) 0%, rgba(215,154,41,0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
}

.overlay-content i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.overlay-content h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.overlay-content p {
    font-size: 1rem;
    opacity: 0.9;
}

.gallery-info {
    padding: 1.5rem;
}

.gallery-category {
    display: inline-block;
    background: var(--dorado-mostaza);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.gallery-info h3 {
    font-size: 1.4rem;
    color: var(--verde-azulado);
    margin-bottom: 0.5rem;
}

.gallery-info p {
    color: #666;
    margin-bottom: 1rem;
}

.gallery-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    background: #e9ecef;
    color: #495057;
    padding: 0.2rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Sección Cargar Más */
.load-more-section {
    text-align: center;
    padding: 2rem 0;
}

.load-more-btn {
    background: var(--verde-azulado);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 30px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.load-more-btn:hover {
    background: var(--dorado-mostaza);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.load-more-text {
    color: #666;
    font-size: 0.9rem;
}

/* CTA de Galería */
.gallery-cta {
    background: linear-gradient(135deg, var(--verde-azulado) 0%, #004545 100%);
    color: white;
    padding: 4rem 0;
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--dorado-mostaza);
    color: white;
}

.btn-primary:hover {
    background: #c8881f;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--verde-azulado);
}

/* Modal de Galería */
.gallery-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    z-index: 2001;
}

/* Responsive Galería */
@media (max-width: 768px) {
    .gallery-hero-title {
        font-size: 2.5rem;
    }
    
    .gallery-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .filter-buttons {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gallery-preview-grid {
        grid-template-columns: 1fr;
    }
    
    .interactive-gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }
    
    .interactive-item:hover {
        transform: none;
    }
}

/* Modal para Imágenes */
.image-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    cursor: pointer;
}

.modal-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    z-index: 10;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.modal-image-container {
    max-width: 90%;
    max-height: 90%;
    text-align: center;
}

.modal-image-container img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.modal-image-container h3 {
    color: white;
    margin-top: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Botones de navegación de galería */
.gallery-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 24px;
    padding: 15px 20px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10001;
    backdrop-filter: blur(10px);
}

.gallery-nav-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.gallery-prev {
    left: 30px;
}

.gallery-next {
    right: 30px;
}

/* Contador de imágenes */
.gallery-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    background: rgba(0, 0, 0, 0.5);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    backdrop-filter: blur(10px);
}

/* Responsivo para navegación de galería */
@media (max-width: 768px) {
    .gallery-nav-btn {
        font-size: 18px;
        padding: 12px 15px;
    }
    
    .gallery-prev {
        left: 15px;
    }
    
    .gallery-next {
        right: 15px;
    }
    
    .gallery-counter {
        bottom: 10px;
        font-size: 12px;
        padding: 6px 12px;
    }
}

/* ====================
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 250px;
        justify-content: center;
    }
}

/* ====================
   ESTILOS CONTENIDO BLOG
   ==================== */

/* Estilos para el contenido de artículos del blog */
.blog-post-content {
    color: var(--texto-oscuro);
}

.blog-post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2rem 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: block;
}

.blog-post-content h2 {
    color: var(--verde-azulado);
    margin: 2.5rem 0 1.5rem;
    font-size: 1.8rem;
    font-weight: 600;
    border-bottom: 2px solid var(--dorado-mostaza);
    padding-bottom: 0.5rem;
}

.blog-post-content h3 {
    color: var(--verde-azulado);
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.blog-post-content p {
    margin: 1.5rem 0;
    line-height: 1.8;
}

.blog-post-content ul,
.blog-post-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.blog-post-content li {
    margin: 0.8rem 0;
    line-height: 1.6;
}

.blog-post-content a {
    color: var(--dorado-mostaza);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.blog-post-content a:hover {
    border-bottom-color: var(--dorado-mostaza);
}

.blog-post-content strong {
    color: var(--verde-azulado);
    font-weight: 600;
}

.blog-post-content em {
    color: #666;
    font-style: italic;
}

.blog-post-content blockquote {
    border-left: 4px solid var(--dorado-mostaza);
    margin: 2rem 0;
    padding: 1rem 0 1rem 2rem;
    background: #f8f9fa;
    font-style: italic;
    color: #666;
}

/* Responsive para imágenes del blog */
@media (max-width: 768px) {
    .blog-post-content img {
        margin: 1.5rem 0;
    }
    
    .blog-post-content h2 {
        font-size: 1.5rem;
        margin: 2rem 0 1rem;
    }
    
    .blog-post-content h3 {
        font-size: 1.3rem;
        margin: 1.5rem 0 0.8rem;
    }
}

/* ========================================
   ESTILOS CUESTIONARIO Y NUEVAS SECCIONES
   ======================================== */

/* Sección Cuestionario */
.questionnaire-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

/* Cuestionario móvil optimizado */
@media (max-width: 768px) {
    .questionnaire-section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
        padding: 0 1rem;
        text-align: center;
        line-height: 1.2;
    }
    
    .questionnaire-description {
        font-size: 1rem;
        padding: 0 1rem;
        text-align: center;
        margin-bottom: 2rem;
        line-height: 1.5;
    }
    
    .questionnaire-preview {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .questionnaire-benefits {
        order: 1;
    }
    
    .questionnaire-cta {
        order: 2;
    }
    
    .questionnaire-benefits ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .questionnaire-benefits li {
        font-size: 0.95rem;
        padding: 0.5rem 0;
        margin: 0.3rem 0;
        text-align: left;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
    
    .questionnaire-btn {
        font-size: 1rem;
        padding: 1rem 2rem;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        display: block;
        border-radius: 8px;
    }
}

@media (max-width: 480px) {
    .questionnaire-section {
        padding: 2.5rem 0;
    }
    
    .section-title {
        font-size: 1.7rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .questionnaire-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .questionnaire-benefits li {
        font-size: 0.9rem;
        padding: 0.4rem 0;
    }
    
    .questionnaire-btn {
        font-size: 0.95rem;
        padding: 0.9rem 1.5rem;
        max-width: 280px;
    }
}

.questionnaire-preview {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
    margin-top: 2rem;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.questionnaire-benefits ul {
    list-style: none;
    padding: 0;
}

.questionnaire-benefits li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    color: var(--texto-oscuro);
}

.questionnaire-benefits .fas {
    color: var(--verde-azulado);
}

.questionnaire-btn {
    background: linear-gradient(135deg, var(--verde-azulado), var(--dorado-mostaza));
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    transition: all 0.3s;
}

.questionnaire-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Sección QuererSE */
.quererse-section {
    padding: 5rem 0;
    background: white;
}

.quererse-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.quererse-title {
    font-size: 2.5rem;
    color: var(--verde-azulado);
    margin-bottom: 1.5rem;
}

.quererse-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--texto-oscuro);
    margin-bottom: 2rem;
    max-width: 100%;
    text-align: center;
    width: 100%;
}

.quererse-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.benefit-item i {
    color: var(--dorado-mostaza);
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.quererse-quote {
    font-style: italic;
    font-size: 1.2rem;
    color: var(--dorado-mostaza);
    font-weight: 600;
    margin-bottom: 2rem;
    padding: 1rem;
    border-left: 4px solid var(--dorado-mostaza);
    background: rgba(217, 165, 47, 0.1);
}

.quererse-btn {
    background: var(--dorado-mostaza);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
}

.quererse-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.quererse-image img {
    width: 350px !important;
    height: 350px !important;
    max-width: 350px;
    min-width: 350px;
    border-radius: 50%;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    object-fit: cover;
    aspect-ratio: 1 !important;
    flex-shrink: 0;
    display: block;
}

/* Modal del Cuestionario */
.questionnaire-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    padding: 1rem;
}

.questionnaire-modal .modal-content {
    background: white;
    border-radius: 15px;
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.questionnaire-modal .modal-header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--verde-azulado);
    color: white;
    border-radius: 15px 15px 0 0;
}

.questionnaire-modal .modal-close {
    font-size: 1.5rem;
    cursor: pointer;
    color: white;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.questionnaire-modal .modal-close:hover {
    opacity: 1;
}

.questionnaire-form {
    padding: 2rem;
}

.question-block {
    margin-bottom: 2rem;
}

.question {
    font-weight: 600;
    color: var(--texto-oscuro);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.scale-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.scale-options label {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.5rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.scale-options label:hover {
    background: #f8f9fa;
}

.scale-options input[type="radio"] {
    margin: 0;
}

.questionnaire-submit {
    background: linear-gradient(135deg, var(--verde-azulado), var(--dorado-mostaza));
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s;
}

.questionnaire-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Resultados del Cuestionario */
.questionnaire-results {
    padding: 2rem;
}

.result-header {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.score-display {
    margin-top: 1rem;
}

.score-number {
    font-size: 2.5rem;
    font-weight: bold;
}

.score-total {
    font-size: 1.2rem;
    color: #666;
}

.result-message {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.recommendations {
    margin-bottom: 2rem;
}

.recommendations h4 {
    color: var(--verde-azulado);
    margin-bottom: 1rem;
}

.recommendations ul {
    list-style: none;
    padding: 0;
}

.recommendations li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    padding: 0.5rem;
    background: #f8f9fa;
    border-radius: 5px;
}

.recommendations .fas {
    color: var(--verde-azulado);
}

.result-primary-btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    margin-bottom: 2rem;
}

.result-primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Formulario de Captura de Leads */
.lead-form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.lead-form h4 {
    color: var(--verde-azulado);
    text-align: center;
    margin-bottom: 1.5rem;
}

.lead-form .form-group {
    margin-bottom: 1rem;
}

.lead-form input {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    box-sizing: border-box;
}

.lead-form input:focus {
    outline: none;
    border-color: var(--dorado-mostaza);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.9rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 0.2rem;
}

.download-btn {
    background: linear-gradient(135deg, var(--verde-azulado), var(--dorado-mostaza));
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Actualizar CTA Final */
.cta-secondary {
    background: white;
    color: var(--verde-azulado);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-secondary:hover {
    background: rgba(255,255,255,0.2);
    color: white;
    transform: translateY(-2px);
}

/* Responsive para nuevas secciones */
@media (max-width: 768px) {
    .questionnaire-preview {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .quererse-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .quererse-title {
        font-size: 2rem;
    }
    
    .scale-options {
        gap: 0.3rem;
    }
    
    .scale-options label {
        font-size: 0.9rem;
        padding: 0.4rem;
    }
    
    .questionnaire-modal .modal-content {
        margin: 1rem;
        max-height: 95vh;
    }
    
    .questionnaire-form {
        padding: 1.5rem;
    }
    
    .lead-form {
        padding: 1.5rem;
    }
}

/* ✅ SOLUCIÓN DEFINITIVA - VISIBILIDAD GARANTIZADA */
.bio-description,
.bio-description p,
.value-proposition-content,
.value-proposition-content p {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    color: #222222 !important;
    font-size: 1.1rem !important;
    line-height: 1.7 !important;
    z-index: 10 !important;
    position: relative !important;
    text-indent: 0 !important;
    overflow: visible !important;
    transform: none !important;
    filter: none !important;
    clip: auto !important;
    margin: 1rem 0 !important;
    font-weight: 400 !important;
}

/* Asegurar que no hay elementos padre que oculten el contenido */
.bio-section,
.bio-overlay,
.bio-content,
.bio-text,
.value-proposition-section {
    overflow: visible !important;
    z-index: 1 !important;
    position: relative !important;
}

/* Forzar estilos específicos para párrafos de texto */
.bio-description p {
    color: #333333 !important;
    margin-bottom: 1.5rem !important;
    padding: 0.5rem 0 !important;
}

/* Sección Propuesta de Valor */
.value-proposition-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.value-proposition-content {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.propuesta-image {
    flex: 0 0 220px;
}

.propuesta-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}

.propuesta-texto-completo {
    max-width: 800px;
    line-height: 1.8;
    color: #333;
    text-align: center;
}

.propuesta-texto-completo p {
    text-align: center;
    font-size: 1.1rem;
    margin: 0;
    color: #333333;
}

/* Estilos para página Marianna */
.marianna-hero {
    background: linear-gradient(135deg, var(--verde-azulado) 0%, var(--dorado-mostaza) 100%);
    padding: 6rem 0;
    color: var(--blanco);
}

.marianna-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.marianna-hero-image {
    flex: 0 0 350px;
    text-align: center;
}

.marianna-hero-image img {
    width: 400px !important;
    height: 400px !important;
    max-width: 400px;
    min-width: 400px;
    object-fit: cover;
    object-position: center top;
    border-radius: 50%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    aspect-ratio: 1 !important;
    flex-shrink: 0;
    display: block;
}

.marianna-hero-text {
    flex: 1;
}

.marianna-hero-text h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    opacity: 0.9;
}

/* Secciones de contenido */
.marianna-about,
.marianna-roots,
.marianna-beginnings,
.marianna-learnings,
.marianna-mentors,
.marianna-professional,
.marianna-hobbies {
    padding: 4rem 0;
}

.marianna-about {
    background: #f8f9fa;
}

.marianna-beginnings {
    background: #f8f9fa;
}

.marianna-mentors {
    background: #f8f9fa;
}

.about-content,
.roots-content,
.beginnings-content,
.learnings-content,
.mentors-content,
.professional-content,
.hobbies-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content h2,
.roots-content h2,
.beginnings-content h2,
.learnings-content h2,
.mentors-content h2,
.professional-content h2,
.hobbies-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--verde-azulado);
    margin-bottom: 2rem;
    text-align: center;
}

.about-text,
.roots-text,
.beginnings-text,
.learnings-text,
.mentors-text,
.professional-text,
.hobbies-text {
    text-align: left;
}

.about-text p,
.roots-text p,
.beginnings-text p,
.learnings-text p,
.mentors-text p,
.professional-text p,
.hobbies-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 1.5rem;
}

/* CTA Final */
.marianna-cta {
    background: linear-gradient(135deg, var(--verde-azulado) 0%, var(--dorado-mostaza) 100%);
    padding: 4rem 0;
    color: var(--blanco);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-primary,
.cta-secondary {
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-primary {
    background: var(--blanco);
    color: var(--verde-azulado);
}

.cta-secondary {
    background: transparent;
    color: var(--blanco);
    border: 2px solid var(--blanco);
}

.cta-primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

.cta-secondary:hover {
    background: var(--blanco);
    color: var(--verde-azulado);
}

/* Responsive para móvil */
@media (max-width: 768px) {
    .marianna-hero-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .marianna-hero-image {
        flex: none;
        order: -1;
    }
    
    .marianna-hero-image img {
        width: 280px !important;
        height: 280px !important;
        max-width: 280px;
        min-width: 280px;
    }
    
    .marianna-hero-text h1 {
        font-size: 2.5rem;
    }
    
    .about-content h2,
    .roots-content h2,
    .beginnings-content h2,
    .learnings-content h2,
    .mentors-content h2,
    .professional-content h2,
    .hobbies-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .value-proposition-content {
        display: flex;
        justify-content: center;
        text-align: center;
    }
    
    .propuesta-texto-completo p {
        text-align: center;
        font-size: 1rem;
    }
    
    /* Responsive para sección QuererSE */
    .quererse-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .quererse-image {
        order: -1;
    }
    
    .quererse-image img {
        width: 300px !important;
        height: 300px !important;
        max-width: 300px;
        min-width: 300px;
    }
    
    .quererse-title {
        font-size: 2rem;
    }
    
    .quererse-description {
        max-width: 100%;
        text-align: center;
        font-size: 1rem;
        padding: 0 2rem;
        width: 100%;
    }
    
    .quererse-benefits {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .value-proposition-section {
        padding: 2rem 0;
    }
    
    .propuesta-texto-completo p {
        font-size: 0.95rem;
        text-align: center;
    }
    
    /* QuererSE en móviles pequeños */
    .quererse-section {
        padding: 3rem 0;
    }
    
    .quererse-image img {
        width: 250px !important;
        height: 250px !important;
        max-width: 250px;
        min-width: 250px;
    }
    
    .quererse-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .quererse-description {
        font-size: 0.95rem;
        line-height: 1.6;
        padding: 0 1.5rem;
        width: 100%;
        max-width: 100%;
        text-align: center;
    }
    
    .benefit-item {
        padding: 0.6rem;
        font-size: 0.9rem;
    }
    
    .quererse-quote {
        font-size: 1rem;
        padding: 0.8rem;
        margin: 1.5rem 1rem;
    }
    
    .quererse-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }
}

.value-proposition-content p {
    color: #333333 !important;
    text-align: center !important;
    font-size: 1.1rem !important;
}
