:root {
    --yasbe-blue: #0c3576;
    --yasbe-red: #cf202d;
    --yasbe-green: #2da63a;
    --yasbe-dark: #1b2540;
    --yasbe-light: #f3f4f7;
    --yasbe-text: #1f2b45;
}

html {
    scroll-behavior: smooth;
}

section[id] {
    scroll-margin-top: 100px;
}

body {
    font-family: "Poppins", sans-serif;
    color: var(--yasbe-text);
    background: #fff;
}

.text-yasbe-blue {
    color: var(--yasbe-blue);
}

/* ==========================
TOPBAR
========================== */

.topbar {
    background: var(--yasbe-blue);
    color: #fff;
    font-size: 0.95rem;
}

.topbar .top-item {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.8rem 1rem;
    border-right: 1px solid rgba(255, 255, 255, 0.18);
}

/* ==========================
NAVBAR
========================== */

.navbar-custom {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(12, 53, 118, 0.06);
    padding-top: 0.9rem;
    padding-bottom: 0.9rem;
    transition: all 0.3s ease;
}

.navbar-custom.navbar-scrolled {
    padding-top: 0.55rem;
    padding-bottom: 0.55rem;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.1);
}

.navbar-custom.navbar-scrolled .navbar-brand img {
    max-height: 72px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    margin-right: 1.5rem;
}

.navbar-brand img {
    max-height: 84px;
    width: auto;
    transition: all 0.3s ease;
}

.nav-link {
    color: var(--yasbe-dark);
    font-weight: 700;
    font-size: 1.08rem;
    padding: 0.9rem 1.1rem !important;
    position: relative;
    transition: color 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--yasbe-blue);
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 0.15rem;
    height: 2px;
    background: var(--yasbe-blue);
    border-radius: 999px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.btn-whatsapp-nav {
    background: var(--yasbe-green);
    border: none;
    color: #fff;
    font-weight: 700;
    border-radius: 14px;
    padding: 0.9rem 1.45rem;
    box-shadow: 0 8px 18px rgba(45, 166, 58, 0.22);
    transition: all 0.25s ease;
}

.btn-whatsapp-nav:hover {
    background: #249332;
    color: #fff;
    transform: translateY(-2px);
}

/* ==========================
HERO
========================== */

.hero {
    min-height: 760px;
    display: flex;
    align-items: center;
    color: #fff;
    background:
        linear-gradient(
            90deg,
            rgba(12, 53, 118, 0.7) 0%,
            rgba(12, 53, 118, 0.34) 38%,
            rgba(0, 0, 0, 0.12) 100%
        ),
        url("../img/hero.webp") 72% 40% / cover no-repeat;
    position: relative;
}

.hero h1 {
    font-weight: 800;
    line-height: 1.05;
    text-transform: uppercase;
    text-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
    max-width: 760px;
}

.hero p {
    font-size: clamp(1.1rem, 2.2vw, 1.7rem);
    max-width: 720px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.96);
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
}

.btn-hero-primary,
.btn-hero-secondary {
    border-radius: 0.95rem;
    font-weight: 700;
    padding: 0.95rem 1.45rem;
    font-size: 1rem;
    min-width: 280px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.btn-hero-primary {
    background: var(--yasbe-blue);
    border: 2px solid rgba(255, 255, 255, 0.18);
    color: #fff;
}

.btn-hero-primary:hover {
    background: #082d65;
    color: #fff;
}

.btn-hero-secondary {
    background: var(--yasbe-green);
    border: 2px solid rgba(255, 255, 255, 0.12);
    color: #fff;
}

.btn-hero-secondary:hover {
    background: #238730;
    color: #fff;
}

/* ==========================
TÍTULOS GENERALES
========================== */

.section-title {
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 800;
    color: var(--yasbe-blue);
    text-align: center;
    margin-bottom: 0.8rem;
}

.section-subtitle {
    color: #6c757d;
    font-size: 1.1rem;
}

.section-line {
    width: 120px;
    height: 5px;
    margin: 15px auto 0;
    border-radius: 999px;
    background: linear-gradient(
        90deg,
        var(--yasbe-blue) 0 33%,
        var(--yasbe-green) 33% 66%,
        var(--yasbe-red) 66% 100%
    );
}

/* ==========================
SECCIÓN NOSOTROS
========================== */

.bg-nosotros-soft {
    background: #ebedf7;
}

.nosotros-section {
    overflow: hidden;
}

.nosotros-copy {
    max-width: 100%;
}

.nosotros-etiqueta {
    display: inline-block;
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 4px;
    color: var(--yasbe-blue);
    text-transform: uppercase;
}

.nosotros-titulo {
    font-size: clamp(2rem, 3.5vw, 3.1rem);
    font-weight: 800;
    line-height: 1.18;
    color: var(--yasbe-dark);
    max-width: 640px;
}

.nosotros-texto {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #5f6b7a;
    max-width: 620px;
}

.nosotros-iconos .mini-feature {
    background: #fff;
    border-radius: 18px;
    padding: 18px 16px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
    height: 100%;
}

.mini-feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 12px;
    color: #fff;
}

.bg-blue-soft {
    background: var(--yasbe-blue);
}

.bg-green-soft {
    background: var(--yasbe-green);
}

.bg-red-soft {
    background: var(--yasbe-red);
}

.mini-feature h6 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--yasbe-dark);
    margin-bottom: 6px;
}

.mini-feature p {
    margin: 0;
    color: #667085;
    font-size: 0.94rem;
    line-height: 1.5;
}

.experiencia-box {
    display: inline-flex;
    align-items: center;
    gap: 1.2rem;
    border: 3px solid var(--yasbe-blue);
    padding: 1rem 1.4rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 24px rgba(12, 53, 118, 0.08);
    max-width: 100%;
}

.experiencia-numero {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    color: var(--yasbe-dark);
}

.experiencia-texto {
    display: flex;
    flex-direction: column;
    color: var(--yasbe-dark);
}

.experiencia-texto span {
    font-weight: 600;
}

.experiencia-texto strong {
    font-size: 1.65rem;
    font-weight: 800;
}

.nosotros-imagenes {
    width: 100%;

    display: flex;
    flex-direction: column;

    gap: 18px;

    min-height: auto;
}

.marco-fondo {
    position: absolute;
    top: 70px;
    left: 28px;
    width: 300px;
    height: 300px;
    border: 4px solid var(--yasbe-blue);
    z-index: 1;
}

.imagen {
    position: absolute;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.14);
    background: #fff;
    z-index: 2;
}

.imagen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.imagen-superior img {
    object-position: center center;
}

.imagen-inferior img {
    object-position: center center;
}

.imagen-superior {
    width: 100%;
    height: 300px;
}

.imagen-inferior {
    width: 100%;
    height: 300px;
}

/* ==========================
ANIMACIONES
========================== */

.reveal-up {
    opacity: 1;
    transform: translateY(0);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.reveal-up.show {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.08s;
}

.delay-2 {
    transition-delay: 0.16s;
}

.delay-3 {
    transition-delay: 0.24s;
}

.delay-4 {
    transition-delay: 0.32s;
}

.floating-card {
    animation: floatCard 4.2s ease-in-out infinite;
}

.delay-card {
    animation-delay: 0.9s;
}

@keyframes floatCard {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* ==========================
IMÁGENES NOSOTROS RESPONSIVE
========================== */

/* TABLET Y DESKTOP */

@media (min-width: 768px) {
    .nosotros-imagenes {
        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 24px;

        align-items: center;
    }

    .imagen-superior,
    .imagen-inferior {
        position: relative;

        width: 100%;

        height: 300px;

        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
    }

    .marco-fondo {
        display: none;
    }
}

/* ==========================
DIFERENCIALES
========================== */

.diferenciales-section {
    background: #f5f6fa;
}
/* ESPACIADO EN TABLET Y MOVIL */

/* @media (max-width: 991.98px) {
    .diferenciales-section .row.align-items-center {
        margin-top: 80px;
    }
} */

.diferencial-texto-principal {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--yasbe-blue);
    line-height: 1.3;
}

.diferencial-texto-secundario {
    color: #6c757d;
    margin-top: 15px;
    margin-bottom: 20px;
}

.btn-diferencial {
    background: var(--yasbe-green);
    color: #fff;
    font-weight: 700;
    border-radius: 30px;
    padding: 12px 25px;
}

.btn-diferencial:hover {
    background: #238730;
    color: #fff;
}

.diferencial-card {
    border: none;
    border-radius: 18px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.diferencial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
}

.icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -60px auto 15px;
    font-size: 28px;
    color: #fff;
}

.bg-blue {
    background: var(--yasbe-blue);
}

.bg-green {
    background: var(--yasbe-green);
}

.bg-red {
    background: var(--yasbe-red);
}

.diferencial-numero {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--yasbe-blue);
}

/* ==========================
SERVICIOS
========================== */

.services-section {
    background: #e5e7f7;
}

.service-card {
    border: none;
    border-radius: 1.2rem;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
    height: 100%;
    background: #fff;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.12);
}

.service-card .service-image {
    height: 220px;
    object-fit: cover;
    width: 100%;
}

.service-title-band {
    padding: 1.6rem 1.1rem;
    color: #fff;
    text-align: center;
    min-height: 126px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-title-band h3 {
    font-size: 1.1rem;
    margin: 0;
    font-weight: 800;
    line-height: 1.35;
}

.band-blue {
    background: var(--yasbe-blue);
}

.band-red {
    background: var(--yasbe-red);
}

.band-green {
    background: var(--yasbe-green);
}

.band-light {
    background: #eef0f5;
    color: var(--yasbe-dark);
}

.service-body {
    padding: 1.35rem 1.25rem 1.4rem;
}

.service-body p {
    color: #4c5568;
    min-height: 86px;
}

.service-link {
    color: var(--yasbe-blue);
    text-decoration: none;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
}

/* ==========================
COTIZADOR
========================== */

.cotizador-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(12, 53, 118, 0.08);
    color: var(--yasbe-blue);
    font-weight: 700;
    padding: 0.65rem 1rem;
    border-radius: 999px;
    font-size: 0.95rem;
}

.cotizador-subtitle {
    max-width: 760px;
    margin: 0.8rem auto 0;
    font-size: 1.08rem;
    color: #667085;
    line-height: 1.7;
}

.cotizador-card {
    border-radius: 1.7rem;
    overflow: hidden;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.08);
    background: #fff;
}

.cotizador-top {
    background: linear-gradient(
        90deg,
        rgba(12, 53, 118, 0.06) 0%,
        rgba(45, 166, 58, 0.05) 50%,
        rgba(207, 32, 45, 0.04) 100%
    );
    padding: 1.4rem 1.5rem;
    border-bottom: 1px solid rgba(12, 53, 118, 0.08);
}

.cotizador-feature {
    background: rgba(255, 255, 255, 0.85);
    border-radius: 14px;
    padding: 0.95rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    font-weight: 700;
    color: var(--yasbe-dark);
    min-height: 58px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

.cotizador-feature i {
    color: var(--yasbe-blue);
    font-size: 1.1rem;
}

.cotizador-body {
    background: #fff;
}

.cotizador-helper {
    color: #667085;
    font-size: 1rem;
    line-height: 1.7;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.cotizador-group-title {
    font-size: 1.02rem;
    font-weight: 800;
    color: var(--yasbe-blue);
    margin-bottom: 0.25rem;
    padding-bottom: 0.65rem;
    border-bottom: 1px solid rgba(12, 53, 118, 0.1);
}

.cotizador-input {
    min-height: 56px;
    border-radius: 14px;
    border: 1px solid #d7deea;
    background: #f9fbff;
    transition: all 0.25s ease;
    box-shadow: none;
}

.cotizador-input:focus {
    border-color: rgba(12, 53, 118, 0.45);
    background: #fff;
    box-shadow: 0 0 0 0.2rem rgba(12, 53, 118, 0.08);
}

.cotizador-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cotizador-note {
    color: #667085;
    font-size: 0.94rem;
}

.btn-submit-cotizador {
    background: linear-gradient(90deg, var(--yasbe-blue), #144694);
    color: #fff;
    font-weight: 700;
    border: none;
    border-radius: 14px;
    padding: 0.95rem 1.6rem;
    box-shadow: 0 12px 26px rgba(12, 53, 118, 0.2);
    transition: all 0.25s ease;
}

.btn-submit-cotizador:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(12, 53, 118, 0.26);
}

@media (max-width: 767.98px) {
    .cotizador-top {
        padding: 1rem;
    }

    .cotizador-feature {
        justify-content: flex-start;
    }

    .cotizador-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-submit-cotizador {
        width: 100%;
    }
}

/* ==========================
BANNER INTERMEDIO
========================== */

.mid-banner {
    min-height: 450px;
    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.06),
            rgba(255, 255, 255, 0.06)
        ),
        url("../img/hero-yasbe.jpg") center bottom / cover no-repeat;
    position: relative;
}

/* ==========================
CARDS GENERALES
========================== */

.content-card,
.cotizador-card,
.contact-card {
    border: none;
    border-radius: 1.35rem;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

/* ==========================
FORMULARIOS
========================== */

.form-control,
.form-select {
    min-height: 52px;
    border-radius: 0.85rem;
}

.btn-submit {
    background: var(--yasbe-blue);
    border-color: var(--yasbe-blue);
    color: #fff;
    font-weight: 700;
    border-radius: 0.85rem;
    padding: 0.9rem 1.3rem;
}

.btn-submit:hover {
    background: #082d65;
    border-color: #082d65;
    color: #fff;
}

/* ==========================
CONTACTO
========================== */

.contact-box {
    background: #f4f6fa;
    padding: 1.2rem;
    border-radius: 1rem;
    margin-bottom: 1rem;
}

.map-embed iframe {
    width: 100%;
    min-height: 420px;
    border: 0;
    border-radius: 1.35rem;
}

/* ==========================
BOTONES FLOTANTES
========================== */

.floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 70px;
    height: 70px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
    z-index: 1080;
    text-decoration: none;
}

.btn-arriba {
    border: 3px solid rgb(249, 247, 247);
    position: fixed;
    bottom: 100px;
    right: 22px;
    width: 60px;
    height: 60px;
    background: var(--yasbe-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 999;
}

.btn-arriba.mostrar {
    opacity: 1;
    visibility: visible;
}

.btn-arriba:hover {
    background: #082d65;
    transform: translateY(-4px);
}

/* ==========================
FOOTER
========================== */

.footer {
    background: #121b30;
    color: rgba(255, 255, 255, 0.85);
}

/* ==========================
RESPONSIVE
========================== */

@media (max-width: 1199.98px) {
    .nosotros-imagenes {
        min-height: 500px;
    }

    .imagen-superior {
        width: 270px;
        height: 310px;
        right: 40px;
    }

    .imagen-inferior {
        width: 290px;
        height: 300px;
        right: 0;
    }

    .marco-fondo {
        width: 240px;
        height: 240px;
        left: 20px;
        top: 70px;
    }
}

@media (max-width: 991.98px) {
    .hero {
        min-height: 620px;
        padding: 4rem 0;
        background-position: center center;
    }

    .hero h1,
    .hero p {
        max-width: 100%;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        min-width: unset;
        width: 100%;
    }

    .topbar .top-item {
        padding: 0.7rem 0.8rem;
        font-size: 0.88rem;
    }

    .nosotros-copy {
        text-align: center;
        margin: 0 auto;
    }

    .nosotros-titulo,
    .nosotros-texto {
        max-width: 100%;
    }

    .experiencia-box {
        justify-content: center;
    }

    .nosotros-imagenes {
        margin-top: 2rem;
        min-height: 430px;
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
    }

    .imagen-superior {
        width: 240px;
        height: 280px;
        right: 40px;
    }

    .imagen-inferior {
        width: 260px;
        height: 270px;
        right: 0;
    }

    .marco-fondo {
        width: 220px;
        height: 220px;
        left: 10px;
        top: 55px;
    }
}

@media (max-width: 767.98px) {
    .hero {
        min-height: 560px;
    }

    .navbar-brand img {
        max-height: 56px;
    }

    .service-card .service-image {
        height: 190px;
    }

    .nosotros-titulo {
        font-size: 2rem;
    }

    .nosotros-texto {
        font-size: 1rem;
    }

    .nosotros-iconos .col-sm-4 {
        width: 100%;
    }

    .experiencia-box {
        width: 100%;
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 0.6rem;
    }

    .experiencia-numero {
        font-size: 3.2rem;
    }

    .experiencia-texto strong {
        font-size: 1.4rem;
    }

    .nosotros-imagenes {
        min-height: auto;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        max-width: 100%;
    }

    .marco-fondo {
        display: none;
    }

    .imagen,
    .imagen-superior,
    .imagen-inferior {
        position: relative;
        width: 100%;
        height: 240px;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
    }

    .floating-card,
    .delay-card {
        animation: none;
    }

    .imagen-superior img {
        object-position: 30% center;
    }

    .imagen-inferior img {
        object-position: center center;
    }
}

.cotizador-progress {
    height: 10px;
    border-radius: 999px;
    background: #e9ecef;
    overflow: hidden;
}

.cotizador-progress-bar {
    transition: width 0.45s ease-in-out;
    border-radius: 999px;
    background: linear-gradient(90deg, #ff8c00, #ffb347);
}

.cotizador-steps {
    gap: 12px;
}

.cotizador-step {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #8a8f98;
    font-weight: 600;
    transition: all 0.3s ease;
    z-index: 2;
}

.cotizador-step.active,
.cotizador-step.completed {
    color: #ff8c00;
}

.cotizador-step-circle {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e9ecef;
    color: #6c757d;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 0 rgba(255, 140, 0, 0.25);
}

.cotizador-step.active .cotizador-step-circle,
.cotizador-step.completed .cotizador-step-circle {
    background: #ff8c00;
    color: #fff;
    box-shadow: 0 0 0 8px rgba(255, 140, 0, 0.12);
}

.cotizador-step-line {
    flex: 1;
    height: 2px;
    background: #dee2e6;
    min-width: 20px;
}

.cotizador-step-text {
    color: #6c757d;
    font-weight: 600;
}

.cotizador-step-panel {
    opacity: 0;
    transform: translateY(18px);
    pointer-events: none;
    max-height: 0;
    overflow: hidden;
    transition:
        opacity 0.35s ease,
        transform 0.35s ease,
        max-height 0.5s ease;
}

/* ==========================
COTIZADOR
========================== */

.cotizador-step-panel.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    max-height: 2500px;
    overflow: visible;
}

.cotizador-input.is-invalid {
    border-color: #dc3545;
    box-shadow: none;
}

.cotizador-input.is-valid {
    border-color: #198754;
    box-shadow: none;
}

.cotizador-actions-step1,
.cotizador-actions-step2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.cotizador-turnstile-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 767.98px) {
    .cotizador-steps {
        flex-direction: column;
        align-items: stretch !important;
        gap: 10px;
    }

    .cotizador-step {
        justify-content: flex-start;
    }

    .cotizador-step-line {
        display: none;
    }

    .cotizador-actions-step1,
    .cotizador-actions-step2 {
        flex-direction: column;
        align-items: stretch;
    }

    .cotizador-actions-step1 .btn,
    .cotizador-actions-step2 .btn {
        width: 100%;
    }

    .cotizador-turnstile-wrap {
        width: 100%;
        overflow-x: auto;
        justify-content: flex-start;
    }

    .cotizador-note {
        text-align: center;
        width: 100%;
    }
}

/* ========================================= */
/* CORRECCIÓN VISUAL PARA SELECT VALIDADO */
/* ========================================= */

/* Evita que el icono verde se repita en selects */
select.cotizador-input.is-valid,
select.cotizador-input.is-invalid,
select.form-select.is-valid,
select.form-select.is-invalid {
    background-image: none !important;
    padding-right: 0.75rem !important;
}

/* Mantiene alineación correcta del select */
select.cotizador-input,
select.form-select {
    background-repeat: no-repeat !important;
    background-position: right 0.75rem center !important;
    background-size: 16px 16px !important;
}

/* Opcional: borde limpio */
select.cotizador-input.is-valid {
    border-color: #198754;
}

select.cotizador-input.is-invalid {
    border-color: #dc3545;
}
