﻿/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Inter', sans-serif;
    background: #f5f7fa;
    overflow-x: hidden;
    color: #222;
}
/* HERO */
.hero {
    height: 100vh;
    height: 100svh;
    min-height: 600px;
    position: relative;
    background: #0a1a2e;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 0 6%;
    overflow: hidden;
}
/* SLIDER DE FONDO */
.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}
.slide.active {
    opacity: 1;
}
/* ── Fondos DESKTOP (1920×1080 px, horizontal) ── */
.slide-1 { background-image: url('../img/fondo1.jpeg'); }
.slide-2 { background-image: url('../img/fondo2.jpeg'); }
.slide-3 { background-image: url('../img/fondo3.jpeg'); }
.slide-4 { background-image: url('../img/fondo4.jpg'); }
/* ── Fondos MOBILE (1080×1920 px, vertical) ── */
@media (max-width: 900px) {
    .slide-1 { background-image: url('../img/fondo-mobile1.jpg'); }
    .slide-2 { background-image: url('../img/fondo-mobile2.jpeg'); }
    .slide-3 { background-image: url('../img/fondo-mobile3.jpeg'); }
    .slide-4 { background-image: url('../img/fondo-mobile4.jpg'); }
}
/* HEADER — flotando fijo al hacer scroll */
header {
    position: fixed !important;
    top: 22px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 88% !important;
    max-width: 1380px !important;
    height: 74px !important;
    padding: 0 30px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    background: rgba(255, 255, 255, 0.96) !important;
    backdrop-filter: blur(18px) !important;
    -webkit-backdrop-filter: blur(18px) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.9) !important;
    border-radius: 22px !important;
    z-index: 1000 !important;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.8) !important;
    transition: top .3s ease, box-shadow .3s ease !important;
}
/* LOGO */
.logo img {
    height: 64px !important;
    width: auto !important;
    object-fit: contain !important;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, .15)) !important;
}
/* MENU */
nav {
    display: flex;
    align-items: center !important;
    gap: 6px !important;
}
nav > a {
    text-decoration: none !important;
    color: #005ca8 !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    padding: 8px 14px !important;
    border-radius: 12px !important;
    transition: .25s !important;
    letter-spacing: 0.01em !important;
}
nav > a:hover {
    color: #003f78;
    background: rgba(0, 92, 168, 0.08);
}
/* AGENCIAS: puede partirse en 2 líneas en anchos intermedios; que quede compacto */
nav > a:nth-of-type(3) {
    max-width: 88px !important;
    padding-left: 8px !important;
    padding-right: 8px !important;
    text-align: center !important;
    line-height: 1.25 !important;
}
/* DROPDOWN */
.dropdown,
.mega-dropdown {
    position: relative;
    height: 74px;
    display: flex;
    align-items: center;
}
.dropbtn {
    background: transparent !important;
    border: 1px solid transparent !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    color: #222 !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    padding: 9px 16px !important;
    border-radius: 12px !important;
    transition: .25s !important;
    letter-spacing: 0.01em !important;
}
.dropbtn {
    color: #005ca8 !important;
}
.dropbtn:hover {
    color: #003f78;
    background: rgba(0, 92, 168, 0.08);
    border-color: rgba(0, 92, 168, 0.12);
}
.arrow {
    transition: .3s;
    display: inline-block;
    font-size: 11px;
    opacity: 0.7;
}
.arrow.rotate {
    transform: rotate(180deg);
}
/* SUBMENU */
.dropdown-content {
    display: none;
    position: absolute;
    top: 74px;
    left: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    min-width: 240px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(0, 0, 0, 0.06);
    z-index: 999;
}
.dropdown-content a {
    display: block;
    padding: 13px 20px;
    color: #222;
    text-decoration: none;
    font-size: 14.5px;
    font-weight: 500;
    transition: .2s;
}
.dropdown-content a:hover {
    background: #f0f4ff;
    color: #005ca8;
    padding-left: 26px;
}
/* MEGA MENU */
.mega-menu {
    display: none;
    position: absolute;
    top: 74px;
    left: 50%;
    transform: translateX(-50%);
    width: 420px;
    background: white;
    padding: 25px 20px;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
    z-index: 999;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
.mega-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.mega-column h3 {
    color: #005ca8;
    font-size: 24px;
    font-weight: 700;
}
.mega-column a {
    color: #334155;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: .25s;
    padding: 4px 0;
}
.mega-column a:hover {
    color: #005ca8;
    transform: translateX(6px);
}
/* Título principal del mega-menu */
.mega-titulo {
    color: #005ca8;
    font-size: 16px;
    font-weight: 700;
    padding-bottom: 10px;
    margin-bottom: 6px;
    border-bottom: 2px solid #005ca8;
    display: inline-block;
    width: 100%;
    letter-spacing: 0.3px;
}
.mega-titulo:hover {
    color: #003f7a;
    transform: none;
}
/* REDES SOCIALES FLOTANTES */
.social-floating {
    position: fixed;
    top: 100px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 900;
}
.social-float-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all .3s ease;
    font-size: 22px;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}
.social-float-btn.facebook {
    background: #1877f2;
}
.social-float-btn.facebook:hover {
    background: #165ac9;
    transform: scale(1.15) translateX(8px);
    box-shadow: 0 8px 25px rgba(24, 119, 242, 0.5);
}
.social-float-btn.tiktok {
    background: #000;
}
.social-float-btn.tiktok:hover {
    background: #1a1a1a;
    transform: scale(1.15) translateX(8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}
.social-float-btn.whatsapp {
    background: #25D366;
}
.social-float-btn.whatsapp:hover {
    background: #1ebe57;
    transform: scale(1.15) translateX(8px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}
/* HOVER PC */
@media(min-width: 901px) {
    .dropdown:hover .dropdown-content {
        display: block;
    }
    .mega-dropdown:hover .mega-menu {
        display: grid;
    }
}
/* BOTÓN CONTACTO */
.btn-contacto {
    background: #001f52 !important;
    border: 1.5px solid #001f52 !important;
    padding: 9px 20px !important;
    border-radius: 30px;
    color: white !important;
    font-weight: 600 !important;
    font-size: 14.5px !important;
    letter-spacing: 0.02em;
    transition: .25s !important;
}
.btn-contacto:hover {
    background: #000a15 !important;
    border-color: #000a15 !important;
    color: white !important;
}
/* PARTICLES */
#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
/* HERO CONTENIDO */
.hero-text,
.hero-img {
    position: relative;
    z-index: 2;
}
.hero-text {
    flex: 1;
    padding-top: 80px;
    padding-bottom: 120px;
    max-width: 680px;
}
/* BARRA INFERIOR DEL HERO */
.hero-bottom {
    position: absolute;
    bottom: 40px;
    left: 6%;
    right: 6%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
/* TIPOGRAFÍA */
.hero-text h1 {
    font-family: 'Sora', 'Inter', sans-serif;
    font-size: clamp(38px, 4.8vw, 66px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -1.5px;
    color: #ffffff;
    margin-bottom: 22px;
    max-width: 14ch;
    text-shadow:
        0 2px 12px rgba(0, 0, 0, 0.35),
        0 0 40px rgba(0, 0, 0, 0.15);
}
.hero-text p {
    font-family: 'Inter', sans-serif;
    font-size: clamp(16px, 2vw, 22px);
    font-weight: 400;
    margin-bottom: 42px;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.01em;
    max-width: 38ch;
    line-height: 1.5;
}
/* Imagen en botones - DENTRO del botón */
.btn-img {
    height: 28px;
    width: auto;
    object-fit: contain;
    margin-left: auto;
}
.botones {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.btn {
    padding: 16px 32px;
    border-radius: 14px;
    text-decoration: none;
    color: white;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.02em;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    transition: transform .15s ease, box-shadow .15s ease;
    transform: translateY(0);
    overflow: visible;
}
.btn:hover {
    transform: translateY(3px);
}
.btn:active {
    transform: translateY(6px);
}
.btn i {
    font-size: 13px;
    transition: transform .3s;
}
.btn:hover i.fa-chevron-right {
    transform: translateX(4px);
}
.azul {
    background: linear-gradient(180deg, #2176d9 0%, #0a56c4 50%, #0040a0 100%);
    box-shadow:
        0 6px 0 #00297a,
        0 10px 28px rgba(10, 86, 196, 0.6),
        inset 0 1px 0 rgba(255,255,255,0.25);
}
.azul:hover {
    box-shadow:
        0 3px 0 #00297a,
        0 6px 18px rgba(10, 86, 196, 0.5),
        inset 0 1px 0 rgba(255,255,255,0.25);
}
.azul:active {
    box-shadow:
        0 0px 0 #00297a,
        0 2px 8px rgba(10, 86, 196, 0.4),
        inset 0 1px 0 rgba(255,255,255,0.15);
}
.verde {
    background: linear-gradient(180deg, #30d468 0%, #18b84a 50%, #0f8f36 100%);
    box-shadow:
        0 6px 0 #096625,
        0 10px 28px rgba(24, 184, 74, 0.6),
        inset 0 1px 0 rgba(255,255,255,0.28);
}
.verde:hover {
    box-shadow:
        0 3px 0 #096625,
        0 6px 18px rgba(24, 184, 74, 0.5),
        inset 0 1px 0 rgba(255,255,255,0.28);
    color: white;
}
.verde:active {
    box-shadow:
        0 0px 0 #096625,
        0 2px 8px rgba(24, 184, 74, 0.4),
        inset 0 1px 0 rgba(255,255,255,0.15);
}
/* ESLOGAN IMG */
.eslogan-img {
    width: 90vw;
    max-width: 800px;
    height: auto;
    animation: none !important;
    transform: none !important;
    display: block;
    filter: drop-shadow(0 4px 24px rgba(0,0,0,0.35));
}
/* HERO IMAGEN */
.hero-img {
    position: absolute;
    top: 100px;
    left: 6%;
    z-index: 2;
}
.hero-img img {
    width: 380px;
    max-width: 100%;
    animation:
        heroEntrada 1s cubic-bezier(0.22, 1, 0.36, 1) both,
        floating 4s ease-in-out 1s infinite;
    filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.35));
}
@keyframes heroEntrada {
    from { opacity: 0; transform: translateY(40px) scale(0.85); }
    to   { opacity: 1; transform: translateY(0)   scale(1);     }
}
@keyframes floating {
    0%   { transform: translateY(0px);   }
    50%  { transform: translateY(-16px); }
    100% { transform: translateY(0px);   }
}
/* STATS */
.hero-stats {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
    margin-right: 6%;
}
.hero-stat {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 31, 82, 0.75);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 11px 18px;
    border-radius: 14px;
    color: white;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 13.5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: .3s;
}
.hero-stat:hover {
    transform: translateY(-4px);
    background: rgba(0, 31, 82, 0.85);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
}
.hero-stat i {
    color: #fcd34d;
    font-size: 17px;
}
/* TARJETA AGENCIA */
.agency-card {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border: 1.5px solid #86efac;
    border-radius: 14px;
    padding: 13px 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    animation: fadein .3s ease;
}
.agency-name { font-size: 13px; font-weight: 700; color: #14532d; display: flex; align-items: center; gap: 7px; }
.agency-info { font-size: 11.5px; color: #166534; line-height: 1.6; }
.agency-map-btn {
    display: inline-flex; align-items: center; gap: 6px;
    background: #16a34a; color: #fff; font-size: 11.5px; font-weight: 600;
    padding: 7px 13px; border-radius: 20px; text-decoration: none;
    transition: background .2s, transform .2s; width: fit-content;
    font-family: 'Inter', sans-serif;
}
.agency-map-btn:hover { background: #15803d; transform: translateY(-2px); }
/* FOOTER */
footer {
    background: #06243a;
    padding: 50px 8%;
    color: white;
}
.footer-contenido {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 40px;
}
/* COLUMNA IZQUIERDA */
.footer-izquierda {
    display: flex;
    flex-direction: row;
    gap: 48px;
    text-align: left;
    align-items: flex-start;
}
/* CONTACTO RÁPIDO */
.footer-contacto {
    text-align: left;
}
.footer-section-title {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    opacity: 0.7;
}
.footer-contacto-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-contacto-item {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #cbd5e1;
    font-size: 13.5px;
    font-family: 'Inter', sans-serif;
    transition: color .2s;
}
.footer-contacto-item:hover {
    color: white;
}
.footer-contacto-item i {
    width: 30px;
    min-width: 30px;
    height: 30px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
    color: #7dd3fc;
}
/* AGENCIAS FOOTER */
.footer-agencias-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.footer-agencia-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #cbd5e1;
    font-size: 13.5px;
    font-family: 'Inter', sans-serif;
    transition: color .2s;
}
.footer-agencia-link:hover {
    color: white;
}
.footer-agencia-link i {
    font-size: 11px;
    color: #7dd3fc;
    opacity: 0.8;
}
/* CENTRO */
.footer-centro {
    text-align: center;
}
.footer-logo {
    width: 85px;
    margin-bottom: 18px;
}
.footer-contenido p {
    color: #cbd5e1;
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    line-height: 1.7;
}
.respaldos {
    text-align: center;
}
.respaldos h4 {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 22px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    opacity: 0.7;
}
.logos-respaldo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}
.institucion {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.institucion img {
    height: 52px;
    width: auto;
    object-fit: contain;
    background: white;
    padding: 8px;
    border-radius: 10px;
}
.institucion span {
    font-size: 12px;
    color: #cbd5e1;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
/* MOBILE */
.menu-toggle {
    display: none;
    user-select: none;
}
@media(max-width: 900px) {
    header {
        position: fixed;
        height: 68px;
        padding: 0 18px;
        top: 12px;
        width: 92%;
    }
    .menu-toggle {
        display: block;
        position: relative;
        z-index: 4000;
        font-size: 28px;
        color: #005ca8;
        cursor: pointer;
    }
    nav {
        display: none !important;
        flex-direction: column;
        align-items: flex-start;
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        width: auto;
        background: rgba(255, 255, 255, 0.96);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        padding: 22px 18px;
        gap: 10px;
        z-index: 2500;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
        max-height: calc(100vh - 68px);
        overflow-y: auto;
        border-bottom: 1.5px solid rgba(255, 255, 255, 0.9);
    }
    nav.active {
        display: flex !important;
    }
    nav > a {
        color: #334155;
        font-size: 15px;
        font-weight: 500;
        text-decoration: none;
        padding: 11px 14px;
        border-radius: 12px;
        transition: .25s;
        width: 100%;
    }
    nav > a:nth-of-type(3) {
        max-width: none !important;
        white-space: nowrap;
        text-align: left !important;
        line-height: normal !important;
        padding: 11px 14px !important;
    }
    nav > a:hover {
        background: rgba(0, 92, 168, 0.08);
        color: #005ca8;
    }
    .dropdown,
    .mega-dropdown {
        width: 100%;
        height: auto;
        flex-direction: column;
        align-items: flex-start;
    }
    .dropbtn {
        width: 100%;
        justify-content: space-between;
        color: #334155;
        background: rgba(0, 92, 168, 0.06);
        border-color: rgba(0, 92, 168, 0.15);
        font-size: 15px;
    }
    .dropdown-content,
    .mega-menu {
        display: none;
        position: static;
        width: 100%;
        transform: none;
        background: transparent;
        box-shadow: none;
        padding: 12px 0 0 0;
        grid-template-columns: 1fr;
        border-radius: 0;
        backdrop-filter: none;
        border: none;
    }
    .dropdown-content.show {
        display: flex;
        flex-direction: column;
        gap: 6px;
    }
    .mega-menu.show {
        display: grid;
        gap: 12px;
    }
    .mega-column {
        background: rgba(0, 92, 168, 0.08);
        border-radius: 14px;
        padding: 14px;
        border-left: 3px solid rgba(0, 92, 168, 0.5);
        gap: 8px;
    }
    .mega-titulo {
        font-size: 13px !important;
        font-weight: 700 !important;
        color: #005ca8 !important;
        text-transform: uppercase;
        letter-spacing: 0.8px;
        padding: 0 0 10px 0 !important;
        border-bottom: 2px solid #005ca8 !important;
        margin-bottom: 4px;
        background: none !important;
        box-shadow: none !important;
        border-radius: 0 !important;
        cursor: pointer;
    }
    .mega-column a:not(.mega-titulo) {
        color: #334155 !important;
        font-size: 14.5px !important;
        padding: 9px 12px !important;
        border-radius: 10px !important;
        background: rgba(0, 92, 168, 0.05) !important;
        box-shadow: none !important;
        border: 1px solid rgba(0, 92, 168, 0.1) !important;
    }
    .mega-column a:not(.mega-titulo):hover {
        background: rgba(0, 92, 168, 0.12) !important;
        color: #005ca8 !important;
        transform: translateX(4px);
    }
    .dropdown-content a {
        padding: 11px 14px !important;
        border-radius: 11px !important;
        font-size: 14.5px !important;
        background: rgba(0, 92, 168, 0.05) !important;
        border: 1px solid rgba(0, 92, 168, 0.1) !important;
        color: #334155 !important;
    }
    .dropdown-content a:hover {
        background: rgba(0, 92, 168, 0.12) !important;
        color: #005ca8 !important;
    }
    /* REDES SOCIALES FLOTANTES MOBILE */
    .social-floating {
        top: auto;
        bottom: 230px;
        right: 10px;
        gap: 12px;
    }
    .social-float-btn {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
    /* Hero mobile */
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 0 5%;
    }
    .hero-text {
        padding-top: 96px;
        padding-bottom: 0;
        max-width: none;
    }
    .hero-text h1 {
        font-size: clamp(28px, 7vw, 42px);
        max-width: none;
        letter-spacing: -1px;
        margin-bottom: 10px;
    }
    .hero-text p {
        font-size: 15px;
        max-width: none;
        margin-bottom: 0;
    }
    .hero-img {
        top: 120px;
        left: 5%;
        right: 5%;
    }
    .eslogan-img {
        width: 30vw !important;
        max-width: 130px !important;
    }
    #asw {
        bottom: 185px;
        top: auto;
        right: 14px;
        transform: none;
    }
    #asw-badge {
        bottom: 76px;
        top: auto;
    }
    .hero-bottom {
        position: absolute;
        bottom: 18px;
        left: 5%;
        right: 5%;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .botones {
        justify-content: center;
        width: 100%;
        gap: 10px;
    }
    .btn {
        flex: 1;
        justify-content: center;
        padding: 12px 14px;
        font-size: 13.5px;
        border-radius: 12px;
    }
    .hero-stats {
        justify-content: center;
        width: 100%;
        gap: 5px;
        margin-right: 0;
        flex-wrap: nowrap;
    }
    .hero-stat {
        font-size: 10px;
        padding: 6px 8px;
        border-radius: 8px;
        gap: 5px;
        flex-shrink: 1;
        white-space: nowrap;
    }
    .hero-stat i {
        font-size: 12px;
    }
    .btn-contacto {
        margin-top: 4px;
    }
    .logos-respaldo {
        gap: 28px;
    }
    .institucion img {
        height: 44px;
    }
    .footer-contenido {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    .footer-izquierda {
        flex-direction: column;
        align-items: center;
        gap: 28px;
    }
    .footer-contacto {
        text-align: center;
    }
    .footer-contacto-items {
        align-items: center;
    }
    .footer-agencias-links {
        align-items: center;
    }
    .respaldos {
        text-align: center;
    }
}