/* ===========================================================
                ESTILOS PROPIOS : VENTA CENTRAL 2026
        ========================================================== */

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    /* Para mejorar la legibilidad */
}

/* ---------------- HERO ------------------ */
.hero {
    background: #0a2640 url("assets/img/hero-bg.png") no-repeat right/contain;
    padding: 160px 0 120px 0;
    color: white;
    position: relative;
}

.hero img.hero-graphic {
    max-width: 90%;
}

/* --------------- SLIDER EMPRESAS PROPIO --------------- */
.slider-logos {
    overflow: hidden;
    padding: 30px 0;
}

.slider-track {
    display: flex;
    gap: 60px;
    width: max-content;
    align-items: center;
    animation: scroll 14s linear infinite;
}

.slider-track img {
    height: 45px;
    opacity: 0.75;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* --------------- LISTA MARCADA ---------------- */
.check-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

/* --------------- TESTIMONIALES ---------------- */

.testimonial-card {
    background: white;
    border-radius: 8px;
    padding: 25px;
    width: 360px;
}

/* --------------- ACORDEÓN PROPIO ---------------- */

.acc-content {
    display: block;
    /* todas abiertas */
    padding: 10px 0 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.acc-title {
    font-weight: bold;
    font-size: 1.2rem;
    cursor: default;
    /* ya no colapsa */
    margin-top: 20px;
}


/* --------------- BLOG ---------------- */
.blog-card img {
    width: 100%;
    border-radius: 10px;
}

/* --------------- CTA ---------------- */
.cta-box {
    background: #0a2640;
    padding: 70px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    color: white;
}

.cta-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("assets/img/promo/promo-bg.png") center/cover;
    opacity: 0.15;
    pointer-events: none;
    /* ← ESTA ES LA SOLUCIÓN */
}



.bg-vencen {
    background: #0a2640;
}


/* --------------- FOOTER ---------------- */
footer a {
    color: #bbb;
    text-decoration: none;
}

footer a:hover {
    color: white;
}


/* ===== SCROLLER INFINITO DE TESTIMONIALES ===== */

.testimonial-scroller {
    overflow: hidden;
    width: 100%;
    padding: 30px 0;

    /* fade lateral opcional */
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}


.testimonial-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scrollTestimonials 35s linear infinite;
}

.testimonial-scroller:hover .testimonial-track {
    animation-play-state: paused;
}


.testimonial-card {
    width: 360px;
    background: #fff;
    color: #000;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    white-space: normal;
}

@keyframes scrollTestimonials {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}



/* ===== SLIDER INFINITO LOGOS ===== */
.logo-scroller {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 30px 0;

    /* Efecto de desvanecido a los lados */
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}


.logo-track {
    display: flex;
    gap: 60px;
    align-items: center;
    /* Animación infinita */
    animation: scrollLogos 10s linear infinite;
}

.logo-track img {
    max-height: 80px;
    opacity: 0.75;
    transition: opacity 0.3s;
}

.logo-track img:hover {
    opacity: 1;
}

.logo-scroller:hover .logo-track {
    animation-play-state: paused;
}

/* Animación continua */
@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

    /* mueve exactamente la mitad, que es el primer set duplicado */
}




.price {
    font-size: 2rem;
    font-weight: 700;
    margin: 0.5rem 0 1rem;
}

.card i.fa-check-circle {
    color: #28a745;
    margin-right: 6px;
}

.bg-success .fa-check-circle,
.bg-secondary .fa-check-circle {
    color: #ffffff;
}




.btn {
    display: inline-block;
    font-weight: 700;
    line-height: 1.45;
    color: #5b7075;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 2px solid transparent;
    padding: 1rem 3rem;
    font-size: 1rem;
    border-radius: 5rem;
    -webkit-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
    -o-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
}



.btn-success {
    color: #536468;
    background-color: #65e4a3;
    border-color: #65e4a3;
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 1px rgba(0, 0, 0, .075);
}

.btn-outline-light {
    color: #f1f1f1;
    border-color: #f1f1f1;
}

.btn-outline-dark {
    color: #0a2640;
    border-color: #0a2640;
}


/* SCROLL ACTION FROM MENU */
#hero,
#quienes-somos,
#servicios,
#paquetes,
#faqs,
#blog {
    scroll-margin-top: 100px;
    /* ajusta según tu navbar */
}