:root{
    --cec-orange:#e73a54;
}

.helix-footer{
    min-height: 520px;
    overflow:hidden;
    text-shadow: 1px 1px 3px rgb(0 0 0 / 56%)
}

.footer-bg-img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:0;
}

.footer-overlay{
    position:absolute;
    inset:0;
    background: rgba(3,49,95,0.1);
    z-index:1;
}

.helix-footer .container{
    z-index:2;
}

.footer-icon{
    width:52px;
    height:52px;
    border-radius: 14px;
    background: transparent;
    color: #FFF;
    display:grid;
    place-items:center;
    flex: 0 0 auto;
}

.footer-small{
    font-size: .95rem;
    line-height: 1.55;
    color: rgba(255,255,255,1);
}

.footer-link{
    color: rgba(255,255,255,1);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.footer-link:hover{
    color:#fff;
}

.footer-list li{
    margin-bottom: .55rem;
}

/* Social buttons (orange circles) */
.social-btn{
    width:56px;
    height:56px;
    border-radius: 999px;
    background: var(--cec-orange);
    color:#fff;
    display:grid;
    place-items:center;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 10px 20px rgba(0,0,0,.22);
}
.social-btn:hover{
    background:#e73a54;
    color:#fff;
    transform: translateY(-1px);
}

/* Floating to-top button */
.to-top{
    position: absolute;
    right: 28px;
    bottom: 84px;
    width: 54px;
    height: 54px;
    border-radius: 999px;
    border: 0;
    background: rgba(255, 255, 255, .95);
    color: #333;
    font-size: 1.25rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .25);
    z-index: 3;
    position: fixed;
}
.to-top:hover{
    transform: translateY(-1px);
}

@media (max-width: 991.98px){
    .to-top{
        top: 18px;
        right: 18px;
    }
    .social-btn{
        width:52px;
        height:52px;
    }
}

:root{
    --cec-orange:#e73a54;
    --cec-navy:#81d1d6;
    --cec-border:#e9ecef;
    --cec-muted:#6c757d;
    --hero-bg:#eeeeee;
    --pill-bg:#fff2ed;
}

/* Base */
body{
    background:#fff;
}
a{
    text-decoration:none;
}

/* Top mini bar */
.topbar{
    font-size:.95rem;
    border-bottom:1px solid var(--cec-border);
}
.topbar a{
    color:#111;
    padding:.85rem .75rem;
    display:inline-flex;
    align-items:center;
    gap:.4rem;
}
.topbar a:hover{
    color:#000;
}

/* Main header row */
.mainbar{
    border-bottom:1px solid var(--cec-border);
}
.brand-wrap{
    display:flex;
    align-items:center;
    gap:1rem;
    min-height:78px;
}
.brand-logo{
    width:190px;
    max-width: 100%;
    height:auto;
    display:block;
}

/* Primary nav (OFERTA EDUCATIVA / ...) */
.primary-nav .nav-link{
    font-weight:800;
    letter-spacing:.02em;
    padding:1.25rem .9rem;
    text-transform:uppercase;
}
.primary-nav .dropdown-toggle::after{
    margin-left:.4rem;
    transform: translateY(1px);
}

/* Search strip */
.searchbar{
    padding:.9rem 0 1.05rem;
    border-bottom:1px solid var(--cec-border);
}
.modality-pill{
    background: var(--cec-orange);
    color:#fff;
    border:none;
    font-weight:700;
    border-radius:999px;
    padding:.9rem 1.35rem;
    display:inline-flex;
    align-items:center;
    gap:.75rem;
    white-space:nowrap;
}
.modality-pill .chev{
    opacity:.95;
    font-weight:900;
    font-size: .95rem;
}

.search-input{
    border-radius:999px;
    border:1px solid var(--cec-border);
    padding: 1.05rem 1.25rem;
    padding-right: 5.5rem;
    box-shadow:none !important;
}
.search-wrap{
    position:relative;
    width:100%;
}
.search-btn{
    position:absolute;
    top:50%;
    right:.6rem;
    transform:translateY(-50%);
    border-radius:999px;
    width:44px;
    height:44px;
    display:grid;
    place-items:center;
    border:none;
    background:transparent;
    color: var(--cec-orange);
}
.search-btn:hover{
    background: rgba(255,90,42,.08);
}

/* Cart bubble */
.cart-wrap{
    display:flex;
    justify-content:flex-end;
    align-items:center;
    gap:.75rem;
}
.cart-btn{
    width:66px;
    height:66px;
    border-radius:999px;
    background: var(--cec-orange);
    display:grid;
    place-items:center;
    position:relative;
    border:none;
}
.cart-badge{
    position:absolute;
    top:8px;
    right:10px;
    width:18px;
    height:18px;
    border-radius:999px;
    background:#e73a54;
    color:#fff;
    font-size:.75rem;
    display:grid;
    place-items:center;
    font-weight:800;
    border:2px solid #fff;
    line-height:1;
}

/* Navy notice bar */
.notice{
    background: var(--cec-navy);
    color:#fff;
    font-weight:700;
    padding:.85rem 0;
    position:relative;
}
.notice .notice-close{
    position:absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color:#fff;
    opacity:.85;
    border:none;
    background:transparent;
    font-size:1.25rem;
    line-height:1;
}
.notice .notice-close:hover{
    opacity:1;
}

/* Hero */
.hero{
    background: var(--hero-bg);
    padding: 3.5rem 0 2.5rem;
}
.hero-card{
    background: transparent;
    border:0;
}
.hero-image{
    width: 100%;
    height:auto;
    display:block;
    margin: 0 auto;
}
.hero-keywords{
    margin-top: 1.6rem;
    text-align:center;
    font-weight:800;
    color:#6a6a6a;
    letter-spacing:.06em;
    text-transform:uppercase;
    font-size: 1.05rem;
}
.hero-bottom-gradient{
    height: 18px;
    background: linear-gradient(90deg, #8dd3de, #c7e6d6, #8dd3de);
}

/* Responsive tweaks */
@media (max-width: 991.98px){
    .primary-nav .nav-link{
        padding: .75rem .25rem;
    }
    .brand-wrap{
        min-height:auto;
        padding:.75rem 0;
    }
    .searchbar{
        padding:.75rem 0;
    }
    .cart-wrap{
        justify-content:flex-start;
        margin-top:.75rem;
    }
    .cart-btn{
        width:58px;
        height:58px;
    }
    .hero{
        padding: 2.25rem 0 1.75rem;
    }
}
.header_main{
    background: #e73a54;
}
/* estado normal */
#siteHeader{
    width: 100%;
}

/* estado fijo */
#siteHeader.is-fixed{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    background: #fff; /* o tu color */
    box-shadow: 0 8px 20px rgba(0,0,0,.08);
}

/* placeholder que evita el “salto” */
#headerPlaceholder{
    display: none;
}
#headerPlaceholder.is-active{
    display: block;
}

/* CSS mínimo SOLO para esta sección */
.host-card{
    background:#fff;
    border:1px solid #f0f0f0;
    border-radius:14px;
    box-shadow: 0 1px 2px rgba(0,0,0,.03);
    height: 120px;
    padding: 18px;
}

.host-logo{
    max-width: 70%;
    max-height: 62px;
    width:auto;
    height:auto;
    opacity: .55;            /* look “gris suave” del screenshot */
    filter: grayscale(100%); /* logos en gris */
}

@media (max-width: 576px){
    .host-card{
        height: 110px;
    }
    .host-logo{
        max-width: 78%;
    }
}
:root{
    --cec-orange:#e73a54;
    --field-bg:#e6e6e6;
    --text:#111;
}

.section-serif{
    color: var(--text);
    letter-spacing: .01em;
}

.link-orange{
    color: var(--cec-orange);
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 600;
}
.link-orange:hover{
    color:#e73a54;
}

/* spacing like screenshot */
.section-gap{
    height: 90px;
}
@media (max-width: 768px){
    .section-gap{
        height: 40px;
    }
}

/* Inputs: pill gray */
.helix-input{
    background: var(--field-bg);
    border: none;
    border-radius: 999px;
    padding: 18px 22px;
    box-shadow: none !important;
}
.helix-input:focus{
    outline: none;
    box-shadow: 0 0 0 .2rem rgba(255,90,42,.18) !important;
}

/* Textarea big & rounded */
.helix-textarea{
    background: var(--field-bg);
    border: none;
    border-radius: 22px;
    padding: 18px 22px;
    resize: vertical;
    min-height: 240px;
    box-shadow: none !important;
}
.helix-textarea:focus{
    outline: none;
    box-shadow: 0 0 0 .2rem rgba(255,90,42,.18) !important;
}

/* Button orange pill with arrow */
.helix-btn{
    background: var(--cec-orange);
    color:#fff;
    border: none;
    border-radius: 999px;
    padding: 14px 22px;
    min-width: 260px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-weight: 700;
}
.helix-btn:hover{
    background:#e73a54;
    color:#fff;
}
.helix-btn:active{
    transform: translateY(1px);
}

.helix-btn-arrow{
    width: 44px;
    height: 44px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,.14);
    font-size: 1.25rem;
    line-height: 1;
}
/* Fondo degradado como screenshot */
.helix-faq-wrap{
    background: linear-gradient(360deg, #cacfd4 0%, #7fd0d5d1 100%);
    padding: 0; /* el padding lo controla container */
}

/* “Panel” grande con esquinas redondeadas */
.helix-faq-panel{
    border-radius: 22px;
    background: transparent;
    min-height: 640px;
    position: relative;
}

/* Para emular el bloque grande con “aire” y margen interior */
.helix-faq-inner{
    max-width: 80%;
    margin: 0 auto;
}

/* Kicker con línea larga */
.faq-kicker{
    display:flex;
    align-items:center;
    gap: 14px;
    font-size: .78rem;
    letter-spacing: .18em;
    font-weight: 700;
    color: #111;
    text-transform: uppercase;
}
.kicker-line{
    width: 34px;
    height: 2px;
    background:#111;
    display:inline-block;
    transform: translateY(-1px);
}

/* Título serif (como el resto del sitio) */
.faq-title{
    font-weight: 700;
    font-size: clamp(2rem, 2.2vw + 1rem, 3rem);
    color:#111;
}

/* Lista de preguntas con “+” */
.faq-list{
    list-style:none;
}
.faq-item + .faq-item{
    margin-top: 14px;
}

.faq-q{
    appearance:none;
    border:0;
    background: transparent;
    padding: 0;
    display:flex;
    gap: 12px;
    align-items:flex-start;
    text-align:left;
    color:#111;
    width: 100%;
    font-weight: 700;
    font-size: 1.02rem;
    line-height: 1.25;
}

.plus{
    display:inline-block;
    width: 18px;
    flex: 0 0 18px;
    font-size: 1.1rem;
    line-height: 1;
    transform: translateY(1px);
}

.faq-q:hover{
    opacity: .9;
}

/* Responsive: reduce padding para pantallas chicas */
@media (max-width: 991.98px){
    .helix-faq-panel{
        min-height: auto;
    }
}
.accordion-body {
    background: #F2FCFC;
}
/*slider*/
#cuerpo {
    align-items: center;
    background: #e3e3e3;
    display: flex;
    height: 100vh;
    justify-content: center;
}

@-webkit-keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-250px * 7));
    }
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-250px * 7));
    }
}

/* --- Strap --- */
.helix-strap{
    /*background: linear-gradient(90deg, #f1c23b 0%, #7fd0d5 100%); */
    background: linear-gradient(180deg, #ffffff 0%, #eaeaea 100%);
    /* background: #ddd; */
    padding-top: 60px !important;
    padding-bottom: 60px !important;
}
.strap-title{
    font-weight: 700;
    font-size: clamp(1.25rem, 1.5vw + 1rem, 1.75rem);
    color:#111;
}
.strap-p{
    max-width: 980px;
    margin: 0 auto;
    color:#1b1b1b;
    font-size: .98rem;
    line-height: 1.65;
}

/* --- Logistics --- */
.logistics-title{
    color:#111;
}

.log-card{
    background:#fff;
    border-radius: 18px;
    border: 1px solid #f1f1f1;
    box-shadow: 0 1px 2px rgba(0,0,0,.03);
    overflow:hidden;
}

.log-img-wrap{
    padding: 14px 14px 0;
}

.log-img{
    width:100%;
    height: 210px;
    object-fit: cover;
    border-radius: 14px;
    display:block;
}

.log-body{
    padding: 18px 18px 22px;
    color:#1d1d1d;
    font-size: .95rem;
    line-height: 1.7;
}

@media (max-width: 575.98px){
    .log-img{
        height: 190px;
    }
}

.myslider {
    background: white;
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.125);
    height: 85px;
    margin: auto;
    overflow: hidden;
    position: relative;
    width: 100%;
    border-radius: 12px;
}
.myslider::before, .slider::after {
    background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
    content: "";
    height: 100px;
    position: absolute;
    width: 200px;
    z-index: 2;
}
.myslider::after {
    right: 0;
    top: 0;
    transform: rotateZ(180deg);
}
.myslider::before {
    left: 0;
    top: 0;
}
.myslider .slide-track {
    -webkit-animation: scroll 40s linear infinite;
    animation: scroll 40s linear infinite;
    display: flex;
    width: calc(250px * 14);
}
.myslider .slide {
    height: 100px;
    width: 250px;
}

.accordion-button:not(.collapsed) {
    color: #FFF;
    background-color: #7fd0d5;
}
.vp-preview, .img-card > img{
    border-radius: 15px;
}
#contactOffcanvas{
    z-index: 10000 !important;
}
#titulo_logistica{
    position: absolute;
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999999999999 !important;
}