* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-dark: #0A2342;
    --primary-gold: #C49A1F;
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #f9f9f9;
    --border-light: #e0e0e0;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* BANNER SUPERIOR */
.banner-top {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1a3a5c 100%);
    color: var(--primary-gold);
    text-align: center;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* HEADER / NAVBAR */
.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.navbar-brand h1 {
    font-size: 28px;
    color: var(--primary-dark);
    font-weight: 700;
}

/* Brand layout: logo left of name */
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo {
    width: 56px;
    height: 56px;
    object-fit: contain;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.navbar-brand .tagline {
    font-size: 12px;
    color: var(--primary-gold);
    display: block;
    font-style: italic;
    margin-top: 4px;
}

.navbar-menu ul {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
}

.navbar-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition);
}

.navbar-menu a:hover {
    color: var(--primary-gold);
}

.btn-acceso {
    background: var(--primary-dark);
    color: white !important;
    padding: 8px 16px;
    border-radius: 6px;
}

.btn-acceso:hover {
    background: var(--primary-gold);
    color: white !important;
}

@media (max-width: 768px) {
    .navbar .container {
        flex-direction: column;
        gap: 15px;
    }
    .navbar-menu ul {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    .brand-logo {
        width: 48px;
        height: 48px;
    }
}

/* HERO SECTION */
.hero {
    position: relative; /* Padre relativo para posicionar la imagen */
    padding: 100px 0;
    background-color: #ffffff; /* Fondo blanco total */
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero .container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 2; /* Asegura que el texto esté por encima de cualquier sombra */
}

/* --- LLAMADA A LA IMAGEN DESDE CSS --- */
.hero-image-fix::before {
    content: ""; /* Necesario para que el elemento exista */
    position: absolute;
    top: 0;
    right: 0; /* Pegado a la derecha */
    width: 45%; /* Solo ocupa el 45% de la pantalla (la derecha) */
    height: 100%;
    
    /* Configuración de la imagen */
    background-image: url('../imgs/edificio.png');
    background-repeat: no-repeat;
    background-size: cover; /* O 'contain' si quieres que se vea el edificio completo sin recortes */
    background-position: center left; /* Ajusta esto para ver mejor el logo de la foto */
    
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    align-items: center;
    position: relative;
    z-index: 2; /* sitúa el contenido por encima del overlay */
}
.hero-title {
    font-size: 56px;
    color: #002d4b;
    margin-bottom: 20px;
    line-height: 1.1;
     font-size: 52px;
    line-height: 1.1; /* Reduce el espacio entre líneas del título para que se vea como un bloque sólido */
    margin-bottom: 25px;
     background-position: center left;
}

.hero-subtitle {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
    font-size: 19px;
    position: relative;
    .hero {
    display: flex; 
    align-items: center; /* Esto centra el bloque de texto verticalmente */
    min-height: 80vh;    /* Le da altura a la sección para que el centrado se note */
    position: relative;
}
.hero-content {
    display: flex;
    justify-content: flex-start; /* Asegura que el texto empiece desde la izquierda del contenedor */
    width: 100%;
}    



}
.hero-buttons {
    display: flex;
    flex-direction: row; /* botones en línea horizontal */
    gap: 20px;
    align-items: center;
}
.hero-text {
    max-width: 550px; /* Controla qué tan ancho es el bloque de texto */
    margin-left: 110px; /* EMPUJA el texto hacia la derecha (cerca de la imagen) */
    margin-right: 40px; /* Define la separación exacta con la imagen */
    
    /* Alineación interna */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Mantiene el equilibrio de dos columnas */
    gap: 0; /* Eliminamos el gap general para controlarlo con los márgenes del texto */
    max-width: 12000px;
    margin: 10 auto;
}
.hero {
    display: flex;
    align-items: center; /* Centrado vertical de todos los hijos */
    min-height: 85vh;    /* Usa el 85% de la altura de la pantalla para un look moderno */
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}



/* En pantallas pequeñas centramos los botones */
@media (max-width: 768px) {
    .hero {
        background-position: center top;
        background-size: cover;
    }
    .hero .container {
        display: block;
    }
    .hero-buttons {
        flex-direction: column; /* en pantallas pequeñas apilar verticalmente */
        align-items: center;
        width: 100%;
    }
}






/* BUTTONS */
.btn {
    padding: 14px 32px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    text-align: center;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--primary-gold);
    color: white;
}

.btn-primary:hover {
    background: #b38a1b;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(196, 154, 31, 0.3);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary-dark);
    color: var(--primary-dark);
}

.btn-secondary:hover {
    background: var(--primary-dark);
    color: white;
    transform: scale(1.05);
}

.btn-dark {
    background: var(--primary-dark);
    color: white;
}

.btn-dark:hover {
    background: var(--primary-gold);
    transform: scale(1.05);
}

.btn-large {
    width: 100%;
    padding: 18px 32px;
    font-size: 16px;
    margin-top: 20px;
}

/* QUIÉNES SOMOS */
.quienes-somos {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.85) 100%),
                url('../imgs/edificio.png') center/cover no-repeat;
}

.quienes-somos h2 {
    text-align: center;
    font-size: 48px;
    color: var(--primary-dark);
    margin-bottom: 40px;
    font-weight: 700;
}

.quienes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

.quienes-video {
    width: 100%;
    height: 450px;
    background: linear-gradient(135deg, rgba(10, 35, 66, 0.2) 0%, rgba(10, 35, 66, 0.2) 100%),
                linear-gradient(135deg, rgba(196, 154, 31, 0.1) 0%, rgba(196, 154, 31, 0.1) 100%);
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--border-light);
}

.quienes-content {
    line-height: 1.8;
}

.quienes-content p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
    /* Alineación vertical del contenido */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.highlight-box {
    background: var(--primary-dark);
    color: white;
    padding: 30px;
    border-radius: 12px;
    margin: 30px 0;
    border-left: 6px solid var(--primary-gold);
}

.highlight-box p {
    color: white;
    margin-bottom: 15px;
}

.mantra {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-dark);
    border-top: 4px solid var(--primary-gold);
    border-bottom: 4px solid var(--primary-gold);
    padding: 30px 20px;
    margin: 40px 0;
    font-style: italic;
    line-height: 1.5;
}

.founder-info {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid var(--border-light);
}

.founder-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.founder-title {
    color: var(--primary-gold);
    font-weight: 600;
}

/* MUNDOS */
.mundos {
    padding: 80px 20px;
    background: linear-gradient(rgba(10, 35, 66, 0.92), rgba(41, 95, 162, 0.626)), url('https://images.pexels.com/photos/3184465/pexels-photo-3184465.jpeg?auto=compress&cs=tinysrgb&w=1600') center/cover no-repeat;
    color: white;
}

.mundos h2 {
    text-align: center;
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.mundos-subtitle {
    text-align: center;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 50px;
}

.mundos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.mundo-card {
    background: white;
    color: var(--text-dark);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.mundo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.mundo-icon {
    font-size: 56px;
    margin-bottom: 15px;
}

.mundo-card h3 {
    font-size: 22px;
    color: var(--primary-dark);
    margin-bottom: 10px;
    font-weight: 700;
}

.mundo-type {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.mundo-description {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-style: italic;
}

.mundo-link {
    color: var(--primary-gold);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.mundo-link:hover {
    color: #b38a1b;
    transform: translateX(5px);
}

.mundos-closing {
    text-align: center;
    font-size: 20px;
    color: var(--primary-gold);
    font-style: italic;
    margin-top: 40px;
}

/* SECCIONES DE PRODUCTOS */
.producto-section {
    padding: 80px 20px;
    background: white;
}

#empresas {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.493) 0%, rgba(255, 255, 255, 0.233) 100%),
                url('../imgs/profesionistas.png') center/cover no-repeat;
}

#empresas h2 {
    color: var(--primary-dark);
}

#empresas .section-subtitle {
    color: var(--text-light);
}

.producto-section h2 {
    text-align: center;
    font-size: 48px;
    color: var(--primary-dark);
    margin-bottom: 20px;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

/* Tabla de productos para páginas de Mundo */
.product-table-wrap {
    overflow-x: auto;
    margin-bottom: 20px;
}

.product-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}

.product-table thead th {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #12324f 100%);
    color: white;
    text-align: left;
    padding: 14px 18px;
    font-weight: 700;
    font-size: 14px;
}

.product-table tbody td {
    padding: 14px 18px;
    border-top: 1px solid var(--border-light);
    color: var(--text-dark);
    font-size: 15px;
}

@media (max-width: 720px) {
    .product-table {
        min-width: 600px;
    }
}

/* Estilo para botones en tabla de Momentos */
.btn-escuchar {
    display: inline-block;
    padding: 8px 20px;
    background: var(--primary-gold);
    color: white;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: var(--transition);
}

.btn-escuchar:hover {
    background: #b38a1b;
    transform: scale(1.05);
}

/* SECCIONES HERO POR MUNDO */
.mundo-hero {
    padding: 120px 20px;
    background-image: url('../imgs/empresas.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

.mundo-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.85) 40%, rgba(255,255,255,0.5) 70%, rgba(255,255,255,0.1) 100%);
    pointer-events: none;
}

.mundo-hero .container {
    position: relative;
    z-index: 2;
}

.mundo-hero-content {
    max-width: 600px;
}

.mundo-hero h2 {
    font-size: 56px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 15px;
    line-height: 1.2;
}

.mundo-hero p {
    font-size: 20px;
    color: var(--text-light);
    font-style: italic;
}

@media (max-width: 768px) {
    .mundo-hero {
        padding: 80px 20px;
    }
    .mundo-hero h2 {
        font-size: 36px;
    }
    .mundo-hero p {
        font-size: 16px;
    }
}

/* Imágenes de fondo específicas por mundo */
#mundo-empresas-fondo {
    background-image: url('../imgs/empresas.png');
}

/* Sección de fondo grande para tablas de productos */
.mundo-fondo {
    padding: 100px 20px;
    background-image: url('../imgs/oficina.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

.mundo-fondo::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.363) 0%, rgba(255, 255, 255, 0.45) 40%, rgba(255,255,255,0.5) 70%, rgba(255,255,255,0.1) 100%);
    pointer-events: none;
}

.mundo-fondo .container {
    position: relative;
    z-index: 2;
}

.mundo-fondo-content {
    max-width: 700px;
}

.mundo-fondo h2 {
    font-size: 56px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 15px;
    line-height: 1.2;
}

.mundo-fondo p {
    font-size: 20px;
    color: var(--text-light);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .mundo-fondo {
        padding: 80px 20px;
    }
    .mundo-fondo h2 {
        font-size: 36px;
    }
    .mundo-fondo p {
        font-size: 16px;
    }
}

#mundo-familias-fondo {
    background-image: url('../imgs/trabajoFamilia.png');
}

#mundo-educacion-fondo {
    background-image: url('../imgs/educacion.png');
}

#mundo-emprendedores-fondo {
    background-image: url('../imgs/edificio.png');
}

#mundo-profesionistas-fondo {
    background-image: url('../imgs/profesionistas.png');
}

#mundo-momentos-fondo {
    background-image: url('../imgs/momentos.png');
}

.product-card {
    background: white;
    border: 2px solid var(--border-light);
    border-top: 4px solid var(--primary-gold);
    padding: 25px;
    border-radius: 12px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.product-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.product-card h4 {
    font-size: 18px;
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.product-card p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.section-cta {
    text-align: center;
    margin-top: 50px;
}

/* TESTIMONIOS */
.testimonios {
    padding: 80px 20px;
    background: white;
}

#testimonios-section.testimonios {
    background-image: url('../imgs/oficina.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

#testimonios-section.testimonios::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.537) 0%, rgba(255, 255, 255, 0.9) 100%);
    pointer-events: none;
}

#testimonios-section.testimonios .container,
#testimonios-section.testimonios h2,
#testimonios-section.testimonios .testimonios-grid {
    position: relative;
    z-index: 1;
}

.testimonios h2 {
    text-align: center;
    color: var(--primary-dark);
    margin-bottom: 50px;
    font-weight: 700;
}

.testimonios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.testimonio-card {
    background: linear-gradient(135deg, #f9f9f9 0%, white 100%);
    border: 2px solid var(--border-light);
    border-top: 4px solid var(--primary-gold);
    padding: 30px;
    border-radius: 12px;
    transition: var(--transition);
}

.testimonio-card:hover {
    border-top-color: var(--primary-gold);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.testimonial-role {
    font-size: 13px;
    color: var(--text-light);
}

/* FILOSOFÍA */
.filosofia {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.6) 100%),
                url('https://images.pexels.com/photos/3184660/pexels-photo-3184660.jpeg?auto=compress&cs=tinysrgb&w=1600') center/cover no-repeat;
    padding: 100px 20px;
    color: white;
    text-align: center;
    position: relative;
}

.filosofia-overlay {
    max-width: 900px;
    margin: 0 auto;
}

.filosofia-title {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
}

.filosofia-subtitle {
    font-size: 52px;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 40px;
}

.filosofia-text {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.filosofia-motto {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-gold);
    font-style: italic;
    border-top: 4px solid var(--primary-gold);
    padding-top: 30px;
    margin-top: 30px;
}

.filosofia-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.filosofia-subtitle {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 30px;
}

.filosofia-text {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.95);
}

.filosofia-motto {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-gold);
    font-style: italic;
    border-top: 3px solid var(--primary-gold);
    padding-top: 20px;
    margin-top: 20px;
}


@media (max-width: 768px) {
    .quienes-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .quienes-video {
        height: 300px;
        order: -1;
    }
}

/* CONTACTO */
.contacto {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.537) 0%, rgba(255, 255, 255, 0.9) 100%),
                url('../imgs/edificio.png') center/cover no-repeat;
}

.contacto h2 {
    text-align: center;
    font-size: 48px;
    color: var(--primary-dark);
    margin-bottom: 50px;
    font-weight: 700;
}

.contacto-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.contacto-left {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.contact-box {
    background: white;
    padding: 30px;
    border-radius: 12px;
    border-left: 8px solid var(--primary-dark);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}
/* Layout: left column with contact details, right column with founder image */
.contact-box {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 24px;
    align-items: start;
}

.contact-box h3 {
    font-size: 24px;
    color: var(--primary-dark);
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-item {
    margin-bottom: 20px;
}

.contact-item strong {
    color: var(--primary-dark);
}

.contact-item p {
    color: var(--text-light);
    margin-top: 5px;
}

.founder-contact {
    border-top: 2px solid var(--border-light);
    padding-top: 20px;
    margin-top: 20px;
}

.founder-contact .founder-name {
    font-size: 16px;
    margin-bottom: 3px;
}

.social-media {
    margin-top: 25px;
}

.social-media p {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-dark);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
    font-weight: 600;
    font-size: 14px;
}

.social-icon:hover {
    background: var(--primary-gold);
    color: white;
}

.founder-image {
    width: 100%;
    height: 350px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
.founder-image {
    width: 100%;
    height: 320px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.contact-box .founder-image {
    margin-top: 20px;
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contacto-right {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 25px;
}

@media (max-width: 920px) {
    .contact-box {
        grid-template-columns: 1fr;
    }
    .founder-image {
        height: 260px;
        margin-top: 16px;
    }
}

.contact-form-box {
    background: white;
    padding: 30px;
    border-radius: 12px;
    border: 2px solid var(--border-light);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.contact-form-box h3 {
    font-size: 20px;
    color: var(--primary-dark);
    margin-bottom: 20px;
    font-weight: 700;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-light);
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(196, 154, 31, 0.1);
}

/* ACCESO CLIENTES */
.clientes-acceso {
    padding: 80px 20px;
    background: white;
}

.clientes-acceso h2 {
    text-align: center;
    font-size: 48px;
    color: var(--primary-dark);
    margin-bottom: 20px;
    font-weight: 700;
}

.login-box {
    max-width: 500px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 12px;
    border: 2px solid var(--border-light);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.login-box .form-group button {
    width: 100%;
    padding: 14px;
    background: var(--primary-gold);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.login-box .form-group button:hover {
    background: #b38a1b;
    transform: scale(1.02);
}

.forgot-password {
    display: block;
    text-align: center;
    margin-top: 15px;
    color: var(--primary-gold);
    text-decoration: none;
    font-size: 13px;
    transition: var(--transition);
}

.forgot-password:hover {
    color: #b38a1b;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.benefit {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    font-size: 13px;
    color: var(--text-light);
}

/* FOOTER */
.footer {
    background: var(--primary-dark);
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.footer h3 {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 700;
}

.footer-tagline {
    font-style: italic;
    color: var(--primary-gold);
    margin-bottom: 20px;
    font-size: 14px;
}

.footer-links {
    font-size: 13px;
    margin-bottom: 20px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-gold);
}

.footer-copyright {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 20px;
}

/* RESPONSIVA */
@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .contacto-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .quienes-content {
        font-size: 14px;
    }

    .mantra {
        font-size: 24px;
    }

    .filosofia-title,
    .filosofia-subtitle {
        font-size: 36px;
    }
}

/* WHATSAPP FLOTANTE */
.btn-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pulse 2s infinite;
}

.btn-whatsapp:hover {
    transform: scale(1.1);
    background-color: #20bd5a;
}

.btn-whatsapp svg {
    width: 36px;
    height: 36px;
    fill: white;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* PÁGINA DE LOGIN / ACCESO */
.login-page-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(10, 35, 66, 0.8) 0%, rgba(10, 35, 66, 0.8) 100%),
                url('../imgs/edificio.png') center/cover no-repeat;
    padding: 40px 20px;
}

.login-container {
    width: 100%;
    max-width: 480px;
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-top: 6px solid var(--primary-gold);
}

.login-logo {
    width: 100px;
    height: auto;
    margin-bottom: 20px;
    object-fit: contain;
}

.login-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.login-option-card {
    background: #f8f9fa;
    border: 1px solid var(--border-light);
    border-radius: 10px;
    padding: 25px;
    transition: var(--transition);
}

.login-option-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.login-option-title {
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-size: 18px;
}

.btn-login-full {
    display: block;
    width: 100%;
    padding: 12px;
    background: var(--primary-dark);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-login-full:hover {
    background: var(--primary-gold);
    color: white;
}
