/* ============================================
   DAPD - FCA UNAM
   ESTILOS COMPLETOS Y UNIFICADOS
   COLORES INSTITUCIONALES: AZUL Y DORADO MÁS ORO
   Incluye: Navbar, Hero, Servicios, Carrusel, Modal, Footer, Responsive
   ============================================ */

/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #ffffff;
    color: #1E293B;
    padding-top: 0;
}


/* ==============================
            NAVBAR 
================================= */

.navbar-custom {
    background: rgb(248, 247, 247);
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    padding: 15px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
}

.brand-logo-fca {
    height: 65px;
    width: auto;
}

.brand-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 1;
    min-width: 0;
    overflow: hidden;
}

.brand-emblem {
    width: 59px;
    height: 59px;
    background: #003366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D4AF37;
    font-size: 1.5rem;
    overflow: hidden;
}

.brand-emblem-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 6px;
    filter: brightness(0) invert(1);
}

.brand-info-link {
    text-decoration: none;
}

.brand-info-link:hover .brand-name {
    color: #D4AF37;
    transition: color 0.2s;
}

/* Título en una sola línea en desktop */
.brand-name {
    font-weight: 700;
    font-size: 1.3rem;
    color: #003366;
    white-space: nowrap;
}

.brand-inst {
    font-size: 0.9rem;
    color: #666;
    display: block;
    white-space: nowrap;
}

/* Botón hamburguesa */
.navbar-toggler {
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    display: none;
    color: #003366;
    flex-shrink: 0;
}

/* Menú de navegación */
.navbar-nav-links {
    display: flex;
    gap: 8px;
    align-items: center;
}

.nav-link {
    color: #D4AF37 !important;
    font-weight: 500;
    text-decoration: none;
    padding: 8px 12px;
    transition: color 0.2s;
}

.nav-link:hover,
.nav-link.active {
    color: #999999 !important;
}

.nav-link[data-scroll].active {
    color: #D4AF37;
    position: relative;
}

.nav-link[data-scroll].active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: #D4AF37;
    border-radius: 2px;
}

/* ============================================
   RESPONSIVE NAVBAR
   ============================================ */

/* Desktop: menú a la derecha */
@media (min-width: 769px) {
    .navbar-nav-links {
        margin-left: auto;
        gap: 5px;
    }
    
    .nav-link {
        padding: 8px 10px;
    }
}

/* Móvil: título en dos líneas, hamburguesa a la derecha */
@media (max-width: 768px) {
    .navbar-toggler {
        display: block;
    }
    
    /* Reducir tamaño de imágenes */
    .brand-logo-fca {
        height: 35px;
    }
    
    .brand-wrap {
        gap: 8px;
        flex: 1;
        min-width: 0;
    }
    
    /* Título en dos líneas en móvil */
    .brand-info-link {
        flex: 1;
        min-width: 0;
    }
    
    .brand-name {
        font-size: 0.75rem;
        white-space: normal;
        line-height: 1.2;
        display: block;
    }
    
    /* Ocultar "Facultad de Contaduría..." en móvil para que quepa */
    .brand-inst {
        display: none;
    }
    
    /* Menú desplegable */
    .navbar-nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        background: rgb(248, 247, 247);
        padding: 15px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        margin-left: 0;
        z-index: 1000;
    }
    
    .navbar-nav-links.show {
        display: flex;
    }
    
    .nav-link {
        padding: 10px 15px;
        width: 100%;
        text-align: center;
    }
}

/* Móvil muy pequeño */
@media (max-width: 480px) {
    .brand-logo-fca {
        height: 28px;
    }
    
    .brand-name {
        font-size: 0.65rem;
    }
    
    .brand-wrap {
        gap: 5px;
    }
}

/* ============================== 
            HERO SECTION 
================================= */
.hero-section .container {
    width: 100%;
}

.fca-identity {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    padding: 8px 20px;
    border-radius: 40px;
    margin-bottom: 20px;
}

.fca-identity i {
    color: #D4AF37; /* Dorado más oro */
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-line {
    width: 80px;
    height: 3px;
    background: #F39C12; /* Dorado más oro */
    margin: 20px auto;
}

.hero-description {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.65)), 
                url('../img/fondo.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: white;
    min-height: 95vh;
    display: flex;
    align-items: center;
    text-align: center;
    width: 100%;
}

/* Si quieres quitar el efecto parallax en móviles */
@media (max-width: 768px) {
    .hero-section {
        background-attachment: scroll;
    }
}

/* ============================== 
        SECCIONES GENERALES 
================================= */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #003366;
    margin-bottom: 10px;
}

.section-subline {
    width: 60px;
    height: 3px;
    background: #D4AF37; /* Dorado más oro */
    margin: 10px auto 0;
}

.section-subtitle {
    color: #666;
    margin-top: 15px;
}

.text-white {
    color: white;
}


/* ============================== 
            ABOUT (QUIÉNES SOMOS) 
================================= */
.about-section {
    padding: 60px 0;
}

.about-grid {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

.about-content {
    flex: 1;
    min-width: 280px;
}

.about-badge {
    background: rgba(0,51,102,0.1);
    color: #4A90E2;
    padding: 5px 15px;
    border-radius: 40px;
    font-size: 0.8rem;
    display: inline-block;
    margin-bottom: 15px;
}

.about-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #003366;
    margin-bottom: 20px;
}

.about-text {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.about-mission {
    background: #F8FAFC;
    padding: 20px;
    border-radius: 16px;
    display: flex;
    gap: 15px;
}

.about-mission i {
    font-size: 1.5rem;
    color: #D4AF37; /* Dorado más oro */
}

.about-image {
    flex: 1;
    min-width: 280px;
}

.about-image-placeholder {
    background: linear-gradient(135deg, #003366, #001B3D);
    border-radius: 24px;
    padding: 80px 20px;
    text-align: center;
    color: white;
}

.about-image-placeholder i {
    font-size: 4rem;
    margin-bottom: 15px;
    color: #D4AF37;
}


/* ============================================
   COMPROMISO - DEBAJO DE QUIÉNES SOMOS
   (FONDO COMPLETO CON PSEUDO-ELEMENTO)
   ============================================ */

.about-commitments-section {
    position: relative;
    background: #003366;        /* Color azul claro institucional */
    margin-top: 50px;
    padding-top: 40px;
    padding-bottom: 40px;       /* Espaciado inferior consistente */
    text-align: center;
    border-top: none;           /* Elimina cualquier línea superior */
}

/* Pseudo-elemento que extiende el fondo a todo el ancho de la ventana */
.about-commitments-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    background: inherit;        /* Toma el color de fondo */
    z-index: -1;
}

/* Asegura que el contenido quede encima y respete el container */
.about-commitments-section .commitments-header,
.about-commitments-section .commitments-full-grid {
    position: relative;
    z-index: 1;
}

.commitments-header {
    margin-bottom: 35px;
}

.commitments-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
}

.commitments-subline {
    width: 80px;
    height: 3px;
    background: #D4AF37;
    margin: 0 auto;
}

.commitments-full-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 20px;
}

.commitment-full-item {
    background: linear-gradient(135deg, #F8FAFC, #ffffff);
    padding: 25px 15px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.commitment-full-item:hover {
    transform: translateY(-5px);
    border-color: #D4AF37;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.commitment-icon-wrapper {
    width: 70px;
    height: 70px;
    background: rgba(0,51,102,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    transition: all 0.3s ease;
}

.commitment-full-item:hover .commitment-icon-wrapper {
    background: #3471b6;
}

.commitment-icon-wrapper i {
    font-size: 2rem;
    color: #D4AF37;
    transition: all 0.3s ease;
}

.commitment-full-item:hover .commitment-icon-wrapper i {
    color: white;
}

.commitment-full-item p {
    font-size: 0.9rem;
    color: #4A5568;
    line-height: 1.4;
    font-weight: 500;
    margin: 0;
}

/* Responsive para compromisos */
@media (max-width: 992px) {
    .commitments-full-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .commitments-full-grid {
        grid-template-columns: 1fr;
    }
    
    .commitments-main-title {
        font-size: 1.5rem;
    }
    
    .about-commitments-section {
        margin-top: 35px;
        padding-top: 30px;
    }
}


/* ============================================
   CARRUSEL DE IMÁGENES - QUIÉNES SOMOS
   ============================================ */

.image-carousel-container {
    position: relative;
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.image-carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.image-carousel-slide {
    flex: 0 0 100%;
    min-width: 100%;
}

.carousel-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

/* Botones de navegación */
.image-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 51, 102, 0.7);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.image-carousel-btn i {
    font-size: 1.3rem;
    color: white;
}

.image-carousel-btn:hover {
    background: #D4AF37;
}

.image-carousel-btn:hover i {
    color: #003366;
}

.image-carousel-prev {
    left: 15px;
}

.image-carousel-next {
    right: 15px;
}

/* Dots indicadores */
.image-carousel-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.image-dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.image-dot.active {
    background: #F39C12;
    width: 25px;
    border-radius: 10px;
}

.image-dot:hover {
    background: #3471b6;
}

/* Leyenda */
.image-caption {
    text-align: center;
    margin-top: 12px;
    font-size: 0.8rem;
    color: #666;
    font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
    .carousel-image {
        height: 250px;
    }
    
    .image-carousel-btn {
        width: 35px;
        height: 35px;
    }
    
    .image-carousel-btn i {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .carousel-image {
        height: 200px;
    }
    
    .image-carousel-btn {
        width: 30px;
        height: 30px;
    }
}



/* ============================== 
            PAGE HEADER (CONTACTO) 
================================= */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.65)),
                url('../img/fondo.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: white;
    padding: 60px 0 60px !important;
    padding-top: 160px !important;
    text-align: center;
}

.page-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.page-line {
    width: 60px;
    height: 3px;
    background: #D4AF37; /* Dorado más oro */
    margin: 0 auto 15px;
}

.page-description {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   AUTORIDADES SECTION - CONTACTO
   Tarjetas en azul estilo institucional
   ============================================ */

.authorities-section {
    padding: 60px 0 40px 0;
    background: #ffffff;
}

.authorities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

/* Tarjetas de autoridades - estilo azul como la original */
.authority-card {
    background: linear-gradient(135deg, #003366, #001B3D);
    border-radius: 24px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.authority-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.authority-card__badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.2);
    color: #D4AF37;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 30px;
    margin-bottom: 18px;
}

.authority-card__name {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 8px;
    font-weight: 600;
}

.authority-card__title {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.4;
}

.authority-card__email {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.2);
    padding: 8px 18px;
    border-radius: 40px;
    color: #D4AF37;
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.authority-card__email:hover {
    background: #D4AF37;
    color: #003366;
}

.authority-card__email:hover i {
    color: #003366;
}

.authority-card__email i {
    font-size: 0.9rem;
    color: #D4AF37;
    transition: all 0.3s ease;
}

.authority-card__email:hover i {
    color: #003366;
}

/* Responsive */
@media (max-width: 700px) {
    .authorities-section {
        padding: 40px 0 30px 0;
    }
    
    .authorities-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .authority-card {
        padding: 25px 20px;
    }
    
    .authority-card__name {
        font-size: 1.2rem;
    }
}

/* ============================================
   QUIÉN PUEDE ACUDIR - DOS COLUMNAS
   ============================================ */

.audience-two-columns {
    display: flex;
    gap: 30px;
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    flex-wrap: wrap;
}

.audience-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.audience-card {
    display: flex;
    align-items: center;
    gap: 18px;
    background: white;
    padding: 20px 25px;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid #E2E8F0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.audience-card:hover {
    transform: translateX(8px);
    border-color: #D4AF37;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* Efecto diferente para cada columna */
.audience-col:first-child .audience-card:hover {
    transform: translateX(8px);
}

.audience-col:last-child .audience-card:hover {
    transform: translateX(-8px);
}

.audience-icon-circle {
    width: 55px;
    height: 55px;
    background: rgba(0,51,102,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.audience-card:hover .audience-icon-circle {
    background: #003366;
}

.audience-icon-circle i {
    font-size: 1.6rem;
    color: #D4AF37;
    transition: all 0.3s ease;
}

.audience-card:hover .audience-icon-circle i {
    color: white;
}

.audience-info {
    flex: 1;
}

.audience-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #003366;
    margin-bottom: 5px;
}

.audience-info p {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

/* Responsive */
@media (max-width: 768px) {
    .audience-two-columns {
        flex-direction: column;
        gap: 20px;
    }
    
    .audience-col {
        gap: 15px;
    }
    
    .audience-col:first-child .audience-card:hover,
    .audience-col:last-child .audience-card:hover {
        transform: translateX(5px);
    }
    
    .audience-card {
        padding: 15px 20px;
    }
    
    .audience-icon-circle {
        width: 45px;
        height: 45px;
    }
    
    .audience-icon-circle i {
        font-size: 1.3rem;
    }
    
    .audience-info h4 {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .audience-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .audience-info h4 {
        margin-top: 5px;
    }
}

/* ============================================
   QUIÉN PUEDE ACUDIR - FONDO AZUL COMPLETO
   ============================================ */
.audience-section {
    position: relative;
    padding: 60px 0;
    overflow: hidden;
    /* Fallback mientras el video carga o si no es compatible */
    background: linear-gradient(rgba(0,20,50,0.75), rgba(0,20,50,0.75)),
                url('../img/fondo.jpeg') center/cover no-repeat;
    isolation: isolate;
}

.audience-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
    display: block;
    min-width: 100%;
    min-height: 100%;
}

.audience-video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 20, 50, 0.68);
    z-index: 1;
}

.audience-section .container {
    position: relative;
    z-index: 2;
}

.audience-section .section-title {
    color: #ffffff !important;
}
.audience-section .section-subtitle {
    color: rgba(255,255,255,0.97) !important;
}
.audience-section .section-subline {
    background: #D4AF37;
}

.audience-section .audience-card {
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(255, 255, 255, 0.20);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.audience-section .audience-info h4 {
    color: white;
}
.audience-section .audience-info p {
    color: rgba(255,255,255,0.80);
}
.audience-section .audience-icon-circle {
    background: rgba(255,255,255,0.15);
}
.audience-section .audience-card:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: #D4AF37;
}

@media (max-width: 768px) {
    .audience-video-bg {
        display: none;
    }
    .audience-section {
        background: #001B3D;
    }
    .audience-two-columns {
        flex-direction: column;
        gap: 15px;
        padding: 0 10px;
    }
    .audience-col {
        width: 100%;
        gap: 15px;
    }
    .audience-card {
        padding: 15px 18px;
    }
}

/* ============================== 
        CONTACTO — TARJETAS DE INFO 
================================= */
.contact-info-simple {
    padding: 60px 0 30px;
}

.contact-simple-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
}

.contact-simple-card {
    flex: 1;
    min-width: 250px;
    background: white;
    border-radius: 24px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid #eff6ff;
}

.contact-simple-icon {
    width: 70px;
    height: 70px;
    background: rgba(0,51,102,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.contact-simple-icon i {
    font-size: 2rem;
    color: #003366;
}

.contact-simple-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #003366;
}

.contact-simple-card p {
    color: #666;
    margin-bottom: 5px;
}

.contact-simple-card a {
    color: #3471b6;
    text-decoration: none;
}

.contact-simple-card a:hover {
    color: #D4AF37; /* Dorado más oro */
}

.contact-detail {
    font-size: 0.8rem;
    color: #D4AF37; /* Dorado más oro */
}

/* ====================================
INDICADOR BURBUJA (CONTACTO) 
==================================== */
.contact-bubble-hint {
    margin-top: 30px;
    padding: 12px 20px;
    background: rgba(0,51,102,0.1);
    border-radius: 40px;
    text-align: center;
    font-size: 0.85rem;
    color: #003366;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.contact-bubble-hint i {
    margin-right: 8px;
    color: #D4AF37;
}

/* ============================================
   COORDINADORA - TARJETA EN CONTACTO
   ============================================ */

/* Tarjeta destacada de la Coordinadora en contacto.php */
.coordinator-card {
    display: flex;
    align-items: center;
    gap: 25px;
    background: linear-gradient(135deg, #003366, #001B3D);
    border-radius: 24px;
    padding: 30px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.coordinator-card:hover {
    transform: translateY(-5px);
}

.coordinator-icon {
    width: 80px;
    height: 80px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coordinator-icon i {
    font-size: 2.5rem;
    color: #D4AF37;
}

.coordinator-info {
    flex: 1;
}

.coordinator-info h3 {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.coordinator-info h4 {
    font-size: 1.3rem;
    font-weight: 400;
    color: white;
    margin-bottom: 5px;
}

.coordinator-info p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 10px;
}

.coordinator-email {
    display: none !important;
}
.coordinator-email-hidden {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.2);
    padding: 6px 15px;
    border-radius: 30px;
    color: #D4AF37;
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.coordinator-email:hover {
    background: #D4AF37;
    color: #003366;
}

/* ============================================
   PANEL DE CONTACTO - COORDINADORA
   ============================================ */

.panel-divider {
    height: 1px;
    background: rgba(255,255,255,0.2);
    margin: 15px 0;
}

.panel-coordinator {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 12px;
    margin-top: 5px;
}

.coordinator-avatar {
    width: 45px;
    height: 45px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coordinator-avatar i {
    font-size: 1.3rem;
    color: #D4AF37;
}

.coordinator-details {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.coordinator-label {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.coordinator-name {
    font-size: 0.9rem;
    color: white;
    margin: 2px 0;
}

.coordinator-title {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.6);
}

/* Responsive */
@media (max-width: 600px) {
    .coordinator-card {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }
    
    .coordinator-info h4 {
        font-size: 1.1rem;
    }
    
    .panel-coordinator {
        flex-direction: column;
        text-align: center;
    }
    
    .coordinator-avatar {
        margin-bottom: 5px;
    }
}

/* ============================================
   CARRUSEL DE SERVICIOS
   ============================================ */

.services-carousel-section {
    padding: 60px 0;
    background: #ffffff;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.carousel-track-container {
    overflow: hidden;
    width: 100%;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 20px;
    overflow: visible;
}

/* Tarjetas con imagen de fondo */
.carousel-card--bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    min-height: 350px;
    flex: 0 0 calc(33.333% - 14px);
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
}

/* ANIMACIÓN DE ENCOGIMIENTO: scale(0.96) - se hace más chica */
.carousel-card--bg:hover {
    transform: scale(0.96);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Overlay para oscurecer la imagen */
.carousel-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(214, 214, 214, 0.95) 0%, rgba(179, 179, 179, 0.7) 20%, rgba(182, 182, 182, 0) 70%);
    z-index: 1;
}

/* Contenedor del contenido */
.carousel-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 30px 25px 25px 25px;
    width: 100%;
}

/* Título en blanco */
.carousel-card__content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #003366;
    margin: 0;
    line-height: 1.3;
    text-shadow: none;
}

/* Dots de navegación */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
}

.dot {
    width: 10px;
    height: 10px;
    background: #CBD5E1;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.35s ease;
    border: none;
    padding: 0;
}

.dot:hover {
    background: #94A3B8;
}

.dot.active {
    background: #F39C12;
    width: 32px;
    border-radius: 10px;
}

/* Responsive */
@media (max-width: 1024px) {
    .carousel-card--bg {
        flex: 0 0 calc(50% - 10px);
        min-height: 320px;
    }
}

@media (max-width: 768px) {
    .carousel-card--bg {
        flex: 0 0 100%;
        min-height: 300px;
    }
    
    .carousel-card__content {
        padding: 20px 20px 20px 20px;
    }
    
    .carousel-card__content h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .carousel-card--bg {
        min-height: 260px;
    }
    
    .carousel-card__content h3 {
        font-size: 1.1rem;
    }
}

/* ============================================
   TARJETA DESTACADA PARA TALLERES (CLICKABLE)
   ============================================ */

/* Tarjeta tipo link - mantiene estructura igual */
.carousel-card--link {
    cursor: pointer;
    display: block;
    transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out, border 0.3s ease;
}

/* Borde dorado destacado + sombra */
.carousel-card--link {
    border: 2px solid #D4AF37;
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.3), 0 10px 25px rgba(0,0,0,0.2);
}

/* Efecto hover más notorio */
.carousel-card--link:hover {
    transform: scale(0.96);
    border-color: #F39C12;
    box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.5), 0 15px 30px rgba(0,0,0,0.25);
}

/* Texto de hint (pequeño llamado a la acción) */
.card-click-hint {
    margin-top: 12px;
    font-size: 0.75rem;
    color: #D4AF37;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: rgba(0, 0, 0, 0.5);
    display: inline-flex;
    padding: 4px 12px;
    border-radius: 30px;
    backdrop-filter: blur(4px);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.card-click-hint i {
    font-size: 0.9rem;
    transition: transform 0.2s ease;
}

.carousel-card--link:hover .card-click-hint i {
    transform: translateX(3px);
}

/* Ajuste responsive para el hint */
@media (max-width: 768px) {
    .card-click-hint {
        font-size: 0.65rem;
        padding: 3px 10px;
    }
    
    .card-click-hint i {
        font-size: 0.75rem;
    }
}

/* Asegurar que la tarjeta destacada sea completamente clickeable */
.carousel-card--link {
    cursor: pointer;
}

/* Evitar que el overlay o el contenido bloqueen el click */
.carousel-card--link .carousel-card__overlay,
.carousel-card--link .carousel-card__content {
    pointer-events: none;
}

/* El hint debe ser solo visual, no bloquea el click */
.card-click-hint {
    pointer-events: none;
}

/* ============================
        BURBUJA FLOTANTE 
============================ */
.contact-bubble {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #003366, #001B3D);
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    transition: all 0.3s;
    z-index: 1000;
}

.contact-bubble:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.bubble-icon {
    font-size: 1.6rem;
    color: #D4AF37; /* Dorado más oro */
}

.bubble-text {
    font-size: 0.6rem;
    color: white;
    margin-top: 2px;
}

/* ============================ 
        PANEL DE CONTACTO FLOTANTE 
============================ */
.contact-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s;
}

.contact-panel.active {
    visibility: visible;
    opacity: 1;
}

.panel-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 750px;
    display: flex;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

/* Lado izquierdo oscuro */
.panel-left {
    background: #001B3D;
    color: white;
    padding: 40px 30px;
    flex: 0 0 280px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.panel-left h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #D4AF37; /* Dorado más oro */
    margin: 0;
}

.panel-left p {
    font-size: 0.85rem;
    opacity: 0.7;
    line-height: 1.5;
    margin: 0;
}

.panel-info {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.85rem;
    opacity: 0.85;
}

.panel-info i {
    color: #D4AF37; /* Dorado más oro */
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Lado derecho blanco */
.panel-right {
    background: white;
    padding: 40px 30px;
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #999;
    cursor: pointer;
    line-height: 1;
}

.modal-close:hover {
    color: #333;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
}

.panel-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #E2E8F0;
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.9rem;
    color: #333;
    background: #F8FAFC;
    transition: border-color 0.2s;
}

.panel-input:focus {
    outline: none;
    border-color: #D4AF37; /* Dorado más oro */
    background: white;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.panel-input::placeholder {
    color: #AAB4C0;
}

textarea.panel-input {
    resize: vertical;
}

.btn-panel-submit {
    background: #003366;
    color: white;
    border: none;
    padding: 13px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s;
    margin-top: 4px;
}

.btn-panel-submit:hover {
    background: #D4AF37; /* Dorado más oro */
    color: #003366;
    transform: translateY(-2px);
}

/* Responsive: panel en columna en móvil */
@media (max-width: 600px) {
    .panel-container {
        flex-direction: column;
        width: 95%;
        max-height: 90vh;
        overflow-y: auto;
    }

    .panel-left {
        flex: none;
        padding: 25px 20px;
    }
}


/* ============================================
   SECCIONES INTEGRADAS - ESTILOS ADICIONALES
   ============================================ */

/* Compromisos dentro de Quiénes Somos */
.about-commitments {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(0,51,102,0.1);
}

.commitments-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #003366;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.commitments-title::before {
    content: '';
    width: 30px;
    height: 2px;
    background: #D4AF37;
    display: inline-block;
}

.commitments-mini-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.commitment-mini {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: #F8FAFC;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.commitment-mini:hover {
    background: rgba(0,51,102,0.05);
    transform: translateX(5px);
}

.commitment-mini i {
    font-size: 1.1rem;
    color: #D4AF37;
    width: 24px;
}

.commitment-mini span {
    font-size: 0.8rem;
    color: #4A5568;
    line-height: 1.3;
}

/* Sección integrada: Audiencia + Autoridades */
.audience-authorities-section {
    padding: 60px 0;
    background: #F8FAFC;
}

.audience-wrapper {
    margin-bottom: 40px;
}

.section-divider {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 40px auto;
    padding: 20px 0;
}

.section-divider i {
    font-size: 0.8rem;
    color: #D4AF37;
    opacity: 0.6;
}

.section-divider i:nth-child(2) {
    font-size: 1rem;
    opacity: 1;
}

.authorities-wrapper {
    margin-top: 20px;
}

/* Ajustes responsive */
@media (max-width: 768px) {
    .commitments-mini-grid {
        grid-template-columns: 1fr;
    }
    
    .section-divider {
        margin: 20px auto;
    }
}

@media (max-width: 480px) {
    .commitment-mini {
        padding: 6px 10px;
    }
    
    .commitment-mini i {
        font-size: 0.9rem;
        width: 20px;
    }
    
    .commitment-mini span {
        font-size: 0.75rem;
    }
}

    /* ============================================
       FOOTER INSTITUCIONAL - CON IMAGEN A LA DERECHA
       "SÍGUENOS EN" CENTRADO
    ============================================ */

/* ══════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════ */
.footer-a {
  background:#f8f9fa;
  border-top:1px solid rgba(184,150,85,.25);
  padding:20px 0;
}
.footer-a__in {
  max-width:1180px; margin:0 auto; padding:0 48px;
  display:grid; grid-template-columns:1fr auto 1fr;
  align-items:center; gap:24px;
}
.footer-a__stats { display:flex; flex-direction:column; gap:4px; }
.footer-a__stat  { font-family:var(--sans); font-size:.78rem; font-weight:300; color:var(--text-muted); display:flex; align-items:center; gap:8px; }
.footer-a__stat::before { content:'→'; color:var(--gold); font-size:.8rem; }
.footer-a__social { text-align:center; }
.footer-a__social-label { font-family:var(--sans); font-size:.62rem; font-weight:500; letter-spacing:.18em; text-transform:uppercase; color:var(--navy); margin-bottom:10px; display:block; }
.footer-a__social-icons { display:flex; justify-content:center; gap:14px; }
.footer-a__social-icon { width:36px; height:36px; border-radius:50%; background:#001B3D; display:flex; align-items:center; justify-content:center; color:#fff !important; font-size:1.1rem; transition:background .3s, transform .3s; }
.footer-a__social-icon:hover { background:#D4AF37; transform:scale(1.08); }
.footer-a__social-icon svg { width:16px; height:16px; fill:currentColor; }
.footer-a__unam { text-align:right; }
.footer-a__unam-img { height:90px; width:auto; display:inline-block; }
.footer-b { background:#0e2233; padding:20px 0 18px; }
.footer-b__in {
  max-width:1400px; margin:0 auto; padding:0 48px;
  display:grid; grid-template-columns:160px 1fr;
  gap:40px; align-items:start;
}
.footer-b__left p { font-family:var(--sans); font-size:.78rem; font-weight:300; color:rgba(255,255,255,.92); line-height:1.8; }
.footer-b__right { display:flex; flex-direction:column; gap:0; }
.footer-b__right p {
  font-family:var(--sans); font-size:.75rem; font-weight:300;
  color:rgba(255,255,255,.9); line-height:1.75;
  text-align:justify; text-justify:inter-word;
}
.footer-b__right a { color:#D4AF37; text-decoration:underline; text-decoration-color:rgba(212,175,55,.45); text-underline-offset:3px; transition:color .3s, text-decoration-color .3s; }
.footer-b__right a:hover { color:#999999; text-decoration-color:#999999; }
.footer-b__sep { color:rgba(255,255,255,.4); margin:0 4px; }

    /* Responsive */
    @media (max-width: 768px) {
        .footer-top-content {
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 1.5rem;
        }
        .footer-visits {
            text-align: center;
        }
        .visits-number {
            justify-content: center;
        }
        .footer-social {
            flex: auto;
            width: 100%;
        }
        .footer-logo {
            text-align: center;
            flex: auto;
        }
        .footer-legal-band {
            flex-direction: column;
            gap: 1rem;
        }
        .legal-left {
            align-items: center;
            text-align: center;
            width: 100%;
        }
        .legal-right {
            width: 100%;
        }
        .legal-text {
            text-align: center;
        }
        .legal-links {
            justify-content: center;
        }
        .footer-top-light .footer-container {
            padding: 1.5rem;
        }
        .footer-bottom-dark .footer-container {
            padding: 1.5rem;
        }
    }



/* ============================================
   NAVBAR: MENÚ A LA DERECHA Y IMÁGENES MÁS PEQUEÑAS EN MÓVIL
   ============================================ */

/* Vista normal (desktop) - sin cambios */
.brand-logo-fca {
    height: 65px;
    width: auto;
}

/* En móvil, hacer las imágenes del título más pequeñas */
@media (max-width: 768px) {
    .brand-logo-fca {
        height: 40px;  /* Imágenes más pequeñas en móvil */
    }
    
    .brand-name {
        font-size: 0.9rem;  /* Texto más pequeño en móvil */
    }
    
    .brand-inst {
        font-size: 0.55rem;
    }
    
    .brand-wrap {
        gap: 6px;  /* Menor espacio entre logos */
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Para pantallas muy pequeñas */
@media (max-width: 480px) {
    .brand-logo-fca {
        height: 32px;
    }
    
    .brand-name {
        font-size: 0.75rem;
    }
    
    .brand-inst {
        font-size: 0.5rem;
    }
    
    .brand-wrap {
        gap: 4px;
    }
}

/* ============================================
   CORRECCIONES RESPONSIVE - HERO SIN ESPACIO BLANCO
   ============================================ */

/* Hero en móvil - completamente pegado al navbar */
@media (max-width: 768px) {
    /* Eliminamos cualquier padding-top del body */
    body {
        padding-top: 0 !important;
    }
    
    .hero-section {
        min-height: 85vh;
        padding: 0 20px !important;
        margin-top: 0 !important;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-top: 0 !important;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-section {
        padding: 0 15px !important;
    }
}

/* === FOOTER: Hecho en México centrado y textos abajo SOLO en móvil === */
@media (max-width: 768px) {
    .footer-a__in {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-b__in {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .footer-b__left {
        order: 1;
    }
    
    .footer-b__right {
        order: 2;
    }
    
    .footer-b__right p {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-b__sep {
        display: none;
    }
    
    .footer-b__right a {
        display: inline-block;
        margin: 3px 5px;
    }
}



/* ============================================
   TALLERES.PHP - PÁGINA COMPLETA
   ============================================ */

.talleres-section {
    padding: 60px 0;
    background: #ffffff;
}

/* Grid de cards de talleres */
.talleres-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Card individual de taller */
.taller-card {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    transition: box-shadow 0.25s, transform 0.25s;
    background: #fff;
}

.taller-card:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.13);
    transform: translateY(-3px);
}

/* Imagen superior */
.taller-card__img {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
    flex-shrink: 0;
}

/* Badges sobre la imagen */
.taller-card__badges {
    display: flex;
    align-items: center;
    gap: 8px;
    position: absolute;
    top: 12px;
    left: 12px;
}

.taller-card-year {
    background: rgba(0, 0, 0, 0.55);
    color: rgba(255,255,255,0.9);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
}

.taller-card-badge {
    background: #D4AF37;
    color: #003366;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 20px;
}

.taller-card-badge--soon {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 1px solid rgba(255,255,255,0.4);
}

/* Área blanca de descripción */
.taller-card__info {
    padding: 18px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.taller-card__info h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #003366;
    margin: 0;
    line-height: 1.4;
}

.taller-card-desc {
    font-size: 0.82rem;
    color: #555;
    line-height: 1.5;
    margin: 0;
}

.card-click-hint {
    font-size: 0.78rem;
    color: #D4AF37;
    font-weight: 600;
    margin-top: auto;
}

/* Responsive */
@media (max-width: 1024px) {
    .talleres-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .talleres-cards-grid {
        grid-template-columns: 1fr;
    }
}

/* ==================== OTROS SITIOS DE INTERÉS ==================== */
.otros-sitios-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.otros-sitios-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.otro-sitio-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 28px 32px;
    text-decoration: none;
    color: inherit;
    width: 220px;
    transition: box-shadow 0.25s, border-color 0.25s;
}

.otro-sitio-card:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    border-color: #003366;
}

.otro-sitio-card__logo {
    width: 100px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #888;
    border-radius: 6px;
    padding: 8px;
    transition: background-color 0.25s;
}

.otro-sitio-card__logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.otro-sitio-card:hover .otro-sitio-card__logo {
    background-color: #003366;
}

.otro-sitio-card__title {
    font-size: 1rem;
    font-weight: 700;
    color: #222;
    margin: 0;
    transition: color 0.25s;
}

.otro-sitio-card:hover .otro-sitio-card__title {
    color: #003366;
}

.otro-sitio-card__desc {
    font-size: 0.82rem;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

.otro-sitio-card__badge {
    display: inline-block;
    margin-top: 6px;
    padding: 3px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    color: #888;
    text-transform: uppercase;
    transition: border-color 0.25s, color 0.25s;
}

.otro-sitio-card:hover .otro-sitio-card__badge {
    border-color: #D4AF37;
    color: #D4AF37;
}