/* =========================================
   1. VARIABLES Y BASE 
   ========================================= */
:root {
    --asc-orange: #FF5000;
    --asc-blue: #00325A;
    --asc-text: #555;
    --asc-bg-gray: #fcfcfc;
}

body {
    font-family: "Poppins", Arial, sans-serif;
    color: var(--asc-text);
}
a {
    text-decoration: none;
}
.text-asc-blue {
    color: var(--asc-blue) !important;
}
.text-asc-orange {
    color: var(--asc-orange) !important;
}

/* =========================================
   2. TIPOGRAFÍA ORDENADOR
   ========================================= */
.asc-h1 {
    font-size: 40px;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 20px;
}
.asc-h2 {
    font-size: 24px;
    text-transform: uppercase;
    color: var(--asc-blue);
    margin-bottom: 1.5rem;
}
.asc-h3 {
    font-size: 17px;
    color: var(--asc-blue);
    text-transform: uppercase;
    margin-bottom: 1rem;
}
h1,
.asc-h1,
.header-title {
    font-weight: 600;
}
h2,
.asc-h2,
.title-h2 {
    font-weight: 700;
}
h3,
.asc-h3,
.tittle-icon {
    font-weight: 600;
}
.asc-p {
    font-size: 15.2px;
    line-height: 1.6;
    color: #00325A !important;
    text-align: justify;
    margin-bottom: 1rem;
}
.hero-subtitle {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 30px;
}
/* Solo para quienes somos, revisión */
.asc-p-no-just {
    font-size: 15.2px;
    line-height: 1.6;
    color: #00325A !important;
    text-align: justify;
    word-spacing: 0.15em;
    margin-bottom: 1rem;
}


/* =========================================
   3. ESPACIADOS Y LAYOUT
   ========================================= */
.section-padding {
    padding-top: 3rem;
    padding-bottom: 3rem;
}
/* Distribucion de secciones como en sxd.com (px-4 base) */
.container-asc,
.container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    margin-left: auto;
    margin-right: auto;
}

/* En bloques con semicírculos, sxd.com usa px-0 */
.section-padding.overflow-hidden > .container {
    padding-left: 0;
    padding-right: 0;
}
/* Bloques texto + imagen lateral (estructura sxd.com):
   padding interno en texto y separación de la imagen en desktop */
@media (min-width: 768px) {
    .section-padding.bg-white.overflow-hidden > .container > .row {
        align-items: flex-start;
    }
    .section-padding.bg-white.overflow-hidden > .container > .row > .text-mobile-left {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    .section-padding.bg-white.overflow-hidden > .container > .row > .text-mobile-left .asc-h2 {
        font-size: 24px;
        line-height: 1.35;
        overflow-wrap: anywhere;
    }
    .section-padding.bg-white.overflow-hidden > .container > .row > .text-mobile-left .asc-p {
        font-size: 0.95rem;
        line-height: 22px;
        text-align: left;
        overflow-wrap: anywhere;
    }
    .section-padding.bg-white.overflow-hidden > .container > .row > [class*="col-md-5"] {
        align-self: flex-start;
    }
    .section-padding.bg-white.overflow-hidden > .container > .row > [class*="col-md-5"]:not(.order-2):not(.order-md-1) {
        padding-left: 3rem;
    }
    .section-padding.bg-white.overflow-hidden > .container > .row > .order-2.order-md-1[class*="col-md-5"] {
        padding-right: 3rem;
        padding-left: 0.75rem;
    }
}
.bg-gray {
    background-color: var(--asc-bg-gray);
}
.bg-white {
    background-color: #ffffff;
}

/* Header v2: dropdown "Seguros" con color principal como sxd */
.header-v2-navbar .dropdown-menu .dropdown-item {
    color: var(--asc-blue);
}
.header-v2-navbar .dropdown-menu .dropdown-item:focus,
.header-v2-navbar .dropdown-menu .dropdown-item:hover,
.header-v2-navbar .dropdown-menu .dropdown-item:active {
    color: #ffffff !important;
    background-color: var(--asc-orange) !important;
    text-decoration: none;
}

/* =========================================
   4. BOTONES Y HERO (CENTRADOS E IZQUIERDA)
   ========================================= */
.btn-asc {
    background-color: var(--asc-orange);
    color: white;
    font-weight: 700;
    font-size: 16px;
    padding: 8px 15px;
    border-radius: 50px;
    border: none;
    text-transform: uppercase;
    display: inline-block;
    transition: 0.3s;
}
.bt_home {
    padding: 8px 100px !important;
}
.btn-asc:hover {
    background-color: #e64800;
    color: white;
    transform: translateY(-2px);
}

.hero-section {
    background-size: cover;
    background-position: center;
    height: 450px;
    position: relative;
    color: white;
    display: flex;
    align-items: center; /* Alineación vertical */
}
.hero-overlay {
   position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
    z-index: 1;
}

/* Hero Centrado (Para el HOME) - ARREGLADO */
.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    margin: 0 auto; /* Esto lo centra horizontalmente de forma perfecta */
    text-align: center;
    padding: 0 20px;
}

/* Hero Alineado a la Izquierda (Para interiores) */
.hero-content-left {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: left;
    padding: 0 20px;
}

/* Formularios en el Hero (Mascotas) */
.hero-form-container {
    background: #ffffff;
    border-radius: 10px;
    padding: 20px 30px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    margin-top: -50px;
    position: relative;
    z-index: 10;
    border: 1px solid #e0e0e0;
    width: 100%;
}
.hero-form-container h4,
.hero-form-container .form-control {
    color: #00325a;
}
.hero-form-container .btn-asc {
    width: 100%;
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mascotas-hero-form h4,
.mascotas-hero-form .form-control,
.mascotas-hero-form .form-control::placeholder,
.mascotas-hero-form .btn-asc {
    font-size: 15.2px;
}
.mascotas-hero-form .form-control {
    border-radius: 50px;
}

/* =======================================================
   5. IMAGENES V2 POR LANDING (RUTAS Y LOGOS)
   ======================================================= */
.image-semicircle-left,
.img-curve-left {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: left;
    min-height: 355px;
    max-width: 500px;
    border-radius: 1000px 0px 0px 1000px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.image-semicircle-right,
.img-curve-right {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    min-height: 355px;
    border-radius: 0px 1000px 1000px 0px;
    margin-left: 0%;
    box-shadow: none;
}

/* RUTAS HOME */
.hero-bg-home {
    background-image: url("https://s3.eu-west-3.amazonaws.com/static.nibw.es/ascentiel/img/landings/Home/mediano-disparo-la-gente-en-una-relacion-abierta-4000x2000.webp");
}
.hero-bg-aboutus {
    background-image: url("/img/slider/quienes-somos.jpg");
    background-position: center center;
}
.img-home-1 {
    background-image: url("https://s3.eu-west-3.amazonaws.com/static.nibw.es/ascentiel/img/landings/Home/bajo-angulo-de-vista-de-los-rascacielos-800x500.webp");
}
.img-home-2 {
    background-image: url("https://s3.eu-west-3.amazonaws.com/static.nibw.es/ascentiel/img/landings/Home/concepto-de-hombres-de-negocios-de-apreton-de-manos-800x500.webp");
}
.img-home-3 {
    background-image: url("https://s3.eu-west-3.amazonaws.com/static.nibw.es/ascentiel/img/landings/Home/vista-de-la-oficina-moderna-800x500.webp");
}

/* RUTAS HOGAR */
.hero-bg-hogar {
    background-image: url("https://s3.eu-west-3.amazonaws.com/static.nibw.es/ascentiel/img/landings/Hogar/modern-living-room-interior-featuring-cozy-sofa-an-2026-01-11-10-13-55-utc-4000x2000.webp");
}
.img-hogar-1 {
    background-image: url("https://s3.eu-west-3.amazonaws.com/static.nibw.es/ascentiel/img/landings/Hogar/woman-trying-work-laptop-from-home-while-her-children-are-running-around-800x500.webp");
}
.img-hogar-2 {
    background-image: url("https://s3.eu-west-3.amazonaws.com/static.nibw.es/ascentiel/img/landings/Hogar/child-placing-train-tracks-800x500.webp");
}
.img-hogar-3 {
    background-image: url("https://s3.eu-west-3.amazonaws.com/static.nibw.es/ascentiel/img/landings/Hogar/mother-working-laptop-full-shot-800x500.webp");
}

/* RUTAS VIDA */
.hero-bg-vida {
    background-image: url("https://s3.eu-west-3.amazonaws.com/static.nibw.es/ascentiel/img/landings/Vida/cute-family-playing-summer-field-4000x2000.webp");
}
.img-vida-1 {
    background-image: url("https://s3.eu-west-3.amazonaws.com/static.nibw.es/ascentiel/img/landings/Vida/couple-love-800x500.webp");
}
.img-vida-2 {
    background-image: url("https://s3.eu-west-3.amazonaws.com/static.nibw.es/ascentiel/img/landings/Vida/medium-shot-family-hanging-out-jetty-800x500.webp");
}
.img-vida-3 {
    background-image: url("https://s3.eu-west-3.amazonaws.com/static.nibw.es/ascentiel/img/landings/Vida/family-with-little-daughter-together-autumnal-weather-having-fun-800x500.webp");
}

/* RUTAS COCHE */
.hero-bg-coche {
    background-image: url("https://s3.eu-west-3.amazonaws.com/static.nibw.es/ascentiel/img/landings/Coche/suv-azul-oscuro-en-carretera-humeda-seguridad-de-energia-y-diseno-moderno-4000x2000.webp");
}
.img-coche-1 {
    background-image: url("https://s3.eu-west-3.amazonaws.com/static.nibw.es/ascentiel/img/landings/Coche/office-employees-working-computers-coworking-desk-with-monitors-800x500.webp");
}
.img-coche-2 {
    background-image: url("https://s3.eu-west-3.amazonaws.com/static.nibw.es/ascentiel/img/landings/Coche/driving-car-mountain-road-with-gps-travel-with-comfort-style-800x500.webp");
}
.img-coche-3 {
    background-image: url("https://s3.eu-west-3.amazonaws.com/static.nibw.es/ascentiel/img/landings/Coche/shallow-focus-shot-handsome-spanish-caucasian-man-sitting-wheel-modern-car-800x500.webp");
}

/* RUTAS COMERCIO */
.hero-bg-comercio {
    background-image: url("https://s3.eu-west-3.amazonaws.com/static.nibw.es/ascentiel/img/landings/Comercio/happy-smiling-cafe-owner-girl-barista-apron-making-cappuccino-latte-art-with-steamed-milk-4000x2000.webp");
}
.img-comercio-1 {
    background-image: url("https://s3.eu-west-3.amazonaws.com/static.nibw.es/ascentiel/img/landings/Comercio/managers-visiting-storage-center-discussing-about-distribution-goals-year-800x500.webp");
}
.img-comercio-2 {
    background-image: url("https://s3.eu-west-3.amazonaws.com/static.nibw.es/ascentiel/img/landings/Comercio/person-paying-with-its-smartphone-wallet-app-800x500.webp");
}
.img-comercio-3 {
    background-image: url("https://s3.eu-west-3.amazonaws.com/static.nibw.es/ascentiel/img/landings/Comercio/good-looking-man-typing-laptop-posting-his-online-shop-new-products-his-business-startup-800x500.webp");
}

/* RUTAS DECESOS */
.hero-bg-decesos {
    background-image: url("https://s3.eu-west-3.amazonaws.com/static.nibw.es/ascentiel/img/landings/Decesos/scenic-view-of-orange-sunset-sky-over-water-with-c-2026-01-07-06-14-35-utc-4000x2000.webp");
}
.img-decesos-1 {
    background-image: url("https://s3.eu-west-3.amazonaws.com/static.nibw.es/ascentiel/img/landings/Decesos/parents-playing-with-their-boys-800x500.webp");
}
.img-decesos-2 {
    background-image: url("https://s3.eu-west-3.amazonaws.com/static.nibw.es/ascentiel/img/landings/Decesos/medium-shot-romantic-couple-800x500.webp");
}
.img-decesos-3 {
    background-image: url("https://s3.eu-west-3.amazonaws.com/static.nibw.es/ascentiel/img/landings/Decesos/parents-holding-their-little-son-are-walking-road-800x500.webp");
}

/* RUTAS MASCOTAS */
.hero-bg-mascotas {
    background-image: url("https://s3.eu-west-3.amazonaws.com/static.nibw.es/ascentiel/img/landings/Mascotas/young-woman-with-her-pet-french-bulldog-park-4000x2000.webp");
}
.img-mascotas-1 {
    background-image: url("https://s3.eu-west-3.amazonaws.com/static.nibw.es/ascentiel/img/landings/Mascotas/the-dog-travels-by-car-cute-beagle-dog-looks-out-2026-01-08-06-41-52-utc-800x500+(1).webp");
}
.img-mascotas-2 {
    background-image: url("https://s3.eu-west-3.amazonaws.com/static.nibw.es/ascentiel/img/landings/Mascotas/view-cute-dog-enjoying-time-nature-park-800x500.webp");
}

/* RUTAS MOTO */
.hero-bg-moto {
    background-image: url("https://s3.eu-west-3.amazonaws.com/static.nibw.es/ascentiel/img/landings/Moto/AdobeStock_298827820-4000x2000.webp");
}
.img-moto-1 {
    background-image: url("https://s3.eu-west-3.amazonaws.com/static.nibw.es/ascentiel/img/landings/Moto/young-handsome-man-posing-near-his-motorbike-wearing-gloves-800x500.webp");
}
.img-moto-2 {
    background-image: url("https://s3.eu-west-3.amazonaws.com/static.nibw.es/ascentiel/img/landings/Moto/side-view-smiling-bearded-man-sunglasses-sitting-modern-motorbike-outdoors-talking-by-smartphone-800x500.webp");
}
.img-moto-3 {
    background-image: url("https://s3.eu-west-3.amazonaws.com/static.nibw.es/ascentiel/img/landings/Moto/sexy-brunette-woman-leather-jacket-putting-helmet-sitting-retro-style-motorcycle-beautiful-sunny-day-800x400.webp");
}

/* RUTAS POR DIAS */
.hero-bg-pordias {
    background-image: url("https://s3.eu-west-3.amazonaws.com/static.nibw.es/ascentiel/img/landings/Seguro+por+dias/moving-black-car-road-4000x2000.webp");
}
.img-pordias-1 {
    background-image: url("https://s3.eu-west-3.amazonaws.com/static.nibw.es/ascentiel/img/landings/Seguro+por+dias/young-woman-testing-car-from-car-showroom-800x500.webp");
}
.img-pordias-2 {
    background-image: url("https://s3.eu-west-3.amazonaws.com/static.nibw.es/ascentiel/img/landings/Seguro+por+dias/driver-hand-wheel-motion-blur-trees-fast-summer-road-trip-800x500.webp");
}
.img-pordias-3 {
    background-image: url("https://s3.eu-west-3.amazonaws.com/static.nibw.es/ascentiel/img/landings/Seguro+por+dias/minivan-autumn-bend-close-view-red-family-car-800x500.webp");
}

/* RUTA CONTACTO */
.hero-bg-contacto {
    background-image: url("https://s3.eu-west-3.amazonaws.com/static.nibw.es/ascentiel/img/landings/Contacto/ascentiel-international.webp");
}

/* RUTAS SALUD */
.hero-bg-salud {
    background-image: url("https://s3.eu-west-3.amazonaws.com/static.nibw.es/ascentiel/img/landings/Salud/covid-recovery-center-female-doctor-holding-older-patient-s-hands-4000x2000.webp");
}
.img-salud-1 {
    background-image: url("https://s3.eu-west-3.amazonaws.com/static.nibw.es/ascentiel/img/landings/Salud/hands-unrecognizable-female-doctor-typing-keyboard-office-800x500.webp");
}
.img-salud-2 {
    background-image: url("https://s3.eu-west-3.amazonaws.com/static.nibw.es/ascentiel/img/landings/Salud/doctor-helping-patient-rehabilitation-800x500.webp");
}
.img-salud-3 {
    background-image: url("https://s3.eu-west-3.amazonaws.com/static.nibw.es/ascentiel/img/landings/Salud/doctor-helping-patient-rehabilitation+(1)-800x500.webp");
}

/* LOGOS HOME */
.v2-logo-casa-moderna-2 {
    background-image: url("https://s3.eu-west-3.amazonaws.com/static.nibw.es/ascentiel/img/landings/Home/casa-moderna.svg");
}
.v2-logo-apreton-de-manos-1-1 {
    background-image: url("https://s3.eu-west-3.amazonaws.com/static.nibw.es/ascentiel/img/landings/Home/apreton-de-manos+(1).svg");
}
.v2-logo-corazon-2 {
    background-image: url("https://s3.eu-west-3.amazonaws.com/static.nibw.es/ascentiel/img/landings/Home/corazon.svg");
}
.v2-logo-palomas-1-2-1 {
    background-image: url("https://s3.eu-west-3.amazonaws.com/static.nibw.es/ascentiel/img/landings/Home/palomas+(1)+2.svg");
}
.v2-logo-perro-3 {
    background-image: url("https://s3.eu-west-3.amazonaws.com/static.nibw.es/ascentiel/img/landings/Home/perro.svg");
}
.v2-logo-transporte-3 {
    background-image: url("https://s3.eu-west-3.amazonaws.com/static.nibw.es/ascentiel/img/landings/Home/transporte+3.png");
}
.v2-logo-motocicleta-1-2 {
    background-image: url("https://s3.eu-west-3.amazonaws.com/static.nibw.es/ascentiel/img/landings/Home/motocicleta.svg");
}
.v2-logo-tienda {
    background-image: url("https://s3.eu-west-3.amazonaws.com/static.nibw.es/ascentiel/img/landings/Home/tienda.svg");
}
.v2-logo-calendario-4 {
    background-image: url("https://s3.eu-west-3.amazonaws.com/static.nibw.es/ascentiel/img/landings/Home/calendario+(1).svg");
}
.v2-logo-image-14 {
    background-image: url("https://s3.eu-west-3.amazonaws.com/static.nibw.es/ascentiel/img/landings/Home/image+14.png");
}
.v2-logo-image-13 {
    background-image: url("https://s3.eu-west-3.amazonaws.com/static.nibw.es/ascentiel/img/landings/Home/image+13.png");
}
.v2-logo-image-4 {
    background-image: url("https://s3.eu-west-3.amazonaws.com/static.nibw.es/ascentiel/img/landings/Home/image+4.png");
}
.v2-logo-image-5 {
    background-image: url("https://s3.eu-west-3.amazonaws.com/static.nibw.es/ascentiel/img/landings/Home/image+5.png");
}
.v2-logo-image-6 {
    background-image: url("https://s3.eu-west-3.amazonaws.com/static.nibw.es/ascentiel/img/landings/Home/image+6.png");
}
.v2-logo-image-7 {
    background-image: url("https://s3.eu-west-3.amazonaws.com/static.nibw.es/ascentiel/img/landings/Home/image+7.png");
}
.v2-logo-image-8 {
    background-image: url("https://s3.eu-west-3.amazonaws.com/static.nibw.es/ascentiel/img/landings/Home/image+8.png");
}
.v2-logo-telefono-inteligente-1 {
    background-image: url("https://s3.eu-west-3.amazonaws.com/static.nibw.es/ascentiel/img/landings/Home/telefono-inteligente.svg");
}
.v2-logo-informacion-personal-1 {
    background-image: url("https://s3.eu-west-3.amazonaws.com/static.nibw.es/ascentiel/img/landings/Home/informacion-personal+(1).svg");
}
.v2-logo-apreton-de-manos-1 {
    background-image: url("https://s3.eu-west-3.amazonaws.com/static.nibw.es/ascentiel/img/landings/Home/apreton-de-manos+(1).svg");
}
.v2-logo-estructura-1 {
    background-image: url("https://s3.eu-west-3.amazonaws.com/static.nibw.es/ascentiel/img/landings/Home/estructura+1.png");
}

/* LOGOS MASCOTAS */
.v2-logo-escudo-de-seguridad-1 {
    background-image: url("https://s3.eu-west-3.amazonaws.com/static.nibw.es/ascentiel/img/landings/Mascotas/escudo.svg");
}
.v2-logo-legal-1 {
    background-image: url("https://s3.eu-west-3.amazonaws.com/static.nibw.es/ascentiel/img/landings/Mascotas/legal+1.png");
}

/* LOGOS POR DIAS */
.v2-logo-reloj-de-mano-1 {
    background-image: url("https://s3.eu-west-3.amazonaws.com/static.nibw.es/ascentiel/img/landings/Seguro+por+dias/reloj-de-mano.svg");
}
.v2-logo-consultante-2 {
    background-image: url("https://s3.eu-west-3.amazonaws.com/static.nibw.es/ascentiel/img/landings/Seguro+por+dias/consultante+2.png");
}

/* LOGOS COMPARTIDOS (HOGAR / VIDA / SALUD / DECESOS / MOTO / COCHE / COMERCIO) */
.v2-logo-pruebas-abdominales-1 {
    background-image: url("https://s3.eu-west-3.amazonaws.com/static.nibw.es/ascentiel/img/landings/Coche/pruebas-abdominales.svg");
}
.v2-logo-calidad-8 {
    background-image: url("https://s3.eu-west-3.amazonaws.com/static.nibw.es/ascentiel/img/landings/Coche/calidad.svg");
}
.v2-logo-ajustes-1 {
    background-image: url("https://s3.eu-west-3.amazonaws.com/static.nibw.es/ascentiel/img/landings/Coche/ajustes.svg");
}

/* LOGOS FOOTER */
.v2-logo-footer-adecose {
    background-image: url("https://s3.eu-west-3.amazonaws.com/static.nibw.es/ascentiel/img/landings/footer-header/image+31.png");
    width: min(100%, 290px);
    aspect-ratio: 290 / 60;
    height: auto;
    opacity: 0.9;
}
.v2-logo-footer-fecor {
    background-image: url("https://s3.eu-west-3.amazonaws.com/static.nibw.es/ascentiel/img/landings/footer-header/image+32.png");
    width: min(100%, 175px);
    aspect-ratio: 175 / 110;
    height: auto;
    opacity: 0.9;
}
.footer-v2 .footer-v2-logos .v2-logo {
    max-width: 100%;
    flex-shrink: 0;
}

/* Footer V2: escala tipografica */
.footer-v2 h5 {
    font-size: 17px !important;
}
.footer-v2 p,
.footer-v2 a,
.footer-v2 li,
.footer-v2 span {
    font-size: 15.2px !important;
}

/* =========================================
   6. COMPONENTES ESPECÍFICOS (Listas, Acordeón...)
   ========================================= */
.check-list {
    list-style: none;
    padding: 0;
}
.check-list li {
    margin-bottom: 10px;
    color: var(--asc-blue);
    font-size: 15px;
    display: flex;
    align-items: flex-start;
}
.check-list li::before {
    content: "";
    position: absolute;
    width: 15px;
    height: 8px;
    margin-right: 20px;
    border-left: 2px solid #00325a;
    border-bottom: 2px solid #00325a;
    transform: rotate(-45deg);
}

.check-list.check-list-png li {
    background-image: url("/img/landings/aprobar.png");
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 19px 19px;
    padding-left: 35px;
}

.check-list.check-list-png li::before {
    content: none;
}

.accordion-container-custom,
.faq-wrapper {
    margin: 0 auto;
}

@media (min-width: 768px) {
    .px-15 {
        padding-left: 15%;
        padding-right: 15%;
    }
}

.faq-wrapper .accordion-item:first-of-type,
.faq-wrapper .accordion-item:last-of-type .accordion-button,
.faq-wrapper .accordion-item:last-of-type .accordion-collapse,
.faq-wrapper .accordion-item:first-of-type .accordion-button {
    border-radius: 0 !important;
}

.faq-wrapper .accordion-item {
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: none;
}

.faq-wrapper .border-top {
    border-top: 1px var(--asc-orange) solid !important;
}

.faq-wrapper .accordion-button {
    color: var(--asc-blue);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    cursor: pointer;
    background-color: white;
}

.faq-wrapper .accordion-button h3 {
    margin: 0;
}

.faq-wrapper .accordion-button::after {
    background-image: url("/img/landings/+.png");
    transform: scale(0.75) !important;
}

.faq-wrapper .accordion-button:not(.collapsed)::after {
    background-image: url("/img/landings/x.png");
    transform: scale(0.75) !important;
    background-color: white;
}

.faq-wrapper .accordion-button:not(.collapsed) {
    color: var(--asc-blue);
    background-color: white;
    box-shadow: none !important;
    border-bottom-width: 0px !important;
}

.faq-wrapper .accordion-button.collapsed {
    border-bottom: 1px var(--asc-orange) solid !important;
}

.faq-wrapper .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.faq-wrapper .accordion-collapse.collapsing,
.faq-wrapper .accordion-collapse.show {
    border-bottom: 1px var(--asc-orange) solid;
}

.accordion-body-text,
.faq-wrapper .faq-answer p {
    font-size: 15px;
    color: #00325a;
    line-height: 1.6;
    text-align: justify;
    padding-bottom: 15px;
}

.faq-wrapper .faq-answer {
    padding-top: 0.5rem;
}

/* QUIENES SOMOS V2 (BASE V1 + COLORES V2) */
.about-v2-page .hero-section.hero-bg-aboutus {
    height: 470px;
    align-items: flex-start;
}
.about-v2-page .hero-section.hero-bg-aboutus .hero-overlay {
    background: transparent !important;
}
.about-v2-page .about-old-hero {
    max-width: 760px;
    margin: 0;
    text-align: left;
    padding-top: 140px;
    padding-left: 0;
    padding-right: 0;
}
.about-v2-page .about-old-hero .header-title,
.about-v2-page .about-old-hero .hero-subtitle {
    text-align: left;
}
.about-v2-page .about-old-hero .header-title {
    font-size: 40px;
    letter-spacing: 0;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.about-v2-page .about-old-hero .hero-subtitle {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.25;
    text-transform: none;
    margin-bottom: 0;
}

.about-v2-page .about-old-navy-line {
    width: 60px;
    height: 1px;
    margin: 40px auto 0;
    border-bottom: 2px solid var(--asc-orange);
}
.about-v2-page .about-old-section-title {
    color: var(--asc-blue);
    font-size: 24px;
    text-transform: none;
    margin-top: 10px;
    margin-bottom: 0;
    text-align: center;
}
.about-v2-page .about-old-block-title {
    color: var(--asc-blue);
    font-size: 17px;
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 0.8rem;
    text-transform: none;
}
.about-v2-page .about-old-values .asc-p,
.about-v2-page .about-old-team-copy {
    color: var(--asc-blue) !important;
    font-size: 15.2px;
    line-height: 1.6;
    font-weight: 400;
    text-align: justify !important;
    margin-top: 10px;
    margin-bottom: 20px;
}

.about-v2-page .about-old-timeline {
    position: relative;
    padding: 0;
    margin-top: 2em;
    margin-bottom: 2em;
}
.about-v2-page .about-old-timeline::before {
    content: "";
    position: absolute;
    top: 0;
    left: 18px;
    height: 100%;
    width: 4px;
    background: #e7eaec;
}
.about-v2-page .about-old-timeline-item {
    position: relative;
    margin: 2em 0;
}
.about-v2-page .about-old-timeline-item:first-child {
    margin-top: 0;
}
.about-v2-page .about-old-timeline-item:last-child {
    margin-bottom: 0;
}
.about-v2-page .about-old-timeline-icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid #f1f1f1;
    background-color: var(--asc-orange);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    z-index: 2;
}
.about-v2-page .about-old-timeline-card {
    position: relative;
    margin-left: 60px;
    background: #ffffff;
    border-radius: 0.25em;
    padding: 1em;
}
.about-v2-page .about-old-timeline-card::before {
    content: "";
    position: absolute;
    top: 16px;
    right: 100%;
    border: 7px solid transparent;
    border-right-color: #ffffff;
}
.about-v2-page .about-old-timeline-card .asc-p {
    font-size: 15.2px;
    font-weight: 400;
    margin: 1em 0;
    line-height: 1.6;
}
.about-v2-page .about-old-timeline-date {
    display: block;
    color: var(--asc-blue);
    font-size: 15.2px;
    font-weight: 500;
    line-height: 1.2;
    margin-top: 0.75rem;
}
.about-v2-page .about-old-timeline-date small {
    display: block;
    font-size: 15.2px;
    color: var(--asc-orange);
    font-weight: 400;
}

.about-v2-page .about-old-team-member {
    text-align: center;
    height: 100%;
}
.about-v2-page .about-old-team-photo {
    width: 128px;
    height: 128px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 0.8rem;
}
.about-v2-page .about-old-team-name {
    color: var(--asc-blue);
    font-size: 17px;
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 0.35rem;
}
.about-v2-page .about-old-team-name span {
    color: var(--asc-orange);
}
.about-v2-page .about-old-team-position {
    color: var(--asc-blue);
    font-size: 15.2px;
    font-weight: 400;
    margin-bottom: 40px;
}

@media only screen and (min-width: 768px) {
    .about-v2-page .about-old-timeline-card .asc-p {
        font-size: 15.2px;
    }
}

@media only screen and (min-width: 1170px) {
    .about-v2-page .about-old-timeline {
        margin-top: 3em;
        margin-bottom: 3em;
    }
    .about-v2-page .about-old-timeline::before {
        left: 50%;
        margin-left: -2px;
    }
    .about-v2-page .about-old-timeline-item {
        margin: 4em 0;
    }
    .about-v2-page .about-old-timeline-icon {
        width: 50px;
        height: 50px;
        left: 50%;
        margin-left: -25px;
        font-size: 19px;
    }
    .about-v2-page .about-old-timeline-card {
        margin-left: 0;
        width: 45%;
        padding: 1.6em;
    }
    .about-v2-page .about-old-timeline-card::before {
        top: 24px;
        left: 100%;
        right: auto;
        border-right-color: transparent;
        border-left-color: #ffffff;
    }
    .about-v2-page .about-old-timeline-item:nth-child(odd) .about-old-timeline-card {
        margin-right: auto;
    }
    .about-v2-page .about-old-timeline-item:nth-child(even) .about-old-timeline-card {
        margin-left: auto;
    }
    .about-v2-page .about-old-timeline-item:nth-child(even) .about-old-timeline-card::before {
        left: auto;
        right: 100%;
        border-left-color: transparent;
        border-right-color: #ffffff;
    }
    .about-v2-page .about-old-timeline-date {
        position: absolute;
        width: 100%;
        left: 122%;
        top: 2px;
        margin-top: 0;
    }
    .about-v2-page .about-old-timeline-item:nth-child(even) .about-old-timeline-date {
        left: auto;
        right: 122%;
        text-align: right;
    }
}

/* =========================================
   7. CARRUSEL ICONOS SERVICIOS (HOME)
   ========================================= */
.icons-container {
    margin-top: -60px;
    position: relative;
    z-index: 20;
}
.myServicesSwiper {
    width: 100%;
    padding-top: 25px !important;
    padding-bottom: 40px !important;
    padding-left:4px;
    padding-right:4px;
}

.service-card {
    background: #ffffff;
    border-radius: 20px;
    width: 100%;
    max-width: 110px;
    aspect-ratio: 1 / 1;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 0px 10px 0px #00000040;
    border: 1px solid rgba(0, 50, 90, 0.14);
    flex-shrink: 0;
    color: var(--asc-blue);
    transition: all 0.3s ease;
    text-decoration: none;
    margin: 0 auto;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 22px rgba(0, 50, 90, 0.18);
}
.service-card img,
.service-card .v2-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-bottom: 10px;
}
.service-card span {
    font-size: 11px;
    font-weight: 800;
    color: var(--asc-blue);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.swiper-pagination-bullet-active {
    background-color: #ff5000 !important;
    opacity: 1;
}
.swiper-pagination-bullet {
    background-color: #ccc;
    opacity: 0.5;
    width: 8px;
    height: 8px;
}

@media (min-width: 1024px) {
    .myServicesSwiper .swiper-pagination {
        display: none !important;
    }
}

/* =========================================
   8. PARTNERS, POSTVENTA Y CARACTERÍSTICAS
   ========================================= */
.myPartnerSwiper {
    width: 100%;
    padding-bottom: 40px;
}
.partner-card {
    background: white;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12), 0 10px 14px -12px rgba(0, 0, 0, 0.6);
    border: 1px solid #ececec;
    height: 160px;
    width: 180px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    transition: all 0.3s ease;
}
.partner-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.14), 0 12px 16px -12px rgba(0, 0, 0, 0.65);
}
.partner-card img,
.partner-card .v2-logo {
    max-width: 70%;
    max-height: 70%;
    object-fit: contain;
}

.postventa-card,
.feature-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}
.postventa-icon {
    display: block;
    height: 60px;
    margin-bottom: 20px;
    object-fit: contain;
}
.postventa-text-cont .asc-p,
.feature-text-cont .asc-p {
    text-align: center;
}
.feature-icon-img {
    display: block;
    height: 70px;
    margin-bottom: 25px;
    object-fit: contain;
    transition: transform 0.3s ease;
}
.feature-card:hover .feature-icon-img {
    transform: scale(1.1);
}

/* Comportamiento base de logos locales (clases v2-logo-*) */
.v2-logo {
    display: block;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-color: transparent;
}

.feature-icon-img.v2-logo {
    width: 70px;
}
.postventa-icon.v2-logo {
    width: 60px;
}
.partner-card .v2-logo {
    width: 100%;
    height: 100%;
}

.v2-logo-image-14,
.v2-logo-image-13 {
    display: block;
    width: 100%;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
}
.v2-logo-image-14 {
    height: 70px;
}
.v2-logo-image-13 {
    height: 70px;
}

/* =====================================================
   9. MEDIA QUERIES (MÓVIL RESPONSIVE)
   ===================================================== */
@media (max-width: 767px) {
    .hero-section {
        height: 400px;
    }
    .section-padding {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    .icons-container {
    margin-top: -40px;
    position: relative;
    z-index: 20;
}

    /* En móvil mantenemos margen lateral como en sxd.com (px-4) */
    .section-padding.overflow-hidden > .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .asc-h1,
    h1,
    .header-title {
        font-size: 30px !important;
        margin-bottom: 10px;
    }
    .asc-h2,
    h2,
    .title-h2 {
        font-size: 18px !important;
        text-align: left !important;
    }
    .asc-h3,
    h3,
    .tittle-icon {
        font-size: 16px !important;
        text-align: left;
    }
    .asc-p,
    span.tittle {
        font-size: 15.2px !important;
        text-align: left !important;
        line-height: 1.5;
    }

    .text-md-center .asc-h2,
    .text-md-center .asc-p {
        text-align: left !important;
    }
    .hero-subtitle {
        font-size: 18px !important;
        margin-bottom: 10px !important;
    }

    /* IMÁGENES MÓVIL (CURVAS EXACTAS) */
    .image-semicircle-left,
    .img-curve-left {
        height: 155px !important;
        min-height: 155px !important;
        width: 100% !important;
        max-width: 290px !important;
        border-radius: 155px 0 0 155px !important;
        margin-left: auto !important;
        margin-right: -25px !important;
        box-shadow: none !important;
        margin-top: 1rem !important;
        margin-bottom: 2rem !important;
    }
    .image-semicircle-right,
    .img-curve-right {
        height: 155px !important;
        min-height: 155px !important;
        width: 100% !important;
        max-width: 290px !important;
        border-radius: 0 155px 155px 0 !important;
        margin-right: auto !important;
        margin-left: -25px !important;
        box-shadow: none !important;
        margin-top: 1rem !important;
        margin-bottom: 2rem !important;
    }

    .btn-asc {
        width: auto;
        text-align: center;
        padding: 5px 40px;
    }

    /* MODO HORIZONTAL PARA ICONOS (CARACTERÍSTICAS Y POSTVENTA) */
    .postventa-card,
    .feature-card {
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
        margin-bottom: 30px;
    }
    .postventa-icon-cont,
    .feature-icon-cont {
        margin-right: 20px;
        flex-shrink: 0;
    }
    .postventa-icon,
    .feature-icon-img {
        height: 50px !important;
        margin-bottom: 0 !important;
    }
    .postventa-text-cont .asc-h3,
    .feature-text-cont .asc-h3 {
        margin-bottom: 5px;
        text-align: left;
    }
    .postventa-text-cont .asc-p,
    .feature-text-cont .asc-p {
        text-align: left !important;
        margin-bottom: 0;
    }

    .check-list li {
        padding-left: 25px;
    }
    .check-list li::before {
        top: 6px;
    }

    /* FOOTER V2: 2 columnas en móvil y logos abajo centrados */
    .footer-v2 .footer-v2-main > .footer-v2-col {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .footer-v2 .footer-v2-main > .footer-v2-logos {
        order: 99;
        flex: 0 0 100%;
        max-width: 100%;
        margin-top: 0.5rem;
    }
    .footer-v2 .footer-v2-logos .d-flex {
        align-items: center !important;
        justify-content: center;
        width: 100%;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }
    .footer-v2 .footer-v2-logos .v2-logo {
        margin-left: auto;
        margin-right: auto;
    }

    .about-v2-page .about-old-hero {
        padding-top: 80px;
        max-width: 100%;
    }
    .about-v2-page .about-old-hero .hero-subtitle {
        font-size: 18px !important;
        margin-bottom: 0 !important;
    }

    .about-v2-page .about-old-section-title {
        font-size: 18px !important;
        text-align: center !important;
    }
    .about-v2-page .about-old-block-title,
    .about-v2-page .about-old-team-name {
        font-size: 16px !important;
        text-align: center !important;
    }
    .about-v2-page .about-old-values .asc-p,
    .about-v2-page .about-old-team-copy,
    .about-v2-page .about-old-timeline-card .asc-p {
        font-size: 15.2px !important;
        text-align: justify !important;
    }
}

@media (max-width: 423px) {
    .asc-h1,
    h1,
    .header-title {
        font-size: 30px !important;
    }
    .asc-h2,
    h2,
    .title-h2 {
        font-size: 18px !important;
        text-align: left !important;
    }
    span.tittle {
        font-size: 15.2px !important;
        text-align: left !important;
    }
    .asc-h3,
    h3,
    .tittle-icon {
        font-size: 16px !important;
    }
    .about-v2-page .hero-section.hero-bg-aboutus .header-title {
        font-size: 30px !important;
    }
    .about-v2-page .about-old-hero .hero-subtitle {
        font-size: 18px !important;
    }
}
