:root {
    --navy-bg: #0B132B;
    --card-bg: #1C2541;
    --navy-blue: #162B4E;
    --blue-accent: #60A5FA;
    --red-main: #DC2626;
    --text-white: #FFFFFF;
    --text-light: #E2E8F0;
    --text-muted: #94A3B8;
    --gray-border: rgba(255, 255, 255, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* =========================================================================
   ESTILOS DE CURSOR PERSONALIZADO (PUNTITO SIN MANITO)
   ========================================================================== */
html, body {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><circle cx="8" cy="8" r="4" fill="white" stroke="black" stroke-width="1.5"/></svg>') 8 8, auto !important;
}

a, button, input, textarea, .card-white, .pilar-panel, .carousel-container, [role="button"], .prev-btn, .next-btn, .lang-btn {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><circle cx="8" cy="8" r="4" fill="black" stroke="white" stroke-width="1.5"/></svg>') 8 8, auto !important;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-light);
    line-height: 1.6;
    background-color: var(--navy-bg);
    overflow-x: hidden;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================================
   SELECTOR DE IDIOMA (ESTILO DE LA IMAGEN)
   ========================================================================== */
.lang-switch-container {
    background: #FFFFFF;
    padding: 4px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 2px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    margin-left: 20px;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.lang-btn {
    background: transparent;
    border: none;
    outline: none;
    color: #475569;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.lang-btn.active {
    background: #0042BD;
    color: #FFFFFF;
    box-shadow: 0 2px 8px rgba(0, 66, 189, 0.4);
}

.lang-btn:hover:not(.active) {
    color: #0F172A;
}

/* ==========================================================================
   ANIMACIÓN LOADER CONTENEDOR MARÍTIMO
   ========================================================================== */
#loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 99999;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    perspective: 1000px;
}

.container-door {
    width: 50%;
    height: 100%;
    background-color: #162B4E;
    background-image: repeating-linear-gradient(
        90deg,
        rgba(0,0,0,0.25),
        rgba(0,0,0,0.25) 15px,
        rgba(255,255,255,0.05) 15px,
        rgba(255,255,255,0.05) 30px
    );
    border: 3px solid #0b132b;
    box-shadow: inset 0 0 50px rgba(0,0,0,0.7);
    transition: transform 1.2s cubic-bezier(0.77, 0, 0.175, 1);
    position: relative;
    display: flex;
    align-items: center;
}

.door-left {
    transform-origin: left center;
    justify-content: flex-end;
}

.door-right {
    transform-origin: right center;
    justify-content: flex-start;
}

.door-handle {
    width: 10px;
    height: 120px;
    background: #DC2626;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(0,0,0,0.8);
    margin: 0 15px;
}

.loader-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #FFFFFF;
    text-align: center;
    z-index: 100000;
    transition: opacity 0.5s ease;
    font-family: 'Poppins', sans-serif;
}

.loader-logo h2 {
    font-size: 2.5rem;
    letter-spacing: 3px;
    color: #60A5FA;
}

#loader-container.loaded .door-left {
    transform: rotateY(-90deg);
}

#loader-container.loaded .door-right {
    transform: rotateY(90deg);
}

#loader-container.loaded .loader-logo {
    opacity: 0;
}

#loader-container.hidden {
    display: none;
}

/* ==========================================================================
   HERO / CABECERA
   ========================================================================== */
.hero-wrapper {
    position: relative;
    min-height: 100vh;
    width: 100%;
    background-image: url('https://images.unsplash.com/photo-1578575437130-527eed3abbec?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
}

.overlay-blue {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 19, 43, 0.75);
    z-index: 1;
}

.header-transparent {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 15px 0;
}

.nav-container {
    max-width: 100% !important;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px !important;
}

.logo-link {
    margin: 0;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 110px;
    width: 110px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
    border: 3px solid rgba(255, 255, 255, 0.5);
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-menu a {
    margin-left: 28px;
    text-decoration: none;
    color: var(--text-white);
    font-weight: 500;
    font-size: 0.95rem;
    transition: 0.3s;
}

.nav-menu a:hover {
    color: var(--blue-accent);
}

.btn-nav {
    background: rgba(255, 255, 255, 0.12) !important;
    padding: 9px 22px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(5px);
    font-weight: 600 !important;
}

.btn-nav:hover {
    background: var(--text-white) !important;
    color: var(--navy-bg) !important;
}

.hero-content-container {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    align-items: center;
    padding: 20px 0 80px 0;
}

.hero-content {
    max-width: 850px;
}

.badge {
    background: rgba(255, 255, 255, 0.15);
    color: var(--text-white);
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.25);
    letter-spacing: 1px;
}

.hero-content h1 {
    font-size: 5.5rem;
    margin: 15px 0;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -1px;
}

.hero-content h1 .text-mas {
    color: #FFFFFF;
    font-weight: 800;
}

.hero-content h1 .text-comex {
    color: #FFFFFF;
    font-weight: 400;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 35px;
    color: var(--text-light);
    max-width: 700px;
}

/* BOTONES */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-primary {
    background: var(--text-white);
    color: var(--navy-bg);
}

.btn-primary:hover {
    background: #CBD5E1;
    transform: translateY(-2px);
}

.btn-outline {
    border: 1.5px solid rgba(255, 255, 255, 0.8);
    color: var(--text-white);
    margin-left: 12px;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn-block {
    width: 100%;
    border: none;
    border-radius: 4px;
}

/* ==========================================================================
   NOSOTROS / CARRUSEL
   ========================================================================== */
.section {
    padding: 100px 0;
    background-color: var(--navy-bg);
}

.sub-title {
    color: var(--blue-accent);
    font-weight: 600;
    font-size: 0.95rem;
    display: block;
    margin-bottom: 8px;
}

.two-columns {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 40px;
    align-items: center;
}

.text-block h2 {
    font-size: 2.2rem;
    color: var(--text-white);
    margin-bottom: 20px;
}

.text-block p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.carousel-container {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--gray-border);
}

.carousel-slide {
    display: none;
}

.carousel-slide.active {
    display: block;
}

.carousel-slide img {
    width: 100%;
    height: 460px;
    object-fit: cover;
}

.prev-btn, .next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(11, 19, 43, 0.85);
    color: var(--text-white);
    border: 1px solid var(--gray-border);
    font-size: 1.5rem;
    padding: 12px 16px;
    border-radius: 4px;
    z-index: 10;
    transition: background 0.3s ease;
}

.prev-btn:hover, .next-btn:hover {
    background: var(--blue-accent);
}

.prev-btn { left: 10px; }
.next-btn { right: 10px; }

/* ==========================================================================
   PILARES DE TRABAJO
   ========================================================================== */
.section-pilares-fullscreen {
    width: 100%;
    height: 100vh;
    padding: 0;
    margin: 0;
    overflow: hidden;
    background: #000;
}

.accordion-container {
    display: flex;
    width: 100%;
    height: 100vh;
}

.pilar-panel {
    flex: 1;
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    border-right: 2px solid rgba(255, 255, 255, 0.3);
    transition: flex 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

.pilar-panel:last-child {
    border-right: none;
}

.panel-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s ease;
    transform: scale(1.05);
    z-index: 1;
}

.panel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.panel-blue .panel-overlay { background: rgba(11, 19, 43, 0.85); }
.panel-red .panel-overlay { background: rgba(180, 20, 30, 0.45); }
.panel-blue-semi .panel-overlay { background: rgba(22, 43, 78, 0.65); }
.panel-red-semi .panel-overlay { background: rgba(220, 38, 38, 0.55); }

.accordion-container:hover .pilar-panel { flex: 0.7; }
.pilar-panel:hover { flex: 3 !important; }
.pilar-panel:hover .panel-bg { transform: scale(1.18); }

.pilar-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 360px;
}

.pilar-val, .pilar-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 10px;
    line-height: 1;
}

.text-red { color: #FFD1D1 !important; }

.pilar-panel h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 12px;
}

.pilar-panel p {
    font-size: 1rem;
    color: #F1F5F9;
}

/* ==========================================================================
   SERVICIOS
   ========================================================================== */
.section-servicios-red-fullscreen {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.overlay-dark-red {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(115, 0, 0, 0.35);
    z-index: 1;
}

.servicios-container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.2rem;
    color: var(--text-white);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.sub-title-red {
    color: #FFAAAA !important;
    font-weight: 500;
}

.cards-grid-hover {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    align-items: stretch;
}

.card-white {
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 35px 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 150px;
    text-align: center;
}

.card-white h3 {
    font-size: 1.35rem;
    font-weight: 500;
    color: #334155;
    margin: 0;
    letter-spacing: 0.3px;
    transition: margin-bottom 0.3s ease, color 0.3s ease;
}

.card-white p {
    font-size: 0.92rem;
    font-weight: 400;
    color: #64748B;
    line-height: 1.6;
    max-height: 0;
    opacity: 0;
    margin-top: 0;
    transition: max-height 0.5s ease, opacity 0.4s ease, margin-top 0.3s ease;
}

.card-white:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
}

.card-white:hover h3 {
    margin-bottom: 12px;
    color: #1E293B;
}

.card-white:hover p {
    max-height: 200px;
    opacity: 1;
}

/* ==========================================================================
   SEDE CENTRAL
   ========================================================================== */
.banner-blue-fullscreen {
    min-height: 100vh;
    width: 100%;
    background-color: var(--navy-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
}

.banner-content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.banner-text h2 {
    font-size: 2.3rem;
    margin-bottom: 15px;
    color: var(--text-white);
}

.banner-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--text-light);
}

.address-card {
    background: rgba(28, 37, 65, 0.85);
    border: 1px solid var(--gray-border);
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.address-card h3 {
    font-size: 1.1rem;
    color: var(--blue-accent);
    margin-bottom: 10px;
}

.map-wrapper {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--gray-border);
}

/* ==========================================================================
   CONTACTO Y ESTADOS
   ========================================================================== */
.contact-parallax {
    background-image: url('https://images.unsplash.com/photo-1519003722824-194d4455a60c?auto=format&fit=crop&w=1600&q=80');
    padding: 100px 0;
    color: var(--text-white);
    position: relative;
    background-attachment: fixed;
    background-size: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 19, 43, 0.88);
    z-index: 1;
}

.contact-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.title-single-line {
    font-size: 2.1rem;
    white-space: nowrap;
    color: #FFFFFF;
    margin-bottom: 15px;
    font-weight: 800;
}

.contact-info-list {
    margin-bottom: 20px;
}

.contact-info-list p {
    font-size: 1.05rem;
    color: #E2E8F0;
    margin-bottom: 6px;
}

.contact-info-list strong {
    color: var(--blue-accent);
}

.contact-sub {
    font-size: 0.98rem;
    color: #CBD5E1;
    margin-bottom: 25px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border: 1px solid var(--gray-border);
    border-radius: 6px;
    background: var(--card-bg);
    color: var(--text-white);
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--blue-accent);
}

.form-status {
    margin-top: 15px;
    padding: 10px;
    border-radius: 4px;
    text-align: center;
    font-size: 0.95rem;
    display: none;
}
.form-status.success {
    display: block;
    background-color: rgba(34, 197, 94, 0.2);
    border: 1px solid #22c55e;
    color: #4ade80;
}
.form-status.error {
    display: block;
    background-color: rgba(239, 68, 68, 0.2);
    border: 1px solid #ef4444;
    color: #fca5a5;
}

/* ==========================================================================
   BOTÓN WHATSAPP & FOOTER
   ========================================================================== */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: #FFFFFF;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    text-decoration: none;
    z-index: 999;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

.footer {
    background: #060A17;
    color: var(--text-muted);
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid var(--gray-border);
}

/* RESPONSIVO */
@media (max-width: 1024px) {
    .title-single-line {
        white-space: normal;
        font-size: 1.8rem;
    }
    .hero-content h1 {
        font-size: 4rem;
    }
}

@media (max-width: 900px) {
    .two-columns, .contact-container, .banner-content-split {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .section-pilares-fullscreen, .accordion-container {
        height: auto;
    }
    .accordion-container {
        flex-direction: column;
    }
    .pilar-panel {
        height: 220px;
        border-right: none;
        border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    }
    .nav-container {
        padding: 0 20px !important;
        flex-wrap: wrap;
        gap: 15px;
    }
    .hero-content h1 {
        font-size: 3.2rem;
    }
    .lang-switch-container {
        position: fixed;
        top: 20px;
        right: 20px;
        z-index: 1000;
    }
}

/* ==========================================
   1. ESTILOS BASE Y ESCRITORIO (TU DISEÑO ACTUAL)
   ========================================== */

/* Reseteo básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #1a202c;
    background-color: #f8fafc;
    line-height: 1.6;
}

/* Contenedores generales */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 60px 0;
}

/* Tipografías base */
h1 { font-size: 2.8rem; line-height: 1.1; margin-bottom: 20px; }
h2 { font-size: 2.2rem; margin-bottom: 15px; }
h3 { font-size: 1.4rem; margin-bottom: 10px; }
p  { font-size: 1rem; color: #4a5568; margin-bottom: 15px; }

/* Imágenes responsivas generales */
img, video {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==========================================
2. SECCIÓN RESPONSIVE / MEDIA QUERIES
(SOLO ACTÚA EN PANTALLAS DE CELULARES Y TABLETS)
   ========================================== */

@media (max-width: 768px) {

    /* Previene el desplazamiento / scroll horizontal indeseado */
    html, body {
        overflow-x: hidden;
        width: 100%;
    }

    /* Reducción de relleno de secciones para aprovechar espacio */
    section {
        padding: 35px 0;
    }

    .container {
        padding: 0 15px;
    }

    /* Ajuste de escala tipográfica para pantallas pequeñas */
    h1 {
        font-size: 1.8rem;
        line-height: 1.25;
    }

    h2 {
        font-size: 1.4rem;
    }

    h3 {
        font-size: 1.15rem;
    }

    p {
        font-size: 0.92rem;
    }

    /* Transformación de Grids y Columnas a formato vertical */
    .hero-container,
    .nosotros-container,
    .pilares-grid,
    .servicios-grid,
    .contacto-container,
    .footer-container {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }

    /* Ajuste de tarjetas y contenedores de servicios/pilares */
    .pilar-card, 
    .servicio-card, 
    .contacto-info, 
    .contacto-form {
        width: 100% !important;
        box-sizing: border-box;
        padding: 20px !important;
    }

    /* Ajuste de altura para el carrusel de imágenes */
    .carousel-container {
        height: 220px !important;
        width: 100%;
    }

    /* Ajuste de Botones */
    .btn, 
    button, 
    input[type="submit"] {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
    }

    /* Menú de navegación en móviles (si usás hamburguesa o lista vertical) */
    .nav-links {
        display: none; /* Se oculta por defecto en celular */
        flex-direction: column;
        width: 100%;
        background-color: #0f172a; /* Color corporativo oscuro */
        position: absolute;
        top: 100%;
        left: 0;
        padding: 20px 0;
        text-align: center;
    }

    /* Clase activa para mostrar menú cuando se presiona la hamburguesa */
    .nav-links.active {
        display: flex;
    }

    /* Botón Hamburguesa */
    .menu-toggle {
        display: block !important;
        cursor: pointer;
        font-size: 1.5rem;
    }
}

/* Ocultar botón de menú hamburguesa en PC */
.menu-toggle {
    display: none;
}

/* ============================================================
SOLUCIONES EXCLUSIVAS PARA CELULAR (NO AFECTA A LA COMPU)
============================================================ */
@media (max-width: 768px) {

    /* --- 1. ENCABEZADO, IDIOMAS Y HAMBURGUESA --- */
    .nav-container {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 10px 15px !important;
        position: relative;
    }

    /* Achicar selector de idiomas para que no choque */
    .lang-switch-container {
        transform: scale(0.8);
        margin: 0 !important;
    }

    .lang-btn {
        padding: 4px 8px !important;
        font-size: 0.75rem !important;
    }

    /* Mostrar botón de tres rayitas bien ubicado */
    .menu-toggle {
        display: block !important;
        font-size: 1.5rem;
        color: #ffffff;
        cursor: pointer;
        z-index: 1000;
    }

    /* Ocultar el menú por defecto en celular */
    .nav-menu {
        display: none !important; 
        flex-direction: column !important;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #0b132b;
        padding: 20px 0 !important;
        text-align: center;
        box-shadow: 0px 10px 20px rgba(0,0,0,0.5);
    }

    /* Clase activa al tocar las rayitas */
    .nav-menu.active {
        display: flex !important;
    }

    .nav-menu a {
        padding: 12px 0 !important;
        font-size: 1.1rem !important;
    }


    /* --- 2. BOTONES DEL HERO --- */
    .hero-btns {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 15px !important;
        width: 100%;
        margin-top: 20px;
    }

    .hero-btns .btn {
        width: 90% !important;
        max-width: 300px;
        margin: 0 !important;
        text-align: center;
    }


    /* --- 3. FLECHAS DEL CARRUSEL --- */
    .carousel-container {
        position: relative !important;
        overflow: hidden;
    }

    .prev-btn, .next-btn {
        width: 35px !important;
        height: 35px !important;
        line-height: 35px !important;
        padding: 0 !important;
        font-size: 1.1rem !important;
        background: rgba(0, 0, 0, 0.6) !important;
        color: #ffffff !important;
        border: none !important;
        border-radius: 50% !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        z-index: 10;
    }

    .prev-btn { left: 8px !important; }
    .next-btn { right: 8px !important; }


    /* --- 4. BOTÓN "HACÉ TU CONSULTA" CENTRADO --- */
    .banner-text {
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .banner-text .btn {
        margin: 15px auto 0 auto !important;
        display: inline-block !important;
        width: auto !important;
        min-width: 200px;
    }
}