/* ===== IMPORTACIÓN DE FUENTES GOOGLE FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&family=Open+Sans:wght@300;400;500;600;700&display=swap');

/* ===== DIVERMAC FRONTEND CSS - TEMA OSCURO ELEGANTE ===== */
/* Estilos responsivos para la página principal del cliente */

/* ===== VARIABLES CSS ===== */
:root {
    --color-primary-dark: #0a0a0a;
    --color-secondary-dark: #1a1a1a;
    --color-card-dark: #2a2a2a;
    --color-text-primary: #ffffff;
    --color-text-secondary: #b0b0b0;
    --color-accent-gold: #d4af37;
    --color-accent-blue: #4a9eff;
    --color-border-subtle: rgba(255, 255, 255, 0.1);
    --color-glass-bg: rgba(255, 255, 255, 0.05);
    --color-glass-border: rgba(255, 255, 255, 0.1);
    --shadow-elegant: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 16px 64px rgba(0, 0, 0, 0.4);
    --glow-gold: 0 0 20px rgba(212, 175, 55, 0.3);
    --glow-blue: 0 0 20px rgba(74, 158, 255, 0.3);
}

/* ===== RESET Y CONFIGURACIÓN BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', Arial, sans-serif;
    line-height: 1.6;
    color: var(--color-text-primary);
    background: var(--color-primary-dark);
    overflow-x: hidden;
    position: relative;
}

/* Efecto de partículas sutil en el fondo */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(74, 158, 255, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(212, 175, 55, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to right, #010624, #0a2d5c, #010624);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border-subtle);
    z-index: 1000;
    height: 80px;
    transition: all 0.3s ease;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0.05) 0%, 
        transparent 50%, 
        rgba(255, 255, 255, 0.05) 100%);
    pointer-events: none;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Menú hamburguesa */
.menu-toggle {
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 10px;
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    transform: translateY(-2px);
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hamburger span {
    width: 30px;
    height: 4px;
    background: var(--color-text-primary);
    transition: all 0.3s ease;
    border-radius: 2px;
    box-shadow: var(--glow-gold);
}

.menu-toggle:hover .hamburger span {
    background: var(--color-accent-gold);
    box-shadow: var(--glow-gold);
}

.menu-text {
    font-size: 14px;
    color: var(--color-text-primary);
    font-weight: 500;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-image {
    width: 45px;
    height: 45px;
    object-fit: contain;
    filter: drop-shadow(var(--glow-gold));
    transition: all 0.3s ease;
}

.logo:hover .logo-image {
    filter: drop-shadow(var(--glow-gold)) brightness(1.1);
    transform: scale(1.05);
}

.logo h1 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--color-text-primary);
    text-decoration: none;
    text-shadow: var(--glow-gold);
    transition: all 0.3s ease;
    margin: 0;
}

.logo h1:hover {
    color: var(--color-accent-gold);
    text-shadow: var(--glow-gold);
    transform: scale(1.05);
}

/* Buscador */
.search-container {
    display: flex;
    align-items: center;
}

.search-icon {
    width: 30px;
    height: 30px;
    border: 2px solid var(--color-text-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--color-glass-bg);
    backdrop-filter: blur(10px);
}

.search-icon:hover {
    background: var(--color-accent-gold);
    border-color: var(--color-accent-gold);
    color: var(--color-primary-dark);
    box-shadow: var(--glow-gold);
    transform: scale(1.1);
}

.search-icon i {
    font-size: 14px;
    color: inherit;
}

/* Botón CTA */
.cta-button {
    display: flex;
    align-items: center;
}

.btn-reserva {
    font-family: 'Montserrat', Arial, sans-serif;
    background: transparent;
    color: var(--color-accent-gold);
    padding: 12px 20px;
    border: 2px solid var(--color-accent-gold);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.btn-reserva::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--color-accent-gold);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-reserva:hover::before {
    left: 0;
}

.btn-reserva:hover {
    color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--glow-gold);
}

/* Menú móvil */
.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border-subtle);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: var(--shadow-elegant);
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-menu ul {
    list-style: none;
    padding: 20px;
    margin: 0;
    max-width: 1200px;
    margin: 0 auto;
}

.mobile-menu li {
    margin-bottom: 15px;
}

.mobile-menu a {
    color: var(--color-text-primary);
    text-decoration: none;
    font-size: 16px;
    padding: 15px 20px;
    display: block;
    border-bottom: 1px solid var(--color-border-subtle);
    transition: all 0.3s ease;
    font-weight: 500;
    border-radius: 8px;
    background: var(--color-glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--color-glass-border);
    margin-bottom: 8px;
}

.mobile-menu a:hover {
    color: var(--color-accent-gold);
    text-shadow: var(--glow-gold);
    transform: translateX(10px);
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--color-accent-gold);
    box-shadow: var(--glow-gold);
}

/* ===== SLIDER PRINCIPAL ===== */
.hero-slider {
    position: relative;
    height: 500px;
    background: var(--color-secondary-dark);
    margin-top: 80px;
    overflow: hidden;
}

.hero-slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(212, 175, 55, 0.1) 0%, 
        transparent 30%, 
        rgba(74, 158, 255, 0.1) 70%, 
        transparent 100%);
    pointer-events: none;
    z-index: 1;
}

/* Indicadores del slider */
.slider-indicators {
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.indicator {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid var(--color-border-subtle);
    backdrop-filter: blur(10px);
}

.indicator:hover {
    background: rgba(212, 175, 55, 0.5);
    border-color: var(--color-accent-gold);
    box-shadow: var(--glow-gold);
    transform: scale(1.2);
}

.indicator.active {
    background: var(--color-accent-gold);
    border-color: var(--color-accent-gold);
    box-shadow: var(--glow-gold);
}

/* Container del slider */
.slider-container {
    position: relative;
    height: 100%;
}

/* Slides */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom, 
        rgba(0,0,0,0.3) 0%, 
        rgba(0,0,0,0.7) 50%,
        rgba(0,0,0,0.9) 100%
    );
}

/* Contenido del slide */
.slide-content {
    position: relative;
    height: 100%;
    display: flex;
    z-index: 10;
}

.slide-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px 80px;
    max-width: 600px;
}

.slide-title {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: var(--color-text-primary);
    margin-bottom: 15px;
    padding: 20px 25px;
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid var(--color-accent-gold);
    border-radius: 12px;
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-elegant);
    display: inline-block;
    width: fit-content;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    position: relative;
    overflow: hidden;
}

.slide-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
    transition: left 0.8s ease;
}

.slide-title:hover::before {
    left: 100%;
}

.slide-description {
    font-size: 18px;
    color: var(--color-text-primary);
    margin-bottom: 30px;
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--color-border-subtle);
    border-radius: 8px;
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    display: inline-block;
    width: fit-content;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.slide-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--color-glass-bg);
    border: 2px solid var(--color-accent-gold);
    color: var(--color-accent-gold);
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    backdrop-filter: blur(15px);
}

.slide-arrow:hover {
    background: var(--color-accent-gold);
    color: var(--color-primary-dark);
    transform: scale(1.1);
    box-shadow: var(--glow-gold);
}

.slide-btn {
    padding: 15px 30px;
    border-radius: 8px;
    background: transparent;
    border: 2px solid var(--color-accent-gold);
    color: var(--color-accent-gold);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    backdrop-filter: blur(15px);
    box-shadow: var(--shadow-elegant);
    position: relative;
    overflow: hidden;
    font-family: 'Montserrat', Arial, sans-serif;
}

.slide-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--color-accent-gold);
    transition: left 0.3s ease;
    z-index: -1;
}

.slide-btn:hover::before {
    left: 0;
}

.slide-btn:hover {
    color: var(--color-primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

/* Miniaturas */
.slide-thumbnails {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px;
    align-items: center;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
}

.thumbnail {
    width: 220px;
    height: 130px;
    background: var(--color-card-dark);
    border: 2px solid var(--color-border-subtle);
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(15px);
    box-shadow: var(--shadow-elegant);
}

.thumbnail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(212, 175, 55, 0.1) 0%, 
        transparent 50%, 
        rgba(74, 158, 255, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.thumbnail:nth-child(2) {
    background: var(--color-card-dark);
    border-color: var(--color-accent-blue);
}

.thumbnail.social {
    background: var(--color-accent-blue);
    border-color: var(--color-accent-blue);
    box-shadow: var(--glow-blue);
}

.thumbnail:hover {
    transform: scale(1.05);
    border-color: var(--color-accent-gold);
    box-shadow: var(--glow-gold);
}

.thumbnail:hover::before {
    opacity: 1;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.thumbnail:hover img {
    transform: scale(1.1);
}

.thumbnail span {
    position: absolute;
    bottom: 15px;
    left: 20px;
    color: var(--color-text-primary);
    font-size: 24px;
    font-weight: 700;
    padding: 8px 12px;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid var(--color-accent-gold);
    border-radius: 6px;
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-elegant);
    font-family: 'Montserrat', Arial, sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.social-icon {
    font-size: 30px;
    color: white;
    margin-bottom: 10px;
}

/* ===== INFORMACIÓN CORPORATIVA ===== */
.corporate-info {
    padding: 100px 0;
    background: var(--color-primary-dark);
    position: relative;
    overflow: hidden;
}

.corporate-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(74, 158, 255, 0.05) 0%, transparent 50%);
    opacity: 0.8;
}

/* Sección de Misión */
.info-section {
    margin-bottom: 100px;
    position: relative;
    z-index: 2;
}

.info-section:last-child {
    margin-bottom: 0;
}

.info-section.mision .info-content {
    flex-direction: row;
}

.info-section.proposito .info-content {
    flex-direction: row-reverse;
}

.info-content {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px;
    background: var(--color-glass-bg);
    border: 1px solid var(--color-glass-border);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-elegant);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.info-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.6s ease;
}

.info-content:hover::before {
    left: 100%;
}

.info-content:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--color-accent-gold);
}

.info-icon {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--color-accent-gold) 0%, #b8941f 50%, var(--color-accent-gold) 100%);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary-dark);
    font-size: 48px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: var(--glow-gold);
}

.info-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 30px;
    backdrop-filter: blur(10px);
    z-index: 1;
}

.info-icon i {
    position: relative;
    z-index: 2;
}

.info-icon:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.6);
}

.info-text {
    flex: 1;
    padding: 20px 0;
}

.info-text h3 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 36px;
    color: var(--color-text-primary);
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.info-text h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-accent-gold), var(--color-accent-blue));
    border-radius: 2px;
    box-shadow: var(--glow-gold);
}

.info-text p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--color-text-secondary);
    font-weight: 400;
    text-align: justify;
}

/* Sección de Valores */
.section-title {
    font-family: 'Montserrat', Arial, sans-serif;
    text-align: center;
    font-size: 42px;
    color: var(--color-text-primary);
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-accent-gold), var(--color-accent-blue));
    border-radius: 2px;
    box-shadow: var(--glow-gold);
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--color-text-secondary);
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.valores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.valor-item {
    background: var(--color-glass-bg);
    border: 1px solid var(--color-glass-border);
    padding: 40px 30px;
    border-radius: 20px;
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-elegant);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.valor-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.6s ease;
}

.valor-item:hover::before {
    left: 100%;
}

.valor-item:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-hover);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--color-accent-gold);
}

.valor-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-accent-gold) 0%, #b8941f 50%, var(--color-accent-gold) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--color-primary-dark);
    font-size: 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: var(--glow-gold);
}

.valor-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    z-index: 1;
}

.valor-icon i {
    position: relative;
    z-index: 2;
}

.valor-item:hover .valor-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.6);
}

.valor-content h4 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 24px;
    color: var(--color-text-primary);
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.3;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.valor-content p {
    color: var(--color-text-secondary);
    line-height: 1.7;
    font-size: 16px;
    text-align: justify;
}

/* ===== SEDES ===== */
.sedes-section {
    padding: 100px 0;
    background: var(--color-secondary-dark);
    position: relative;
    overflow: hidden;
}

.sedes-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(74, 158, 255, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    opacity: 0.8;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.section-header .title-prefix {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text-secondary);
    display: block;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header .title-main {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--color-accent-gold);
    display: block;
    margin-bottom: 20px;
    position: relative;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.section-header .title-main::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-accent-gold), var(--color-accent-blue));
    border-radius: 2px;
    box-shadow: var(--glow-gold);
}

.section-description {
    font-size: 18px;
    color: var(--color-text-secondary);
    margin-top: 15px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.sedes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.sede-card {
    background: var(--color-glass-bg);
    border: 1px solid var(--color-glass-border);
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-elegant);
    position: relative;
}

.sede-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.sede-card:hover::before {
    left: 100%;
}

.sede-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--color-accent-gold);
}

.sede-content {
    display: flex;
    height: 320px;
    position: relative;
    z-index: 2;
}

.sede-info {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.sede-nombre {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: var(--text-shadow-subtle);
    background: linear-gradient(135deg, var(--color-text-primary), var(--color-accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sede-details {
    flex: 1;
    margin-bottom: 20px;
}

.sede-direccion {
    color: var(--color-text-secondary);
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 1.4;
    text-shadow: var(--text-shadow-subtle);
}

.sede-ciudad {
    color: var(--color-text-muted);
    margin-bottom: 15px;
    font-size: 15px;
    font-weight: 500;
    text-shadow: var(--text-shadow-subtle);
}

.sede-contacto {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.sede-telefono,
.sede-horario {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    font-size: 14px;
    font-weight: 500;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.sede-telefono:hover,
.sede-horario:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
    box-shadow: var(--shadow-subtle);
}

.sede-telefono i,
.sede-horario i {
    color: var(--color-accent-gold);
    font-size: 16px;
    width: 18px;
    text-align: center;
    text-shadow: var(--glow-gold);
}

.sede-telefono {
    color: var(--color-accent-gold);
    text-shadow: var(--text-shadow-subtle);
}

.sede-horario {
    color: var(--color-text-secondary);
    text-shadow: var(--text-shadow-subtle);
}

.sede-mapa-container {
    width: 380px;
    position: relative;
    background: #f0f0f0;
    overflow: hidden;
    border-radius: 0 20px 20px 0;
    border-left: 1px solid rgba(0, 0, 0, 0.08);
}

.sede-mapa-iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(0.2) contrast(1.1);
    transition: all 0.4s ease;
    border-radius: 0 20px 20px 0;
}

.sede-card:hover .sede-mapa-iframe {
    filter: grayscale(0) contrast(1.2);
    transform: scale(1.02);
}

.sede-mapa-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 15px;
    background: linear-gradient(transparent 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sede-card:hover .sede-mapa-overlay {
    opacity: 1;
}

.sede-mapa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    background: rgba(0, 116, 217, 0.95);
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 116, 217, 0.3);
}

.sede-mapa:hover {
    background: rgba(0, 116, 217, 1);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 116, 217, 0.5);
    border-color: rgba(255, 255, 255, 0.3);
}

.sede-mapa i {
    font-size: 14px;
}

/* Card "Ver más" */
.sede-card.ver-mas {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    background: rgba(0, 116, 217, 0.05);
    border: 2px dashed rgba(0, 116, 217, 0.3);
    height: 320px;
}

.sede-card.ver-mas:hover {
    background: rgba(0, 116, 217, 0.1);
    border-color: rgba(0, 116, 217, 0.5);
}

.sede-card.ver-mas .sede-info {
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.sede-card.ver-mas h4 {
    font-size: 24px;
    color: #0074d9;
    font-weight: 700;
    margin: 0;
}

.arrow-icon {
    font-size: 32px;
    color: #0074d9;
    transition: transform 0.3s ease;
}

.sede-card.ver-mas:hover .arrow-icon {
    transform: translateX(5px);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--color-bg-dark);
    color: var(--color-text-primary);
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
                radial-gradient(ellipse at bottom right, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.footer-section h3 {
    font-size: 24px;
    margin-bottom: 25px;
    color: var(--color-text-primary);
    text-shadow: var(--text-shadow-subtle);
    background: linear-gradient(135deg, var(--color-text-primary), var(--color-accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contacto-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contacto-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.contacto-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(212, 175, 55, 0.2);
    transform: translateY(-2px);
    box-shadow: var(--shadow-subtle);
}

.contacto-item i {
    color: var(--color-accent-gold);
    font-size: 18px;
    margin-top: 3px;
    text-shadow: var(--glow-gold);
}

.contacto-details {
    display: flex;
    flex-direction: column;
}

.contacto-valor {
    font-weight: bold;
    margin-bottom: 5px;
    color: var(--color-text-primary);
    text-shadow: var(--text-shadow-subtle);
}

.contacto-descripcion {
    font-size: 14px;
    color: var(--color-text-muted);
    text-shadow: var(--text-shadow-subtle);
}

.redes-sociales {
    display: flex;
    gap: 15px;
}

.red-social {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.red-social::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--color-accent-gold), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.red-social:hover::before {
    opacity: 0.2;
}

.red-social:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--color-accent-gold);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    color: var(--color-accent-gold);
}

.btn-reclamos {
    font-family: 'Montserrat', Arial, sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--color-accent-gold), #b8941f);
    color: var(--color-bg-dark);
    padding: 15px 25px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: var(--shadow-elegant);
    position: relative;
    overflow: hidden;
}

.btn-reclamos::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.btn-reclamos:hover::before {
    left: 100%;
}

.btn-reclamos:hover {
    background: linear-gradient(135deg, #e6c76b, var(--color-accent-gold));
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--color-text-muted);
    position: relative;
    z-index: 2;
    text-shadow: var(--text-shadow-subtle);
}

/* ===== WHATSAPP FLOTANTE ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-btn {
    width: 80px;
    height: 80px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 40px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(37, 211, 102, 0.7);
    }
    100% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    }
}

/* ===== MODAL WHATSAPP ===== */
.whatsapp-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.whatsapp-modal.active {
    opacity: 1;
    visibility: visible;
}

.whatsapp-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(3px);
}

.whatsapp-modal-content {
    position: relative;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    max-width: 400px;
    width: 90%;
    max-height: 80vh;
    overflow: hidden;
    transform: scale(0.8) translateY(20px);
    transition: all 0.3s ease;
    z-index: 10001;
}

.whatsapp-modal.active .whatsapp-modal-content {
    transform: scale(1) translateY(0);
}

.whatsapp-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
}

.whatsapp-modal-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.whatsapp-modal-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.whatsapp-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.whatsapp-modal-body {
    padding: 25px;
}

.whatsapp-modal-body p {
    margin: 0 0 20px;
    color: #333333;
    font-size: 16px;
    text-align: center;
    font-weight: 500;
}

.whatsapp-contacts-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.whatsapp-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(37, 211, 102, 0.08);
    border: 2px solid rgba(37, 211, 102, 0.3);
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.whatsapp-contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(37, 211, 102, 0.1), transparent);
    transition: left 0.6s ease;
}

.whatsapp-contact-item:hover::before {
    left: 100%;
}

.whatsapp-contact-item:hover {
    background: rgba(37, 211, 102, 0.1);
    border-color: rgba(37, 211, 102, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.2);
}

.whatsapp-contact-icon {
    width: 45px;
    height: 45px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.whatsapp-contact-info {
    flex: 1;
    position: relative;
    z-index: 2;
}

.whatsapp-contact-description {
    font-weight: 600;
    color: #111111;
    margin-bottom: 4px;
    font-size: 16px;
}

.whatsapp-contact-number {
    color: #666666;
    font-size: 14px;
}

.whatsapp-contact-arrow {
    color: #25d366;
    font-size: 16px;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.whatsapp-contact-item:hover .whatsapp-contact-arrow {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 480px) {
    .whatsapp-modal-content {
        max-width: 95%;
        margin: 20px;
    }
    
    .whatsapp-modal-header {
        padding: 15px 20px;
    }
    
    .whatsapp-modal-body {
        padding: 20px;
    }
    
    .whatsapp-contact-item {
        padding: 12px;
    }
    
    .whatsapp-contact-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablets */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .slide-main {
        padding: 30px 50px;
    }
    
    .slide-title {
        font-size: 30px;
    }
    
    .slide-thumbnails {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        flex-direction: row;
        justify-content: center;
        padding: 20px;
    }
    
    .thumbnail {
        width: 200px;
        height: 140px;
    }
      .thumbnail span {
        font-size: 18px;
        padding: 6px 10px;
        background: rgba(255, 255, 255, 0.22);
        border: 1px solid rgba(255, 255, 255, 0.32);
        border-radius: 5px;
        backdrop-filter: blur(12px);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    }
}

/* Móviles grandes */
@media (max-width: 768px) {
    .header-container {
        padding: 0 15px;
    }
    
    .logo {
        gap: 8px;
    }
    
    .logo-image {
        width: 35px;
        height: 35px;
    }
    
    .logo h1 {
        font-size: 28px;
    }
    
    .btn-reserva {
        padding: 10px 15px;
        font-size: 12px;
    }
      .hero-slider {
        height: 450px;
    }
    
    .slide-content {
        flex-direction: column;
        padding: 15px;
        gap: 20px;
    }
    
    .slide-main {
        padding: 20px 15px;
        max-width: 100%;
        text-align: center;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }      .slide-title {
        font-size: 2rem;
        margin-bottom: 10px;
        padding: 12px 15px;
        background: rgba(255, 255, 255, 0.25);
        border: 1px solid rgba(255, 255, 255, 0.35);
        border-radius: 6px;
        backdrop-filter: blur(15px);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    }
      .slide-description {
        font-size: 14px;
        margin-bottom: 15px;
        padding: 8px 12px;
        background: rgba(255, 255, 255, 0.18);
        border: 1px solid rgba(255, 255, 255, 0.25);
        border-radius: 5px;
        backdrop-filter: blur(12px);
        box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
    }
      .slide-btn {
        align-self: center;
    }
    
    .slider-indicators {
        display: none;
    }
    
    .slide-thumbnails {
        flex-direction: row;
        padding: 10px 15px;
        gap: 8px;
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        justify-content: center;
        overflow: hidden;
    }
      .thumbnail {
        width: 90px;
        height: 62px;
        flex-shrink: 0;
        border-radius: 8px;
    }
    
    .thumbnail img {
        border-radius: 6px;
    }
      .thumbnail span {
        font-size: 11px;
        bottom: 5px;
        left: 5px;
        padding: 4px 8px;
        background: rgba(255, 255, 255, 0.25);
        border: 1px solid rgba(255, 255, 255, 0.35);
        border-radius: 4px;
        backdrop-filter: blur(10px);
        box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
    }
    
    .slider-indicators {
        left: 15px;
        gap: 10px;
    }
    
    .indicator {
        width: 12px;
        height: 12px;
    }
      .corporate-info {
        padding: 70px 0;
    }
    
    .info-content {
        gap: 40px;
        padding: 30px 25px;
        border-radius: 15px;
    }
    
    .info-icon {
        width: 100px;
        height: 100px;
        font-size: 40px;
        border-radius: 25px;
    }
    
    .info-text h3 {
        font-size: 32px;
    }
    
    .info-text p {
        font-size: 17px;
    }
    
    .section-title {
        font-size: 38px;
    }
    
    .valores-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 35px;
    }
    
    .valor-item {
        padding: 35px 25px;
    }
    
    .valor-icon {
        width: 75px;
        height: 75px;
        font-size: 30px;
    }
      .corporate-info {
        padding: 60px 0;
    }
    
    .info-section {
        margin-bottom: 70px;
    }
    
    .info-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 30px 20px;
        border-radius: 15px;
    }
    
    .info-section.mision .info-content,
    .info-section.proposito .info-content {
        flex-direction: column;
    }
    
    .info-icon {
        width: 90px;
        height: 90px;
        font-size: 36px;
        border-radius: 22px;
    }
    
    .info-text h3 {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .info-text h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .info-text p {
        font-size: 16px;
        text-align: center;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .section-subtitle {
        font-size: 16px;
        margin-bottom: 50px;
    }
    
    .valores-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 40px;
    }
    
    .valor-item {
        padding: 30px 20px;
        border-radius: 15px;
    }
    
    .valor-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
        border-radius: 18px;
        margin-bottom: 20px;
    }
    
    .valor-content h4 {
        font-size: 22px;
    }
      .valor-content p {
        font-size: 15px;
        text-align: center;
    }
    
    .sedes-section {
        padding: 60px 0;
    }
    
    .section-header {
        text-align: center;
        margin-bottom: 50px;
    }
    
    .section-header .title-main {
        font-size: 32px;
    }
    
    .section-description {
        font-size: 16px;
    }
    
    .sedes-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .sede-content {
        flex-direction: column;
        height: auto;
    }
    
    .sede-info {
        padding: 25px 20px;
    }
    
    .sede-nombre {
        font-size: 22px;
        margin-bottom: 12px;
    }
      .sede-mapa-container {
        width: 100%;
        height: 240px;
        border-radius: 0 0 20px 20px;
        border-left: none;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
    }
    
    .sede-mapa-iframe {
        border-radius: 0 0 20px 20px;
    }
    
    .sede-mapa-overlay {
        padding: 15px 12px;
        opacity: 1;
    }
    
    .sede-card.ver-mas {
        height: auto;
        min-height: 150px;
        padding: 30px 20px;
    }
      .sedes-section {
        padding: 70px 0;
    }
    
    .section-header .title-main {
        font-size: 36px;
    }
    
    .sedes-grid {
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        gap: 35px;
    }
      .sede-content {
        height: 300px;
    }
    
    .sede-info {
        padding: 25px;
    }
    
    .sede-nome {
        font-size: 22px;
    }
    
    .sede-mapa-container {
        width: 220px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .contacto-info {
        align-items: center;
    }
    
    .contacto-item {
        justify-content: center;
        text-align: center;
    }
    
    .redes-sociales {
        justify-content: center;
    }
    
    .whatsapp-btn {
        width: 60px;
        height: 60px;
        font-size: 30px;
    }
}

/* Móviles pequeños */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .header-container {
        padding: 0 10px;
    }
    
    .logo h1 {
        font-size: 24px;
    }
    
    .cta-button {
        display: flex;
    }
    
    .btn-reserva {
        padding: 8px 12px;
        font-size: 12px;
        border-radius: 6px;
    }
      .hero-slider {
        height: 380px;
    }
    
    .slide-main {
        padding: 15px 10px;
    }      .slide-title {
        font-size: 1.7rem;
        padding: 10px 12px;
        background: rgba(255, 255, 255, 0.28);
        border: 1px solid rgba(255, 255, 255, 0.38);
        border-radius: 5px;
        backdrop-filter: blur(15px);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    }
    
    .slide-description {
        font-size: 13px;
        margin-bottom: 10px;
        padding: 6px 10px;
        background: rgba(255, 255, 255, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.28);
        border-radius: 4px;
        backdrop-filter: blur(12px);
        box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
    }
      .slide-arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }    .slide-btn {
        padding: 8px 16px;
        font-size: 14px;
        border-radius: 20px;
        align-self: center;
    }
    
    .slider-indicators {
        display: none;
    }
    
    .slide-thumbnails {
        padding: 8px 10px;
        gap: 6px;
    }
      .thumbnail {
        width: 95px;
        height: 54px;
    }
      .thumbnail span {
        font-size: 10px;
        bottom: 3px;
        left: 3px;
        padding: 3px 6px;
        background: rgba(255, 255, 255, 0.28);
        border: 1px solid rgba(255, 255, 255, 0.38);
        border-radius: 3px;
        backdrop-filter: blur(8px);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
    }
    
    .corporate-info {
        padding: 40px 0;
    }
      .corporate-info {
        padding: 50px 0;
    }
    
    .info-section {
        margin-bottom: 60px;
    }
    
    .info-content {
        flex-direction: column;
        text-align: center;
        gap: 25px;
        padding: 25px 15px;
        border-radius: 12px;
    }
    
    .info-icon {
        width: 80px;
        height: 80px;
        font-size: 32px;
        border-radius: 20px;
    }
    
    .info-text h3 {
        font-size: 24px;
        margin-bottom: 12px;
    }
    
    .info-text p {
        font-size: 15px;
        line-height: 1.6;
        text-align: center;
    }
    
    .section-title {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .section-subtitle {
        font-size: 15px;
        margin-bottom: 40px;
    }
    
    .valores-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .valor-item {
        padding: 25px 15px;
        border-radius: 12px;
    }
    
    .valor-icon {
        width: 65px;
        height: 65px;
        font-size: 26px;
        border-radius: 16px;
        margin-bottom: 18px;
    }
    
    .valor-content h4 {
        font-size: 20px;
        margin-bottom: 12px;
    }
      .valor-content p {
        font-size: 14px;
        line-height: 1.5;
        text-align: center;
    }
    
    .sedes-section {
        padding: 50px 0;
    }
    
    .section-header .title-main {
        font-size: 28px;
    }
    
    .section-description {
        font-size: 15px;
    }
    
    .sedes-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .sede-content {
        flex-direction: column;
        height: auto;
    }
    
    .sede-info {
        padding: 20px 15px;
    }
    
    .sede-nombre {
        font-size: 20px;
        margin-bottom: 10px;
    }
    
    .sede-direccion {
        font-size: 15px;
    }
    
    .sede-ciudad {
        font-size: 14px;
    }
    
    .sede-telefono,
    .sede-horario {
        font-size: 13px;
        padding: 6px 10px;
    }
      .sede-mapa-container {
        width: 100%;
        height: 200px;
        border-radius: 0 0 20px 20px;
        border-left: none;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
    }
    
    .sede-mapa-iframe {
        border-radius: 0 0 20px 20px;
    }
    
    .sede-mapa {
        font-size: 12px;
        padding: 8px 16px;
    }
    
    .sede-mapa-overlay {
        padding: 12px 10px;
        opacity: 1;
    }
    
    .sede-card.ver-mas {
        height: auto;
        min-height: 120px;
        padding: 25px 15px;
    }
    
    .sede-card.ver-mas h4 {
        font-size: 20px;
    }
    
    .arrow-icon {
        font-size: 28px;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        text-align: center;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-section h3 {
        font-size: 20px;
    }
    
    .contacto-info {
        align-items: center;
    }
    
    .contacto-item {
        justify-content: center;
        text-align: center;
    }
    
    .redes-sociales {
        justify-content: center;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

/* Animaciones adicionales */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(37, 211, 102, 0.7);
    }
    100% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    }
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Animaciones para elementos que entran en viewport */
.info-section.mision .info-content {
    animation: slideInLeft 0.8s ease-out;
}

.info-section.proposito .info-content {
    animation: slideInRight 0.8s ease-out;
}

.valor-item {
    animation: fadeInUp 0.6s ease-out;
}

.valor-item:nth-child(1) { animation-delay: 0.1s; }
.valor-item:nth-child(2) { animation-delay: 0.2s; }
.valor-item:nth-child(3) { animation-delay: 0.3s; }
.valor-item:nth-child(4) { animation-delay: 0.4s; }
.valor-item:nth-child(5) { animation-delay: 0.5s; }
.valor-item:nth-child(6) { animation-delay: 0.6s; }

.info-icon {
    animation: iconFloat 3s ease-in-out infinite;
}

.valor-icon {
    animation: iconFloat 4s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .whatsapp-btn {
        animation: none;
    }
    
    .info-icon,
    .valor-icon {
        animation: none;
    }
}
