/* ==============================================
   INDEX.CSS – Lojix Delivery Express
   ============================================== */

/* Utilitário compartilhado entre seções */
.section-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.25rem;
    display: block;
}

section,
.ticker-section {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.sobre-section,
.valores-section,
.planos-cta-section,
.parceiros-section,
.ticker-section,
.app-section,
.video-section,
.contato-section {
    scroll-margin-top: var(--header-height);
}

/* ==============================================
   HERO
   ============================================== */
.hero-section {
    height: 43.75rem;
    min-height: unset;
    background-image: url('../images/banner-06.webp');
    background-position: center center;
    background-size: cover;
    display: flex;
    align-items: center;
    position: relative;
    padding: 3.125rem;
    overflow: hidden;
    width: 100%;
}

.hero-content {
    padding: calc(var(--header-height) + 1.25rem) 0 0;
    max-width: 42rem;
}

.hero-title {
    font-family: var(--font-main);
    font-size: 3rem;
    font-weight: 600;
    line-height: 3.5rem;
    color: var(--white);
    margin-bottom: 0;
}

.hero-subtitle {
    font-family: var(--font-title);
    font-size: 2.625rem;
    font-weight: 300;
    color: var(--white);
    -webkit-text-stroke: 0.0625rem #000;
    text-shadow: 0 0 0.625rem #FFFFFF;
    margin-top: 0.9375rem;
    margin-bottom: 1.25rem;
}

.btn-falar {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    background: var(--hover-dark);
    color: var(--white);
    font-family: var(--font-main);
    font-weight: 500;
    font-size: 1rem;
    padding: 0.9375rem 4.375rem;
    border-radius: 0.9375rem;
    border: 0.0625rem solid rgba(255, 255, 255, 0.43);
    margin-top: 1.25rem;
    transition: background var(--transition), transform var(--transition);
    animation: pulse 2s infinite, luzes-vermelho 2s linear infinite;
}

.btn-falar .bi {
    font-size: 1.1rem;
    line-height: 1;
}

.btn-falar:hover {
    background: var(--hover-dark);
    transform: scale(1.05);
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes luzes-vermelho {
    0% {
        box-shadow: 0 0 0.625rem -1.25rem #FF0909;
    }

    90% {
        box-shadow: 0 0 0 1.25rem transparent;
    }

    100% {
        box-shadow: 0 0 0 0 transparent;
    }
}

/* ==============================================
   SOBRE NÓS
   ============================================== */
.sobre-section {
    background: var(--white);
    padding: 5rem 3.125rem 3.125rem;
    position: relative;
    z-index: 1;
}

.sobre-card {
    display: flex;
    gap: 0.9375rem;
    align-items: flex-start;
    background: var(--white);
    padding: 1.25rem;
    border-bottom: 0.25rem solid var(--primary);
    border-radius: var(--radius);
    box-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.14);
    margin-bottom: 1.25rem;
}

.sobre-card-icon {
    flex-shrink: 0;
}

.sobre-card h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.4rem;
}

.sobre-card p {
    font-family: var(--font-main);
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.375rem;
    color: var(--text);
    margin: 0;
}

/* ==============================================
   NOSSOS VALORES
   ============================================== */
.valores-section {
    background: var(--primary);
    padding: 4.375rem 3.125rem 11.25rem;
    position: relative;
    z-index: 1;
    overflow: visible;
}

.valores-section .section-title {
    color: var(--white);
    text-align: center;
}

.valores-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}

.valor-card {
    background: var(--white);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.9375rem;
    height: 100%;
    transition: transform var(--transition), box-shadow var(--transition);
}

.valor-card:hover {
    transform: translateY(-0.1875rem);
    box-shadow: 0 0.5rem 1.875rem rgba(0, 0, 0, 0.15);
}

.valor-icon-bi {
    font-size: 3.125rem;
    color: var(--secondary);
    line-height: 1;
    flex-shrink: 0;
    align-self: center;
}

.valor-card-body {
    flex: 1;
}

.valor-card h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.3rem;
}

.valor-card p {
    font-family: var(--font-main);
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.375rem;
    color: var(--text);
    margin: 0;
    text-align: justify;
}

/* ==============================================
   PLANOS CTA
   ============================================== */
.planos-cta-section {
    background: transparent;
    padding: 0 3.125rem 3.125rem;
    margin-top: -8.125rem;
    position: relative;
    z-index: 10;
}

.planos-cta-box {
    background: var(--white);
    border-radius: 0.625rem;
    box-shadow: 0 0.375rem 1.875rem rgba(0, 0, 0, 0.18);
    padding: 2.5rem;
    max-width: 56.875rem;
    margin-left: auto;
    margin-right: auto;
}

.planos-cta-box h2 {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.25rem;
    text-align: center;
    line-height: 1.2;
}

.planos-cta-box p {
    font-family: var(--font-main);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.75rem;
    color: var(--black);
    text-align: left;
}

.btn-planos {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    background: var(--hover-dark);
    color: var(--white);
    font-family: var(--font-main);
    font-weight: 500;
    font-size: 1rem;
    text-transform: uppercase;
    padding: 0.9375rem 4.375rem;
    border-radius: 0.9375rem;
    border: 0.0625rem solid rgba(255, 255, 255, 0.43);
    margin-top: 0.9375rem;
    transition: background var(--transition), transform var(--transition);
    animation: pulse 2s infinite;
}

.btn-planos .bi {
    font-size: 1.1rem;
    line-height: 1;
}

.btn-planos:hover {
    background: var(--hover-dark);
    transform: scale(1.05);
}

/* ==============================================
   PARCEIROS
   ============================================== */
.parceiros-section {
    background: var(--white);
    padding: 3.125rem;
}

.parceiros-section .section-title {
    color: var(--primary);
    text-align: center;
}

.parceiros-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem 4rem;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

.parceiros-logos img {
    height: 5rem;
    width: 9rem;
    object-fit: contain;
    transition: transform var(--transition);
}

.parceiros-logos img:hover {
    transform: scale(1.08);
}

/* ==============================================
   TICKER
   ============================================== */
.ticker-section {
    background: var(--primary);
    overflow: hidden;
    padding: 2.5rem 0;
    white-space: nowrap;
}

.ticker-track {
    display: inline-flex;
    animation: ticker-scroll 80s linear infinite;
    will-change: transform;
}

.ticker-text {
    font-family: var(--font-main);
    font-size: 1.125rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2375rem;
    color: var(--white);
}

@keyframes ticker-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ==============================================
   APLICATIVO
   ============================================== */
.app-section {
    background-image: url('../images/banner-branco-1.webp');
    background-position: center center;
    background-size: cover;
    padding: 3.125rem 3.125rem 4.375rem;
    overflow: hidden;
    width: 100%;
    position: relative;
}

.app-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.45);
    z-index: 0;
    pointer-events: none;
}

.app-section>* {
    position: relative;
    z-index: 1;
}

.app-join-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 600;
    color: var(--primary);
    text-align: center;
    width: 100%;
    margin-bottom: 0.25rem;
    display: block;
}

.app-subtitle {
    font-family: var(--font-main);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--primary);
    text-align: center;
    width: 100%;
    margin-bottom: 0;
    display: block;
}

.app-content {
    padding-top: 0;
}

.app-content p {
    font-family: var(--font-main);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.75rem;
    color: var(--black);
    text-align: left;
    margin-bottom: 1rem;
}

.app-list {
    list-style: disc;
    padding-left: 1.5rem;
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
}

.app-list li {
    font-family: var(--font-main);
    font-size: 1rem;
    font-weight: 500;
    line-height: 2rem;
    color: var(--black);
}

.app-disponivel {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.app-store-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--text);
    font-family: var(--font-main);
    font-size: 1.375rem;
    font-weight: 600;
    margin-top: 0.75rem;
    margin-left: 1.5rem;
    transition: color var(--transition);
}

.app-store-link:hover {
    color: var(--primary);
}

.app-mockup {
    max-height: 32.5rem;
    width: 100%;
    max-width: 100%;
    border-radius: 1.25rem;
    object-fit: contain;
    display: block;
    margin-left: auto;
}

/* ==============================================
   VÍDEO
   ============================================== */
.video-section {
    background: var(--primary);
    padding: 5rem 3.125rem 1rem;
    text-align: center;
    overflow: hidden;
    width: 100%;
}

.video-title {
    font-family: var(--font-display);
    font-size: 1.8125rem;
    font-weight: 600;
    color: var(--white);
    text-align: center;
    margin-bottom: 0;
    padding-bottom: 0;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 0.625rem;
    max-width: 75%;
    margin: 0 auto;
}

.video-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ==============================================
   CONTATO
   ============================================== */
.contato-section {
    background-image: url('../images/banner-branco-1.webp');
    background-position: center center;
    background-size: cover;
    padding: 4.375rem 3.125rem;
    position: relative;
    z-index: 1;
    text-align: center;
}

.contato-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.45);
    z-index: 0;
    pointer-events: none;
}

.contato-section>* {
    position: relative;
    z-index: 2;
}

.contato-section .section-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 600;
    color: var(--primary);
    text-align: center;
    display: block;
}

.contato-section p {
    font-family: var(--font-main);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.75rem;
    color: var(--black);
    text-align: center;
}

.contato-list {
    display: inline-flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
    margin: 1.5rem auto;
    text-align: left;
}

.contato-list li,
.contato-list li a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-main);
    font-size: 1rem;
    font-weight: 500;
    line-height: 2.1875rem;
    color: var(--black);
    transition: color var(--transition);
}

.contato-list li a:hover {
    color: var(--secondary);
}

.contato-list .bi {
    font-size: 1.2rem;
    color: var(--secondary);
    flex-shrink: 0;
}

.contato-closing {
    font-family: var(--font-main);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.75rem;
    color: var(--black);
    text-align: center;
    margin-top: 0.75rem;
}

/* ==============================================
   RESPONSIVO — TABLET (≤1024px)
   ============================================== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.625rem;
        line-height: 3.125rem;
    }

    .hero-subtitle {
        font-size: 1.875rem;
    }

    .btn-falar {
        padding: 0.9375rem 1.875rem;
    }

    .section-title {
        font-size: 2.25rem;
    }

    .sobre-section {
        padding: 3.125rem 1.5rem;
    }

    .contato-section {
        padding: 3.125rem 1.5rem;
    }

    .valores-section {
        padding: 3.125rem 1.5rem 10rem;
    }

    .planos-cta-section {
        padding: 0 1.5rem 2.5rem;
        margin-top: -6.875rem;
    }

    .planos-cta-box {
        padding: 2rem 1.5rem;
    }

    .planos-cta-box h2 {
        font-size: 2.25rem;
    }

    .parceiros-section {
        padding: 2.5rem 1.5rem;
    }

    .ticker-section {
        padding: 1.875rem 0;
    }

    .app-section {
        padding: 2.5rem 1.5rem 3.125rem;
    }

    .video-section {
        padding: 3.125rem 1.5rem;
    }

    .btn-planos {
        padding: 0.9375rem 1.875rem;
        width: 100%;
        justify-content: center;
    }

    .app-join-title {
        font-size: 2.375rem;
    }

    .app-subtitle {
        font-size: 1.125rem;
    }
}

/* ==============================================
   RESPONSIVO — MOBILE (≤767px)
   ============================================== */
@media (max-width: 767px) {

    /* Hero */
    .hero-section {
        background-image: url('../images/banner-mobile.webp');
        height: 49rem;
        min-height: unset;
        padding: 6.875rem 1.25rem 2.5rem;
        align-items: flex-start;
    }

    .hero-content {
        padding-top: 5rem;
        text-align: center;
    }

    .hero-title {
        font-size: 1.75rem;
        line-height: 2.25rem;
        text-align: center;
    }

    .hero-subtitle {
        font-size: 1.75rem;
        text-align: center;
        margin-top: 0.625rem;
        margin-bottom: 1rem;
    }

    .btn-falar {
        width: 100%;
        max-width: 20rem;
        justify-content: center;
        padding: 0.875rem 1.25rem;
        margin: 2rem auto 0;
        display: flex;
    }

    /* Sobre */
    .sobre-section {
        padding: 2.5rem 1rem;
    }

    .section-title {
        font-size: 2rem;
        text-align: center;
    }

    .sobre-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.25rem 1rem;
    }

    .sobre-card h3 {
        font-size: 1.375rem;
    }

    .sobre-card p {
        font-size: 0.875rem;
    }

    /* Valores */
    .valores-section {
        padding: 2.5rem 1rem 9.375rem;
    }

    .valores-section .section-title {
        font-size: 2rem;
    }

    .valor-card {
        padding: 1rem;
        gap: 0.75rem;
    }

    .valor-icon-bi {
        font-size: 2.375rem;
    }

    .valor-card h3 {
        font-size: 1.25rem;
    }

    .valor-card p {
        font-size: 0.875rem;
        text-align: left;
    }

    /* Planos CTA */
    .planos-cta-section {
        padding: 0 1rem 2rem;
        margin-top: -6.25rem;
    }

    .planos-cta-box {
        padding: 1.75rem 1rem;
    }

    .planos-cta-box h2 {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .planos-cta-box p {
        font-size: 0.875rem;
        line-height: 1.5rem;
    }

    .btn-planos {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1.25rem;
        font-size: 0.875rem;
    }

    /* Parceiros */
    .parceiros-section {
        padding: 2rem 1rem;
    }

    .parceiros-logos {
        gap: 1.5rem 1.5rem;
    }

    .parceiros-logos img {
        height: 4rem;
        width: 7rem;
        object-fit: contain;
    }

    /* Ticker */
    .ticker-section {
        padding: 2rem 0;
    }

    .ticker-text {
        font-size: 0.9375rem;
        letter-spacing: 0.15rem;
    }

    /* App */
    .app-section {
        background-image: url('../images/banner-branco-mobile.webp');
        padding: 2.25rem 1rem 2.5rem;
    }

    .app-section::before {
        background: rgba(255, 255, 255, 0.30);
    }

    .app-join-title {
        font-size: 2rem;
        margin-bottom: 0.375rem;
    }

    .app-subtitle {
        font-size: 0.9375rem;
    }

    .app-content p {
        font-size: 0.875rem;
        line-height: 1.5rem;
    }

    .app-list li {
        font-size: 0.875rem;
        line-height: 1.75rem;
    }

    .app-store-link {
        font-size: 1.125rem;
        margin-left: 0;
        justify-content: center;
    }

    .app-mockup {
        max-height: 21.25rem;
        margin: 1.5rem auto 0;
    }

    /* Vídeo */
    .video-section {
        padding: 2.25rem 1rem;
    }

    .video-title {
        font-size: 1.125rem;
        margin-bottom: 1.25rem;
        padding-bottom: 0;
    }

    .video-wrapper {
        max-width: 100%;
        border-radius: 0.5rem;
    }

    /* Contato */
    .contato-section {
        background-image: url('../images/banner-branco-mobile.webp');
        padding: 2.5rem 1rem;
    }

    .contato-section::before {
        background: rgba(255, 255, 255, 0.30);
    }

    .contato-section .section-title {
        font-size: 2rem;
    }

    .contato-section p {
        font-size: 0.875rem;
    }

    .contato-list li,
    .contato-list li a {
        font-size: 0.9375rem;
        line-height: 2rem;
    }

    .contato-closing {
        font-size: 0.875rem;
    }
}

/* ==============================================
   RESPONSIVO — IPHONE SE (≤375px)
   ============================================== */
@media (max-width: 375px) {
    .hero-section {
        height: 46rem;
    }
}