/* ============================================================
   ClickBox — Eventos BTL  |  v1
   Hero gestionado por home.css
   ============================================================ */

:root {
    --btl-verde:   #51d728;
    --btl-verde-d: #3fb31e;
    --btl-morado:  #3b2de0;
    --btl-gray:    #f4f5fb;
    --btl-text:    #1a1a3e;
    --btl-muted:   #5a5a8a;
    --btl-ease:    cubic-bezier(.4,0,.2,1);
    --btl-max:     960px;
}

.cb-btl *, .cb-btl *::before, .cb-btl *::after { box-sizing: border-box; }
.cb-btl { font-family: 'Montserrat', sans-serif; color: var(--btl-text); overflow-x: hidden; }

.btl-container { max-width: var(--btl-max); margin: 0 auto; }

/* ============================================================
   INTRO  —  2 líneas + subtítulo bold italic
   ============================================================ */
.btl-intro {
    background: var(--btl-gray);
    padding: 80px 24px;
    text-align: center;
}
.btl-intro__heading {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(26px, 4vw, 42px);
    font-weight: 800;
    color: var(--btl-text);
    line-height: 1.2;
}
.btl-intro__heading em {
    font-style: normal;
    color: var(--btl-morado);
    display: block;
}
.btl-intro__sub {
    font-style: italic;
    font-weight: 700;              /* negrita — diferencia clave BTL */
    color: var(--btl-muted);
    font-size: 1.05rem;
    margin-top: 22px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* ============================================================
   SECCIÓN BASE
   ============================================================ */
.btl-section { padding: 80px 24px; }

/* ============================================================
   GRID  36% texto | 64% imagen
   ============================================================ */
.btl-split {
    display: grid;
    grid-template-columns: 36% 1fr;
    gap: 48px;
    align-items: center;
}
.btl-split--img-first {
    grid-template-columns: 1fr 36%;
}

/* Label ¿QUÉ HACEMOS? — morado */
.btl-label {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(18px, 2.2vw, 26px);
    font-weight: 900;
    color: var(--btl-morado);
    margin-bottom: 18px;
    letter-spacing: .03em;
    text-transform: uppercase;
}

.btl-body {
    color: var(--btl-text);
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Imagen real */
.btl-section-img {
    width: 100%;
    border-radius: 16px;
    display: block;
    box-shadow: 0 8px 40px rgba(59,45,224,.15);
    transition: transform .45s var(--btl-ease), box-shadow .45s var(--btl-ease);
}
.btl-section-img:hover {
    transform: translateY(-8px) scale(1.015);
    box-shadow: 0 20px 60px rgba(59,45,224,.28);
}

/* ============================================================
   ¿QUÉ INCLUYE?  —  título VERDE + 5 iconos
   ============================================================ */
.btl-incluye {
    background: var(--btl-gray);
    text-align: center;
}
.btl-section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(20px, 3vw, 30px);
    font-weight: 800;
    color: var(--btl-verde);       /* VERDE */
    margin-bottom: 52px;
}

/* 5 columnas para 5 iconos */
.btl-icons {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}
.btl-icon-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}
.btl-icon-wrap {
    width: 80px; height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.btl-icon-img {
    width: 70px; height: 70px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 6px 16px rgba(59,45,224,.25));
    transition: filter .3s;
}
.btl-icon-card:hover .btl-icon-img {
    filter: drop-shadow(0 10px 24px rgba(59,45,224,.5));
}
@keyframes btl-iconFloat {
    0%,100% { transform: translateY(0);     }
    50%      { transform: translateY(-11px); }
}
.btl-float-1 { animation: btl-iconFloat 3.2s ease-in-out 0s    infinite; }
.btl-float-2 { animation: btl-iconFloat 3.2s ease-in-out .4s   infinite; }
.btl-float-3 { animation: btl-iconFloat 3.2s ease-in-out .8s   infinite; }
.btl-float-4 { animation: btl-iconFloat 3.2s ease-in-out 1.2s  infinite; }
.btl-float-5 { animation: btl-iconFloat 3.2s ease-in-out 1.6s  infinite; }

.btl-icon-label {
    font-size: .8rem;
    font-weight: 700;
    color: var(--btl-text);
    line-height: 1.35;
    max-width: 110px;
}

/* ============================================================
   PROCESO  (5 pasos)
   ============================================================ */
.btl-proceso-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 900;
    color: var(--btl-morado);
    margin-bottom: 24px;
}
.btl-steps { list-style: none; padding: 0; margin: 0; }
.btl-step {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 12px 0;
    border-bottom: 1px solid #ebebf8;
    font-size: 1rem;
    color: var(--btl-text);
    font-weight: 500;
}
.btl-step:last-child { border-bottom: none; }
.btl-step-num {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--btl-morado);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: .875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(59,45,224,.35);
    transition: transform .3s, box-shadow .3s;
}
.btl-step:hover .btl-step-num {
    transform: scale(1.15);
    box-shadow: 0 6px 22px rgba(59,45,224,.5);
}

/* ============================================================
   RESULTADO
   ============================================================ */
.btl-resultado {
    background: var(--btl-gray);
    text-align: center;
    padding: 80px 24px;
}
.btl-resultado__title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 900;
    color: var(--btl-text);
    letter-spacing: .04em;
}
.btl-resultado__text {
    font-style: italic;
    font-size: 1.2rem;
    color: var(--btl-muted);
    margin-top: 14px;
}

/* ============================================================
   CTA
   ============================================================ */
.btl-cta-wrap { margin-top: 48px; }
.btl-cta {
    display: inline-block;
    background: var(--btl-verde);
    color: #fff;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
    padding: 20px 52px;
    border-radius: 60px;
    transition: background .3s, transform .3s, box-shadow .3s;
    animation: btl-ctaPulse 2.5s ease-in-out infinite;
    box-shadow: 0 10px 40px rgba(81,215,40,.45);
}
.btl-cta:hover {
    background: var(--btl-verde-d);
    animation: none;
    transform: scale(1.05);
    box-shadow: 0 14px 50px rgba(81,215,40,.6);
    color: #fff;
}
@keyframes btl-ctaPulse {
    0%,100% { box-shadow: 0 10px 40px rgba(81,215,40,.45); transform: scale(1);    }
    50%      { box-shadow: 0 16px 56px rgba(81,215,40,.65); transform: scale(1.03); }
}

/* ============================================================
   ANIMACIONES DE SCROLL
   ============================================================ */
.btl-up    { opacity: 0; transform: translateY(48px);  transition: opacity .75s var(--btl-ease), transform .75s var(--btl-ease); }
.btl-left  { opacity: 0; transform: translateX(-56px); transition: opacity .75s var(--btl-ease), transform .75s var(--btl-ease); }
.btl-right { opacity: 0; transform: translateX(56px);  transition: opacity .75s var(--btl-ease), transform .75s var(--btl-ease); }
.btl-in    { opacity: 1 !important; transform: translate(0) !important; }
.btl-d1 { transition-delay: .10s !important; }
.btl-d2 { transition-delay: .20s !important; }
.btl-d3 { transition-delay: .30s !important; }
.btl-d4 { transition-delay: .40s !important; }
.btl-d5 { transition-delay: .50s !important; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
    .btl-icons { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}
@media (max-width: 768px) {
    .btl-split,
    .btl-split--img-first { grid-template-columns: 1fr; gap: 32px; }
    .btl-icons             { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .btl-section           { padding: 56px 20px; }
    .btl-intro             { padding: 56px 20px; }
    .btl-resultado         { padding: 56px 20px; }
}
@media (max-width: 480px) {
    .btl-icons { gap: 16px; }
    .btl-icon-img { width: 60px; height: 60px; }
}
