/* ========== IMPORTS ========== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

/* ========== RESET Y CONFIGURACIÓN BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: #f9f9f9;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    transition: margin-top 0.3s;
}

/* ========== BOTÓN FLOTANTE WHATSAPP ========== */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 28px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #1ebd5a;
}

/* ========== HEADER Y NAVEGACIÓN ========== */
header {
    background: linear-gradient(to right, #c9e1ff 0%, #c6defc 40%, #559ce4 70%, #1e3c72 100%);
    padding: 1rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.logo-container {
    display: block;
    transition: transform 0.3s ease;
    max-width: 200px;
}

.logo-container:hover {
    transform: scale(1.05);
}

.logo img {
    max-height: 60px;
    width: auto;
    display: block;
    filter: drop-shadow(0 2px 3px rgba(0,0,0,0.2));
}

/* Navegación principal */
.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin-left: 1.5rem;
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: color 0.3s;
    padding: 0.5rem 0;
    display: block;
}

.nav-links a:hover {
    color: #87CEEB;
}

/* Menú desplegable */
.dropdown {
    position: relative;
}

.dropdown-toggle::after {
    content: " ▼";
    font-size: 0.8em;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 250px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 0.5rem 0;
    margin: 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu,
.dropdown-menu:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    color: #333;
    padding: 0.75rem 1.5rem;
    display: block;
    font-weight: 400;
    border-radius: 0;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: #0054a6;
    color: white;
}

/* Menú hamburguesa */
.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: white;
}

/* ========== SECCIÓN TÍTULO CON IMAGEN DE FONDO ========== */
.titulo-seccion {
    position: relative;
    height: 500px;
    background-image: url('/imagenes/1.\ Comprometidos\ con\ tu\ salud\ visual.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.titulo-seccion::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(23, 32, 27, 0.6);
    z-index: 1;
}

.titulo {
    color: #0ed377;
    font-size: 3rem;
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
    z-index: 2;
}

/* ========== CONTENEDOR PRINCIPAL ========== */
.container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 100px auto;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.image-container {
    flex: 1;
    text-align: center;
    padding: 5px;
}

.image-container img {
    width: auto;
    height: 300px;
    border-radius: 8px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.text-container {
    flex: 1;
    padding: 20px;
}

.text-container h2,
.text-container h3,
.text-container h4 {
    color: #006c67;
    font-size: 30px;
    margin-bottom: 20px;
    font-family: 'Roboto', sans-serif;
}

.text-container p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* ========== SECCIÓN QUIÉNES SOMOS ========== */
.quienes-somos-container {
    display: flex;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.quienes-somos-text {
    flex: 1;
    padding-right: 30px;
}

.quienes-somos-image {
    flex: 1;
    max-width: 45%;
}

.quienes-somos-image img {
    width: 100%;
    border-radius: 5px;
}

.quienes-somos-title {
    color: #333;
    border-bottom: 3px solid #8cc63d;
    padding-bottom: 10px;
    margin-bottom: 20px;
    display: inline-block;
}

.quienes-somos-text p {
    margin-bottom: 20px;
    line-height: 1.6;
}

/* ========== SECCIÓN MISIÓN Y VISIÓN ========== */
.mision-vision-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    gap: 30px;
    background-color: #e8f7f9;
}

.mision-box,
.vision-box {
    flex: 1;
    background-color: #fff;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.mision-box h3,
.vision-box h3 {
    color: #333;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.mision-box h3:after,
.vision-box h3:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #8cc63d;
}

.icon-container {
    margin-bottom: 15px;
    font-size: 2rem;
}

.mision-box p,
.vision-box p {
    line-height: 1.6;
    margin-top: 15px;
}

/* ========== SECCIÓN VALORES ========== */
.valores-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: #fff;
}

.valores-image {
    display: flex;
    justify-content: center;
    max-width: 45%;
    padding: 20px 30px 20px 20px;
    align-items: center;
}

.valores-image img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: block;
}

.valores-content {
    flex: 1;
}

.valores-title {
    color: #333;
    border-bottom: 3px solid #8cc63d;
    padding-bottom: 10px;
    margin-bottom: 20px;
    display: inline-block;
}

.valores-content p {
    line-height: 1.6;
    margin-top: 15px;
}

/* Acordeón de valores */
.valores-accordion {
    margin-top: 20px;
}

.valores-item {
    margin-bottom: 10px;
}

.valores-header {
    background-color: #f5f5f5;
    padding: 15px;
    cursor: pointer;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-left: 4px solid #8cc63d;
    transition: all 0.3s ease;
}

.valores-header:hover {
    background-color: #e6e6e6;
    transform: translateX(5px);
}

.valores-header:hover .toggle-icon {
    transform: rotate(90deg);
}

.toggle-icon {
    font-weight: bold;
    font-size: 20px;
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    background-color: #8cc63d;
    color: white;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.valores-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 0 15px;
    background-color: #f9f9f9;
    border-radius: 0 0 5px 5px;
    transform-origin: top;
    opacity: 0;
}

.valores-body.active {
    max-height: 500px;
    padding: 15px;
    opacity: 1;
    animation: slideDown 0.5s ease forwards;
}

.valores-list {
    list-style-type: none;
    padding-left: 0;
}

.valores-list li {
    padding: 10px 15px 10px 30px;
    margin-bottom: 8px;
    position: relative;
    background-color: #f9f9f9;
    border-radius: 4px;
}

.valores-list li:before {
    content: '•';
    color: #8cc63d;
    font-size: 20px;
    position: absolute;
    left: 10px;
}

/* ========== BOTONES ========== */
.btn-contacto {
    background-color: #0054a6;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin-top: 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-contacto:hover {
    background-color: #002347;
}

.btn-link {
    color: #8cc63d !important;
    font-weight: bold;
}


/* ========== ANIMACIONES ========== */
@keyframes slideDown {
    0% {
        transform: translateY(-10px);
        opacity: 0;
    }
    70% {
        transform: translateY(5px);
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ========== RESPONSIVE DESIGN ========== */
/* Tablets */
@media (max-width: 992px) {
    .container {
        margin: 80px auto 30px;
        padding: 15px;
    }
    
    .image-container img {
        height: 250px;
    }
    
    .text-container h2,
    .text-container h3,
    .text-container h4 {
        font-size: 26px;
    }
    
    .text-container p {
        font-size: 16px;
    }
    
    .quienes-somos-container,
    .mision-vision-container,
    .valores-container {
        flex-direction: column;
        padding: 30px 15px;
    }
    
    .quienes-somos-text {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .quienes-somos-image,
    .valores-image {
        max-width: 100%;
        padding-right: 0;
        margin-bottom: 20px;
    }
    
    .mision-vision-container {
        gap: 20px;
    }
}

/* Móviles */
@media (max-width: 768px) {
    /* Navegación móvil */
    .hamburger {
        display: block;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #0054a6;
        flex-direction: column;
        padding: 1rem 0;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        margin: 0;
        text-align: center;
    }
    
    .dropdown-menu {
        position: static;
        box-shadow: none;
        background-color: rgba(255,255,255,0.1);
        margin-top: 0.5rem;
        opacity: 1;
        visibility: visible;
        transform: none;
    }
    
    .dropdown-menu a {
        color: white;
        padding: 0.5rem 1.5rem;
    }
    
    .dropdown-menu a:hover {
        background-color: rgba(255,255,255,0.2);
    }
    
    /* Secciones principales */
    .container {
        margin-top: 170px;
        padding: 15px;
        flex-direction: column;
    }
    
    .image-container,
    .text-container {
        width: 100%;
        padding: 10px;
    }
    
    .image-container img {
        height: auto;
        max-width: 100%;
    }
    
    .text-container h2,
    .text-container h3,
    .text-container h4 {
        font-size: 22px;
        text-align: center;
    }
    
    .titulo-seccion {
        height: 300px;
    }
    
    .titulo {
        font-size: 2rem;
        padding: 0 15px;
    }
    
    .quienes-somos-title,
    .valores-title {
        text-align: center;
        width: 100%;
    }
    
    .btn-contacto {
        display: block;
        width: 100%;
        text-align: center;
    }
    
    .valores-header {
        padding: 12px;
    }
    
    .valores-list li {
        padding: 8px 8px 8px 25px;
    }
    
    /* Footer móvil */
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-logo {
        align-items: center;
    }
    
    .social-icons {
        justify-content: center;
    }
}
/* ===== RESPONSIVE MÓVILES PEQUEÑOS ===== */
@media (max-width: 480px) {
    .container {
        margin-top: 150px;
        padding: 10px;
    }
    
    header h1 { font-size: 20px; }
    header img { width: 110px; }
    .titulo { font-size: 1.5rem; }
    .titulo-seccion { height: 200px; }
    
    .text-container h2,
    .text-container h3,
    .text-container h4 { font-size: 20px; }
    
    .text-container p { font-size: 15px; }
    
    .whatsapp-button {
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-button img {
        width: 25px;
        height: 25px;
    }
}

/* ===== BOTÓN FLOTANTE WHATSAPP ===== */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    animation: bounce 3s infinite;
}

.whatsapp-button a {
    display: flex;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.whatsapp-button img {
    width: 30px;
    height: 30px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}


#contacto {
    background-color: #006c67;
    color: rgb(0, 0, 0);
    padding: 40px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-align: center;
}

#contacto h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #f2f5f5;
}

.contacto-contenedor {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.contacto-item {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: background 0.3s ease;
}

.contacto-item:hover {
    background: rgba(196, 190, 190, 0.9);
}

.contacto-item h3 {
    font-size: 1.5em;
    margin: 10px 0;
    color: #333;
}

.contacto-item p a {
    text-decoration: none;
    color: #006c67;
    font-weight: bold;
}

.contacto-item img.icono-contacto {
    width: 50px;
    margin-bottom: 10px;
}

.contacto-mapa {
    margin-top: 30px;
}

.contacto-mapa h3 {
    font-size: 1.8em;
    color: #f2f5f5;
    margin-bottom: 15px;
}

.contacto-mapa iframe {
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: 300px;
}

/* ===== RESPONSIVE SERVICIOS ===== */
@media (max-width: 768px) {
    .servicios-contenedor {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .servicios-contenedor {
        grid-template-columns: 1fr;
    }
}

/* ===== INFORMACIÓN FINANCIERA ===== */
.informacion-financiera-container {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #f8f9fa;
}

.info-financiera-title {
    font-size: 32px;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 600;
    position: relative;
}

.info-financiera-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #007bff, #0056b3);
    margin: 15px auto 0;
    border-radius: 2px;
}

/* ===== ACORDEÓN ===== */
.accordion {
    background: white;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    border: 1px solid #e9ecef;
    position: relative;
}

.accordion-header {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
}

.accordion-header:hover {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.accordion-content {
    display: none;
    background: #ffffff;
    border-top: 1px solid #e9ecef;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.accordion-content.active {
    display: block;
    max-height: 300px;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from { 
        max-height: 0;
        opacity: 0;
    }
    to { 
        max-height: 300px;
        opacity: 1;
    }
}

.arrow {
    transition: transform 0.3s ease;
    font-size: 16px;
    color: #6c757d;
}

.arrow.rotated {
    transform: rotate(180deg);
}

/* ===== LISTA DE DOCUMENTOS ===== */
.docs-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.doc-link {
    display: block;
    padding: 12px 20px;
    color: #495057;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    border-bottom: 1px solid #f1f3f4;
    transition: all 0.2s ease;
    cursor: pointer;
}

.doc-link:first-child { border-top: none; }
.doc-link:last-child { border-bottom: none; }

.doc-link:hover {
    background-color: #f8f9fa;
    color: #007bff;
    text-decoration: none;
    padding-left: 24px;
}

/* ===== POLÍTICA CONTAINER ===== */
.politica-container {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 0;
    display: flex;
    align-items: stretch;
    min-height: 400px;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.politica-content {
    flex: 1;
    padding: 40px 30px;
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.politica-title {
    font-size: 1.8rem;
    color: #000;
    margin-bottom: 20px;
    font-weight: bold;
    text-transform: uppercase;
    border-bottom: 3px solid #8BC34A;
    padding-bottom: 10px;
    display: inline-block;
}

.politica-text {
    background: transparent;
    color: #333;
    padding: 0;
    border-radius: 0;
    font-size: 1rem;
    text-align: justify;
    line-height: 1.6;
    box-shadow: none;
}

.politica-text p { margin-bottom: 15px; }

.politica-image {
    flex: 1;
    max-width: 50%;
    min-height: 400px;
    background: #f0f0f0;
}

.politica-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    box-shadow: none;
}


/* ===== FOOTER - NUEVO DISEÑO ===== */
footer {
    background: #04182e;
    color: #ffffff;
    padding: 30px 0 0;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 350px 1fr 1fr auto;
    gap: 60px;
    align-items: start;
}

/* SECCIÓN LOGO */
.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}

.logos {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.logo-principal {
    margin-bottom: 20px;
}

.logo-img {
    max-width: 280px;
    height: auto;
    filter: brightness(1.2);
}

.logo-vigilado {
    max-width: 200px;
    height: auto;
    opacity: 0.9;
}

/* SECCIONES PRINCIPALES */
.footer-section h3 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: none;
    letter-spacing: 0;
}

.footer-section p {
    margin-bottom: 8px;
    line-height: 1.6;
    font-size: 14px;
    color: #b3c7d6;
}

.footer-section a {
    color: #b3c7d6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #1976d2;
}

/* CONTACTO SECTION */
.contacto-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contacto-email {
    color: #b3c7d6;
    font-size: 14px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ICONO EMAIL - MISMO COLOR DEL TEXTO */
.contacto-email i {
    color: #b3c7d6;
}

.sedes-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 8px;
}

.sede-item {
    display: flex;
    flex-direction: row;
    gap: 8px;
    margin-bottom: 8px;
    align-items: flex-start;
}

.sede-label {
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
    flex-shrink: 0;
}

.sede-direccion {
    color: #b3c7d6;
    font-size: 14px;
    line-height: 1.4;
    flex: 1;
}

/* ICONO UBICACIÓN - MISMO COLOR DEL TEXTO */
.sede-direccion i {
    color: #b3c7d6;
}

.telefono-item {
    color: #b3c7d6;
    font-size: 16px;
    font-weight: 500;
    margin: 8px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ICONO TELÉFONO - MISMO COLOR DEL TEXTO */
.telefono-item i {
    color: #b3c7d6;
}

.prq-item {
    margin-top: 20px;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
}

/* BOTÓN PQR - AZUL MÁS OSCURO PARA MEJOR LEGIBILIDAD */
.btn-pqr {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(45deg, #1976d2, #1565c0);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-pqr:hover {
    background: linear-gradient(45deg, #1565c0, #0d47a1);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(25, 118, 210, 0.4);
    color: white;
}

/* INSTITUCIONAL SECTION */
.institucional-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.institucional-links a {
    font-size: 14px;
    padding: 4px 0;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.institucional-links a:hover {
    border-bottom-color: #1976d2;
    padding-left: 5px;
}

/* ICONOS INSTITUCIONALES - MISMO COLOR DEL TEXTO */
.institucional-links a i {
    color: #b3c7d6;
    font-size: 12px;
}

/* SECCIÓN PAGOS */
.pagos-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
}

.pagos-section h3 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: none;
    letter-spacing: 0;
}

.btn-pago-seguro {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, #1b5e20, #2e7d32);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 2px solid #1b5e20;
    box-shadow: 0 4px 15px rgba(27, 94, 32, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-pago-seguro:hover {
    background: linear-gradient(45deg, #0d5016, #1b5e20);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(27, 94, 32, 0.4);
    color: white;
}

.btn-pago-seguro i {
    color: white;
    font-size: 16px;
}

/* FOOTER BOTTOM */
.footer-bottom {
    background: #02111a;
    text-align: left;
    padding: 12px 40px;
    margin-top: 30px;
    color: #ffffff;
    font-size: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.social-icons {
    display: flex;
    gap: 15px;
    position: absolute;
    right: 50%;
    transform: translateX(20px);
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #b3c7d6;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: #1976d2;
    color: white;
    transform: translateY(-2px);
}

/* WHATSAPP FLOAT BUTTON */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .pagos-section {
        grid-column: 1 / -1;
        align-items: flex-start;
        margin-top: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .social-icons {
        position: static;
        transform: none;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-logo {
        align-items: center;
    }
    
    .pagos-section {
        align-items: center;
    }
    
    .footer-section h3 {
        font-size: 20px;
    }

    .footer-bottom {
        padding: 15px 20px;
    }
    
    .informacion-financiera-container {
        padding: 40px 15px;
    }
    
    .accordion-header {
        padding: 20px 20px;
        font-size: 18px;
    }
    
    .info-financiera-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .doc-link {
        padding: 14px 18px;
        font-size: 14px;
    }

    .doc-link:hover {
        padding-left: 22px;
    }
    
    .documentos-row {
        flex-direction: column;
        align-items: center;
    }
    
    .documento-financiero {
        width: 100%;
        max-width: 400px;
    }
    
    .politica-container {
        flex-direction: column;
        min-height: auto;
    }

    .politica-content {
        padding: 30px 20px;
        text-align: left;
    }

    .politica-title {
        font-size: 1.6rem;
    }

    .politica-text {
        font-size: 0.95rem;
    }

    .politica-image {
        max-width: 100%;
        min-height: 250px;
    }
}

@media (max-width: 480px) {
    .footer-content {
        padding: 0 15px;
    }
    
    .btn-pago-seguro {
        padding: 10px 20px;
        font-size: 12px;
    }

    .footer-bottom {
        padding: 15px 15px;
    }
    
    .politica-title {
        font-size: 1.4rem;
    }

    .politica-content {
        padding: 25px 15px;
    }

    .politica-text {
        font-size: 0.9rem;
    }
}