/* ═══════════════════════════════════════════════
   RutArg Clientes — Additional Styles
   ═══════════════════════════════════════════════ */

/* ── Hero override for clientes ───────────────── */
.hero--clientes::before {
    background-image: url('../assets/hero-clientes.png');
    background-size: cover;
}

.hero__actions--dual {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 28px;
}

/* ── Store Buttons ────────────────────────────── */
.btn--store {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 14px 30px;
    border-radius: var(--radius-lg);
    text-align: left;
    min-width: 210px;
}

.btn--dark {
    background: var(--gray-900);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn--dark:hover {
    transform: translateY(-2px);
    background: #2a2a4e;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.store-icon {
    flex-shrink: 0;
    opacity: 0.95;
}

.btn__store-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.btn__store-small {
    font-size: 0.65rem;
    font-weight: 500;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn__store-name {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: -0.3px;
}

/* ── Trust Bar ────────────────────────────────── */
.trust-bar {
    background: var(--white);
    padding: 0;
    position: relative;
    z-index: 10;
}

.trust-bar__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 36px 20px;
    background: var(--white);
    border-radius: var(--radius-xl);
    margin-top: -40px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.08),
                0 2px 10px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--gray-200);
    position: relative;
}

.trust-bar__item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.trust-bar__icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(245, 124, 0, 0.1), rgba(255, 152, 0, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    flex-shrink: 0;
    transition: var(--transition);
}

.trust-bar__item:hover .trust-bar__icon {
    background: var(--gradient-orange);
    color: var(--white);
    transform: scale(1.05);
}

.trust-bar__text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.trust-bar__label {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-700);
}

.trust-bar__desc {
    font-size: 0.8rem;
    color: var(--gray-400);
    font-weight: 500;
}

.trust-bar__divider {
    width: 1px;
    height: 40px;
    background: var(--gray-200);
    flex-shrink: 0;
}

/* ── Cards grid 4 columns ─────────────────────── */
.cards-grid--4 {
    grid-template-columns: repeat(4, 1fr);
}

/* ── Horizontal Steps (dark section) ──────────── */
.steps-horizontal {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.steps-horizontal__line {
    position: absolute;
    top: 30px;
    left: 50px;
    right: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--orange), rgba(245, 124, 0, 0.2));
    border-radius: 1px;
    z-index: 0;
}

.step-h {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-h__number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #1a1a2e;
    border: 2px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

.step-h__number span {
    font-size: 1.2rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.4);
    transition: var(--transition);
}

.step-h.visible .step-h__number {
    border-color: var(--orange);
    background: rgba(245, 124, 0, 0.1);
    box-shadow: 0 0 0 4px rgba(245, 124, 0, 0.15),
                0 0 20px rgba(245, 124, 0, 0.1);
}

.step-h.visible .step-h__number span {
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.step-h__title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
    line-height: 1.3;
}

.step-h__text {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.82rem;
    line-height: 1.5;
    max-width: 160px;
}

/* ── Transport Grid ───────────────────────────── */
.transport-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.transport-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
    cursor: default;
}

.transport-card:hover {
    transform: translateY(-6px);
    border-color: rgba(245, 124, 0, 0.3);
    box-shadow: 0 16px 48px rgba(245, 124, 0, 0.08),
                0 4px 16px rgba(0, 0, 0, 0.04);
}

.transport-card__emoji {
    font-size: 2.6rem;
    display: block;
    margin-bottom: 14px;
    transition: var(--transition);
}

.transport-card:hover .transport-card__emoji {
    transform: scale(1.15);
}

.transport-card__title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gray-700);
}

/* ── Audience Grid ────────────────────────────── */
.audience-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.audience-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 32px 36px;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    width: 160px;
}

.audience-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(245, 124, 0, 0.35);
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.audience-card__emoji {
    font-size: 2.2rem;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.9);
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.audience-card:hover .audience-card__emoji {
    transform: scale(1.2);
}

.audience-card__label {
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
}

/* ── Checklist ────────────────────────────────── */
.checklist-wrapper {
    max-width: 560px;
    margin: 0 auto;
}

.checklist {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.checklist__item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    border-bottom: 1px solid var(--gray-200);
    transition: var(--transition);
}

.checklist__item:last-child {
    border-bottom: none;
}

.checklist__item:hover {
    background: rgba(245, 124, 0, 0.03);
    padding-left: 32px;
}

.checklist__check {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.12), rgba(76, 175, 80, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
}

.checklist__check--soon {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.08), rgba(76, 175, 80, 0.03));
}

.checklist__item span {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--gray-700);
}

/* ── CTA Download Section ─────────────────────── */
.section--cta {
    background: var(--gradient-dark);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-bg-pattern {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(245, 124, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(245, 124, 0, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 50% 90%, rgba(15, 52, 96, 0.3) 0%, transparent 50%);
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-content__title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.cta-content__text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto 36px;
    line-height: 1.6;
}

/* ── FAQ ──────────────────────────────────────── */
.faq-wrapper {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(245, 124, 0, 0.25);
}

.faq-item.open {
    border-color: rgba(245, 124, 0, 0.35);
    box-shadow: 0 8px 30px rgba(245, 124, 0, 0.06);
}

.faq-item__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 28px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font);
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--gray-700);
    text-align: left;
    transition: var(--transition);
}

.faq-item__question:hover {
    color: var(--orange);
}

.faq-item__arrow {
    flex-shrink: 0;
    color: var(--gray-400);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-item__arrow {
    transform: rotate(180deg);
    color: var(--orange);
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1),
                padding 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 28px;
}

.faq-item.open .faq-item__answer {
    max-height: 200px;
    padding: 0 28px 24px;
}

.faq-item__answer p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ── Footer highlight ─────────────────────────── */
.footer__desc--highlight {
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 500;
}

.footer__store-link {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — Clientes
   ═══════════════════════════════════════════════ */

@media (max-width: 1024px) {
    .cards-grid--4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-horizontal {
        grid-template-columns: repeat(3, 1fr);
        gap: 28px 16px;
    }

    .steps-horizontal__line {
        display: none;
    }

    .trust-bar__inner {
        flex-wrap: wrap;
        gap: 24px;
        margin-top: -30px;
    }

    .trust-bar__divider {
        display: none;
    }
}

@media (max-width: 768px) {
    .trust-bar__inner {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        margin-top: -30px;
        padding: 28px 24px;
    }

    .trust-bar__item {
        justify-content: center;
        text-align: center;
    }

    .cards-grid--4 {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .steps-horizontal {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 0 auto;
        gap: 8px;
    }

    .step-h {
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 16px;
    }

    .step-h__number {
        width: 48px;
        height: 48px;
        min-width: 48px;
        margin-bottom: 0;
    }

    .step-h__text {
        max-width: none;
    }

    .transport-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .audience-grid {
        gap: 12px;
    }

    .audience-card {
        padding: 24px 28px;
        width: 140px;
    }

    .btn--store {
        min-width: 180px;
        padding: 12px 22px;
    }

    .btn__store-name {
        font-size: 0.95rem;
    }

    .faq-item__question {
        padding: 18px 20px;
        font-size: 0.95rem;
    }

    .checklist__item {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 12px;
    }

    .checklist__item:hover {
        padding-left: 24px;
    }

    .faq-item__answer {
        padding: 0 20px;
    }

    .faq-item.open .faq-item__answer {
        padding: 0 20px 20px;
    }
}

@media (max-width: 480px) {
    .transport-grid {
        grid-template-columns: 1fr;
        max-width: 260px;
        margin: 0 auto;
    }

    .audience-grid {
        flex-direction: column;
        align-items: center;
    }

    .audience-card {
        width: 100%;
        max-width: 260px;
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 16px;
        padding: 20px 24px;
    }

    .hero__actions--dual {
        flex-direction: column;
        align-items: center;
    }

    .btn--store {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}
