/* ================= RESET ================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Manrope', Arial, sans-serif;
    background-color: #ffffff;
}

/* ================= CONTAINER ================= */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ================= HERO ================= */


.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    flex-wrap: wrap;
}

/* TEXTO HERO */

.hero-text {
    flex: 1;
    min-width: 300px;
}

.badge-versao {
    display: inline-block;
    background-color: #f2f2f2;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 14px;
    margin-bottom: 15px;
}

.hero-text h1 {
    font-size: 44px;
    margin-bottom: 15px;
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 20px;
}

/* BOTÃO */

.btn-download {
    display: inline-block;
    background-color: #e30613;
    color: #ffffff;
    padding: 16px 26px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
}

.btn-download:hover {
    background-color: #b80510;
}

.btn-download.big {
    margin-top: 25px;
}

/* BADGES HERO */

.hero-badges {
    margin-top: 15px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-badges span {
    background-color: #f5f5f5;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 14px;
}

/* IMAGEM HERO */

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-image img {
    max-width: 420px;
    width: 100%;
}

/* ================= BANNER ================= */

.banner {
    padding: 40px 0;
    text-align: center;
}

.banner-img {
    max-width: 1000px;
    width: 100%;
}

/* ================= PROVA SOCIAL ================= */

.prova-social {
    padding: 60px 0;
    text-align: center;
}

.prova-social h2 {
    margin-bottom: 10px;
}

.numeros {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.numero h3 {
    font-size: 28px;
}

/* ================= BENEFÍCIOS ================= */

.beneficios {
    padding: 42px 14px 42px;
    text-align: center;
    position: relative;
    background: #ffffff !important;
    overflow: visible;
}

.beneficios::after {
    display: none !important;
    content: none !important;
}

.beneficios .container {
    max-width: 520px;
    margin: 0 auto;
    padding: 0;
}

.beneficios h2 {
    font-family: 'Manrope', Arial, sans-serif;
    font-size: 26px;
    line-height: 1.15;
    font-weight: 900;
    color: #10121f;
    margin-bottom: 22px;
}

.beneficios h2 span {
    color: #c8102e;
}

.beneficios-grid {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 30px;
}

.beneficio {
    position: relative;
    overflow: hidden;

    background: #ffffff;
    border-radius: 22px;
    padding: 32px 16px 28px;

    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.075);
    border: 1px solid rgba(227, 6, 19, 0.08);

    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.beneficio::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 5px;

    background: linear-gradient(90deg, #e30613 0%, #b00000 100%);
}

.beneficio img {
    width: 118px;
    height: 118px;
    object-fit: contain;
    margin: 0 auto 16px;
}

.beneficio h3 {
    font-family: 'Manrope', Arial, sans-serif;
    font-size: 21px;
    line-height: 1.12;
    font-weight: 900;
    color: #070b16;
    margin-bottom: 8px;
    letter-spacing: -0.35px;
}

.beneficio p {
    font-family: 'Manrope', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.38;
    color: #20242c;
    max-width: 330px;
    margin: 0 auto;
}

/* CELULAR MENOR */
@media (max-width: 420px) {
    .beneficios {
        padding: 34px 12px 34px;
    }

    .beneficios-grid {
        gap: 16px;
    }

    .beneficio {
        padding: 20px 14px 18px;
        border-radius: 20px;
    }

    .beneficio img {
        width: 108px;
        height: 108px;
        margin-bottom: 14px;
    }

    .beneficio h3 {
        font-size: 20px;
        margin-bottom: 7px;
    }

    .beneficio p {
        font-size: 15px;
        line-height: 1.35;
    }
}

/* CELULAR MUITO ESTREITO */
@media (max-width: 340px) {
    .beneficios {
        padding: 22px 10px 30px;
    }

    .beneficios-grid {
        gap: 14px;
    }

    .beneficio {
        padding: 18px 12px 16px;
        border-radius: 18px;
    }

    .beneficio img {
        width: 98px;
        height: 98px;
        margin-bottom: 12px;
    }

    .beneficio h3 {
        font-size: 18px;
    }

    .beneficio p {
        font-size: 14px;
    }
}

/* ================= PRINTS ================= */

.prints {
    padding: 60px 0;
    text-align: center;
}

.prints-grid {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.prints-grid img {
    width: 240px;
}

/* ================= INSTALAÇÃO ================= */

.instalacao {
    padding: 60px 0;
    text-align: center;
}

.instalacao ol {
    margin-top: 25px;
    margin-bottom: 25px;
    text-align: left;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ================= FOOTER ================= */

footer {
    padding: 25px 0;
    text-align: center;
    background-color: #f5f5f5;
}

/* ================= IMAGENS GERAL ================= */

img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* HERO FULL WIDTH */

.hero {
    padding: 0;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    flex-wrap: wrap;
}

.hero .container {
    max-width: 100%;
    width: 100%;
    padding: 0;
    margin: 0;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    overflow: visible;
    margin-top: 0;
}

.hero-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
}

.hero-image::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(to top,
            rgba(255,255,255,1) 1.5%,
            rgba(255,255,255,0) 5%
        );
}

.banner {
    padding: 0;
    margin: 0;
}

.banner .container {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
}

.banner-img {
    width: 100%;
    max-width: 100%;
}

.banner-app-jadlog {
    padding: 0 5px;
    margin: 0;
}

.banner-app-img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.passo-a-passo-app {
    padding: 0;
    margin: 0;
    position: relative;
}

.passo-a-passo-app::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;

    width: 100%;
    height: 22px;

    background: linear-gradient(
        to bottom,
        rgba(255,255,255,1) 0%,
        rgba(255,255,255,0) 100%
    );

    pointer-events: none;
    z-index: 2;
}

.passo-a-passo-app::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;

    width: 100%;
    height: 22px;

    background: linear-gradient(
        to top,
        rgba(255,255,255,1) 0%,
        rgba(255,255,255,0) 100%
    );

    pointer-events: none;
    z-index: 2;
}

.passo-a-passo-img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 0;
    margin: 0;
}

/* BOTÃO HERO PREMIUM */

.hero,
.passo-a-passo-app {
    line-height: 0;
}

.btn-hero-download {
    position: absolute;
    left: 0;
    bottom: -7px;

    display: inline-flex;
    align-items: center;
    justify-content: flex-start;

    width: clamp(200px, 58vw, 300px);
    min-height: clamp(54px, 12vw, 74px);

    padding: clamp(9px, 2.4vw, 15px)
         clamp(54px, 14vw,80px)
         clamp(9px, 2.4vw, 15px)
         clamp(18px, 4vw, 26px);

    background: linear-gradient(180deg, #ff1f2d 0%, #720a11 100%);
    color: #ffffff;
    text-decoration: none;

    border-radius: 0 clamp(16px, 4vw, 24px) clamp(16px, 4vw, 24px) 0;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
    border: 1.5px solid #6f080d;

    z-index: 10;
    overflow: visible;

    transition: box-shadow 0.2s ease, background 0.2s ease;
}

.btn-hero-download:hover {
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.26);
    background: linear-gradient(180deg, #ff2a37 0%, #c90513 100%);
}

.btn-hero-download:active {
    transform: none;
}

.btn-hero-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.05;
    position: relative;
    z-index: 2;
}

.btn-hero-text strong {
    font-size: clamp(20px, 5.7vw, 30px);
    font-weight: 800;
    letter-spacing: -0.5px;
    white-space: nowrap;
}

.btn-hero-text small {
    margin-top: 2px;
    font-size: clamp(8px, 2.3vw, 11px);
    font-weight: 800;
    opacity: 0.95;
    letter-spacing: 0.2px;
    text-transform: uppercase;
    white-space: nowrap;
}

.android-badge {
    position: absolute;
    right: clamp(10px, 3vw, 18px);
    top: 28%;
    transform: translateY(-50%);

    width: clamp(42px, 11vw, 58px);
    height: clamp(42px, 11vw, 58px);
    min-width: clamp(42px, 11vw, 58px);

    border-radius: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: none;
    z-index: 3;
}

.android-boneco-btn {
    width: clamp(42px, 11vw, 58px);
    height: clamp(42px, 11vw, 58px);
    display: block;
    object-fit: contain;
}

/* ================= SEGURANÇA FOOTER ================= */

.seguranca-footer {
    padding: 36px 14px 30px;
    margin-top: -1px;
    position: relative;
    z-index: 2;

    background:
        linear-gradient(
            180deg,
            #ffeaea 0%,
            #f7bcbc 4%,
            #e53939 8%,
            #d10000 12%,
            #d10000 58%,
            #a90014 78%,
            #2d2f34 100%
        );
}

.seguranca-box {
    max-width: 1180px;
    margin: 0 auto;
    padding: 24px 30px;
    border-radius: 22px;

    background:
        linear-gradient(
            135deg,
            rgba(184, 0, 22, 0.98) 0%,
            rgba(151, 0, 18, 0.98) 55%,
            rgba(116, 0, 15, 0.98) 100%
        );

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;

    color: #ffffff;

    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.seguranca-texto {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    flex: 1;
    min-width: 0;
}

.seguranca-icone {
    width: 78px;
    height: 78px;
    min-width: 78px;

    border: 2px solid rgba(255,255,255,0.68);
    border-radius: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 36px;
    color: #ffffff;

    background: rgba(255, 255, 255, 0.04);
}

.seguranca-conteudo {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.seguranca-conteudo h3 {
    font-size: 28px;
    line-height: 1.05;
    font-weight: 900;

    margin: 0 0 10px 0;
    max-width: 420px;
}

.seguranca-conteudo p {
    font-size: 17px;
    line-height: 1.28;

    margin: 0;
    max-width: 510px;
    color: rgba(255, 255, 255, 0.92);
}

.seguranca-btn {
    color: #ffffff;
    text-decoration: none;

    border: 1px solid rgba(255,255,255,0.42);
    border-radius: 18px;

    padding: 18px 28px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;

    min-width: 360px;

    background: rgba(255, 255, 255, 0.035);
    transition: 0.25s ease;
}

.seguranca-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-1px);
}

.seguranca-btn i {
    font-size: 34px;
}

.seguranca-btn span {
    display: flex;
    flex-direction: column;

    font-size: 18px;
    line-height: 1.12;
}

.seguranca-btn strong {
    font-size: 24px;
    font-weight: 900;
}

/* ================= SEGURANÇA RESPONSIVA ================= */

@media (max-width: 900px) {
    .seguranca-footer {
        padding: 26px 14px 24px;

        background:
            linear-gradient(
                180deg,
                #ffffff 0%,
                #ffffff 5%,
                #d10000 6%,
                #c40000 42%,
                #850010 72%,
                #2d2f34 100%
            );
    }

    .seguranca-box {
        padding: 20px;
        gap: 20px;
        border-radius: 20px;
    }

    .seguranca-texto {
        gap: 16px;
    }

    .seguranca-icone {
        width: 62px;
        height: 62px;
        min-width: 62px;
        font-size: 28px;
        border-radius: 14px;
    }

    .seguranca-conteudo h3 {
        font-size: 22px;
        max-width: 320px;
    }

    .seguranca-conteudo p {
        font-size: 14px;
        max-width: 360px;
    }

    .seguranca-btn {
        min-width: 260px;
        padding: 15px 18px;
        gap: 12px;
    }

    .seguranca-btn i {
        font-size: 28px;
    }

    .seguranca-btn span {
        font-size: 14px;
    }

    .seguranca-btn strong {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .seguranca-footer {
        padding: 24px 12px 22px;

        background:
            linear-gradient(
                180deg,
                #ffffff 0%,
                #ffffff 4%,
                #d10000 5%,
                #c40000 44%,
                #79000f 76%,
                #2d2f34 100%
            );
    }

    .seguranca-box {
        width: 100%;
        padding: 18px 16px;
        border-radius: 18px;

        flex-direction: column;
        align-items: stretch;
        justify-content: center;
        gap: 18px;

        text-align: center;
    }

    .seguranca-texto {
        width: 100%;

        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 14px;

        text-align: left;
    }

    .seguranca-icone {
        width: 54px;
        height: 54px;
        min-width: 54px;

        font-size: 25px;
        border-radius: 13px;
    }

    .seguranca-conteudo {
        max-width: 310px;
    }

    .seguranca-conteudo h3 {
        font-size: 20px;
        line-height: 1.08;
        margin-bottom: 8px;
        max-width: 100%;
    }

    .seguranca-conteudo p {
        font-size: 13px;
        line-height: 1.25;
        max-width: 100%;
    }

    .seguranca-btn {
        width: 100%;
        min-width: 0;

        padding: 14px 16px;
        border-radius: 15px;

        gap: 12px;
    }

    .seguranca-btn i {
        font-size: 26px;
    }

    .seguranca-btn span {
        font-size: 13px;
        text-align: left;
    }

    .seguranca-btn strong {
        font-size: 16px;
    }
}

@media (max-width: 420px) {
    .seguranca-footer {
        padding: 22px 10px 20px;
    }

    .seguranca-box {
        padding: 16px 14px;
        border-radius: 16px;
        gap: 16px;
    }

    .seguranca-texto {
        gap: 12px;
    }

    .seguranca-icone {
        width: 48px;
        height: 48px;
        min-width: 48px;

        font-size: 22px;
        border-radius: 12px;
    }

    .seguranca-conteudo {
        max-width: 240px;
    }

    .seguranca-conteudo h3 {
        font-size: 17px;
        margin-bottom: 7px;
    }

    .seguranca-conteudo p {
        font-size: 12px;
    }

    .seguranca-btn {
        padding: 13px 14px;
        gap: 10px;
    }

    .seguranca-btn i {
        font-size: 24px;
    }

    .seguranca-btn span {
        font-size: 12px;
    }

    .seguranca-btn strong {
        font-size: 14px;
    }
}

@media (max-width: 340px) {
    .seguranca-texto {
        align-items: flex-start;
    }

    .seguranca-icone {
        width: 44px;
        height: 44px;
        min-width: 44px;
        font-size: 20px;
    }

    .seguranca-conteudo h3 {
        font-size: 16px;
    }

    .seguranca-conteudo p {
        font-size: 11px;
    }
}


/* ================= FOOTER ================= */

.footer {
    background: #2d2e31;
    color: #ffffff;
    padding: 18px 18px 0;
    border-radius: 0;
    text-align: left;
}

.footer-container {
    max-width: 1180px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr 1.2fr 0.7fr;
    gap: 20px;
    align-items: start;
}

.footer-col {
    min-width: 0;
}

.footer-logo-area {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    width: 170px;
    height: auto;
    display: block;
    margin: 0 0 10px 0;
}

.footer-logo-area p {
    max-width: 230px;
    color: #d7d9df;
    font-size: 12px;
    line-height: 1.4;
    margin-bottom: 10px;
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.footer-col a,
.footer-col p {
    display: block;
    color: #d7d9df;
    text-decoration: none;
    font-size: 12px;
    line-height: 1.45;
    margin-bottom: 5px;
}

.footer-col a:hover {
    color: #ffffff;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
}

.footer-social a {
    width: auto;
    height: auto;
    background: transparent;
    color: #ffffff;
    font-size: 16px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    opacity: 0.9;
    transition: 0.2s ease;
}

.footer-social a:hover {
    opacity: 1;
    transform: translateY(-1px);
}

.footer-col-selo {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}

.selo-seguro {
    width: 90px;
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 2px;
    padding: 7px 5px 8px;
    text-align: center;
    background: transparent;
}

.selo-topo {
    display: block;
    font-size: 7px;
    color: #d9dce2;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin-bottom: 4px;
}

.selo-seguro i {
    display: block;
    font-size: 13px;
    margin-bottom: 3px;
}

.selo-seguro strong {
    display: block;
    font-size: 17px;
    line-height: 1;
    margin-bottom: 3px;
}

.selo-seguro span:last-child {
    display: block;
    font-size: 8px;
    color: #c9ced6;
    line-height: 1.15;
}

.footer-copy {
    max-width: 1180px;
    margin: 8px auto 0;
    padding: 10px 0 12px;
    text-align: center;
    font-size: 11px;
    color: #b8a78d;
}


/* ================= TABLET ================= */

@media (max-width: 900px) {
    .seguranca-box {
        padding: 14px 16px;
        gap: 14px;
    }

    .seguranca-icone {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 24px;
    }

    .seguranca-conteudo h3 {
        font-size: 18px;
        margin-bottom: 8px;
        max-width: 240px;
    }

    .seguranca-conteudo p {
        font-size: 13px;
        max-width: 280px;
    }

    .seguranca-btn {
        min-width: 260px;
        padding: 12px 16px;
    }

    .seguranca-btn i {
        font-size: 24px;
    }

    .seguranca-btn span {
        font-size: 14px;
    }

    .seguranca-btn strong {
        font-size: 17px;
    }

    .footer-container {
        grid-template-columns: 1.2fr 1fr 1fr;
        gap: 18px;
    }

    .footer-col-selo {
        justify-content: flex-start;
    }

    .footer-logo {
        width: 150px;
    }
}


/* ================= MOBILE ================= */

@media (max-width: 768px) {
    .seguranca-box {
        flex-direction: column;
        align-items: stretch;
        text-align: left;
        padding: 14px;
        gap: 14px;
    }

    .seguranca-texto {
        width: 100%;
        align-items: flex-start;
    }

    .seguranca-conteudo h3 {
        font-size: 18px;
        max-width: 100%;
        margin-bottom: 10px;
    }

    .seguranca-conteudo p {
        font-size: 13px;
        max-width: 100%;
    }

    .seguranca-btn {
        width: 100%;
        min-width: 0;
        padding: 12px 14px;
        justify-content: center;
    }

    .seguranca-btn i {
        font-size: 24px;
    }

    .seguranca-btn span {
        font-size: 14px;
    }

    .seguranca-btn strong {
        font-size: 16px;
    }

    .footer {
        padding: 22px 16px 0;
        border-radius: 0;
        overflow: hidden;
    }

    .footer-container {
        width: 100%;
        max-width: 520px;
        margin: 0 auto;

        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px 18px;

        text-align: center;
        align-items: start;
    }

    /* LOGO NO TOPO OCUPANDO A LARGURA */
    .footer-logo-area {
        grid-column: 1 / -1;
        order: 1;

        align-items: center;
        text-align: center;
    }

    .footer-logo {
        width: min(320px, 88vw);
        margin: 0 auto 12px;
    }

    .footer-logo-area p {
        max-width: 100%;
        font-size: 15px;
        line-height: 1.35;
        margin-bottom: 14px;
    }

    .footer-social {
        justify-content: center;
        gap: 20px;
        margin-top: 6px;
    }

    .footer-social a {
        font-size: 22px;
    }

    /* FALE CONOSCO LOGO ABAIXO DA LOGO */
    .footer-container .footer-col:nth-child(4) {
        grid-column: 1 / -1;
        order: 2;

        text-align: center;
        padding: 2px 0 0;
    }

    .footer-container .footer-col:nth-child(4) h4 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .footer-container .footer-col:nth-child(4) p {
        font-size: 15px;
        line-height: 1.45;
        margin-bottom: 6px;
    }

    /* LINKS RÁPIDOS À ESQUERDA */
    .footer-container .footer-col:nth-child(2) {
        order: 3;
        text-align: center;
    }

    /* INSTITUCIONAL À DIREITA */
    .footer-container .footer-col:nth-child(3) {
        order: 4;
        text-align: center;
    }

    .footer-container .footer-col:nth-child(2) h4,
    .footer-container .footer-col:nth-child(3) h4 {
        font-size: 19px;
        margin-bottom: 12px;
    }

    .footer-container .footer-col:nth-child(2) a,
    .footer-container .footer-col:nth-child(3) a {
        font-size: 16px;
        line-height: 1.45;
        margin-bottom: 9px;
    }

    /* ESCONDE O SELO NO MOBILE PARA FICAR MAIS LIMPO */
    .footer-col-selo {
        display: none;
    }

    .footer-copy {
        width: 100%;
        max-width: 520px;
        margin: 20px auto 0;
        padding: 12px 0 14px;
        font-size: 12px;
        line-height: 1.35;
    }
}


/* ================= CELULAR MENOR ================= */

@media (max-width: 420px) {
    .seguranca-footer {
        padding: 8px 10px;
    }

    .seguranca-box {
        border-radius: 14px;
        padding: 12px;
    }

    .seguranca-icone {
        width: 44px;
        height: 44px;
        min-width: 44px;
        font-size: 20px;
        border-radius: 10px;
    }

    .seguranca-conteudo h3 {
        font-size: 16px;
    }

    .seguranca-conteudo p {
        font-size: 12px;
    }

    .seguranca-btn {
        gap: 10px;
    }

    .seguranca-btn i {
        font-size: 22px;
    }

    .seguranca-btn span {
        font-size: 12px;
    }

    .seguranca-btn strong {
        font-size: 14px;
    }

    .footer {
        padding: 20px 12px 0;
    }

    .footer-container {
        gap: 22px 12px;
    }

    .footer-logo {
        width: min(290px, 90vw);
    }

    .footer-logo-area p {
        font-size: 14px;
    }

    .footer-social {
        gap: 18px;
    }

    .footer-social a {
        font-size: 21px;
    }

    .footer-container .footer-col:nth-child(4) h4 {
        font-size: 19px;
    }

    .footer-container .footer-col:nth-child(4) p {
        font-size: 14px;
    }

    .footer-container .footer-col:nth-child(2) h4,
    .footer-container .footer-col:nth-child(3) h4 {
        font-size: 17px;
    }

    .footer-container .footer-col:nth-child(2) a,
    .footer-container .footer-col:nth-child(3) a {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .footer-copy {
        font-size: 11px;
    }
}


/* ================= CELULAR MUITO ESTREITO ================= */

@media (max-width: 340px) {
    .footer-container {
        gap: 20px 8px;
    }

    .footer-logo {
        width: min(260px, 90vw);
    }

    .footer-logo-area p {
        font-size: 13px;
    }

    .footer-container .footer-col:nth-child(4) p {
        font-size: 13px;
    }

    .footer-container .footer-col:nth-child(2) h4,
    .footer-container .footer-col:nth-child(3) h4 {
        font-size: 15px;
    }

    .footer-container .footer-col:nth-child(2) a,
    .footer-container .footer-col:nth-child(3) a {
        font-size: 13px;
    }
}

/* ================= TRANSIÇÃO FINAL BRANCO → VERMELHO ================= */

/* Mantém a área dos benefícios realmente branca */
.beneficios {
    background: #ffffff !important;
    padding-bottom: 34px !important;
    position: relative;
    overflow: visible;
}

/* Desliga os degradês antigos dos benefícios */
.beneficios::after {
    display: none !important;
    content: none !important;
}

/* A seção de segurança já começa no vermelho real */
.seguranca-footer {
    position: relative !important;
    z-index: 2;
    overflow: visible;

    padding: 24px 14px 24px !important;
    margin-top: 0;

    background:
        linear-gradient(
            180deg,
            #d10000 0%,
            #d10000 82%,
            #b00014 94%,
            #6f1018 100%
        ) !important;
}

/* Degradê curto e translúcido só no encontro do branco com o vermelho */
.seguranca-footer::before {
    content: "";
    position: absolute;
    left: 0;
    top: -34px;
    width: 100%;
    height: 34px;

    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 238, 238, 0.55) 28%,
            rgba(227, 6, 19, 0.28) 58%,
            rgba(209, 0, 0, 0.78) 84%,
            #d10000 100%
        );

    pointer-events: none;
    z-index: 1;
}

/* Garante que o card fique acima do degradê */
.seguranca-box {
    position: relative;
    z-index: 2;
}

/* MOBILE */
@media (max-width: 768px) {
    .beneficios {
        padding-bottom: 28px !important;
        background: #ffffff !important;
    }

    .seguranca-footer {
        padding: 22px 10px 22px !important;
        background:
            linear-gradient(
                180deg,
                #d10000 0%,
                #d10000 70%,
                #9b0013 86%,
                #2d2f34 100%
            ) !important;
    }

    .seguranca-footer::before {
        top: -28px;
        height: 28px;
    }
}

@media (max-width: 420px) {
    .beneficios {
        padding-bottom: 24px !important;
    }

    .seguranca-footer {
        padding: 20px 10px 22px !important;
    }

    .seguranca-footer::before {
        top: -24px;
        height: 24px;
    }
}

.menu-topo a:hover {
    color: #e30613 !important;
}

/* esconde o botão antigo caso ainda exista no HTML */
.btn-whatsapp-topo {
    display: none !important;
}

/* ================= HEADER MOBILE FINAL LIMPO ================= */

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.header {
    width: 100%;
    max-width: 100%;
    background: #ffffff;

    position: sticky;
    top: 0;
    z-index: 999;

    padding: 8px 0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);

    overflow: hidden;
}

.header-container {
    width: 100%;
    max-width: 100%;

    padding: 0 6px;

    display: flex;
    align-items: center;
    justify-content: flex-start;

    gap: 8px;
    flex-wrap: nowrap;

    overflow: hidden;
}

.logo {
    flex: 0 0 auto;

    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.logo img {
    width: 118px;
    max-height: 44px;
    height: auto;

    display: block;
    margin: 0;
}

.menu-topo {
    flex: 1 1 auto;
    min-width: 0;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 10px;
    flex-wrap: nowrap;

    overflow: hidden;
    white-space: nowrap;
}

.menu-topo a {
    flex: 1 1 0;
    min-width: 0;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 8px 8px;

    border-radius: 999px;
    background: linear-gradient(180deg, #ef2330 0%, #c40000 100%);
    border: 1px solid #b00000;

    color: #ffffff !important;
    text-decoration: none;

    font-size: clamp(9px, 2.4vw, 13px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.65px;

    white-space: nowrap;

    box-shadow: none;
}

.menu-topo a:hover {
    color: #ffffff !important;
    background: linear-gradient(180deg, #ff2a37 0%, #a80000 100%);
}

.btn-whatsapp-topo {
    display: none !important;
}

/* Ajuste para celulares até 420px */
@media (max-width: 420px) {
    .header {
        padding: 8px 0;
    }

    .header-container {
        padding: 0 5px;
        gap: 7px;
    }

    .logo img {
        width: 106px;
        max-height: 42px;
    }

    .menu-topo {
        gap: 12px;
    }

    .menu-topo a {
        padding: 5.8px 3.5px;
        font-size: clamp(8.5px, 2.4vw, 11px);
        letter-spacing: -0.72px;
    }
}

/* Ajuste para celulares até 380px */
@media (max-width: 380px) {
    .header-container {
        padding: 0 4px;
        gap: 6px;
    }

    .logo img {
        width: 98px;
        max-height: 40px;
    }

    .menu-topo {
        gap: 10px;
    }

    .menu-topo a {
        padding: 5.5px 3px;
        font-size: clamp(8px, 2.25vw, 10px);
        letter-spacing: -0.78px;
    }
}

/* Ajuste para celulares muito estreitos */
@media (max-width: 340px) {
    .header-container {
        padding: 0 3px;
        gap: 5px;
    }

    .logo img {
        width: 90px;
        max-height: 38px;
    }

    .menu-topo {
        gap: 8px;
    }

    .menu-topo a {
        padding: 5px 2.6px;
        font-size: 7.8px;
        letter-spacing: -0.82px;
    }
        .btn-hero-download {
        width: 178px;
        min-height: 48px;
        padding: 7px 48px 7px 14px;
        bottom: -4px;
        border-radius: 0 15px 15px 0;
    }

    .btn-hero-text strong {
        font-size: 18px;
        letter-spacing: -0.4px;
    }

    .btn-hero-text small {
        font-size: 7px;
        margin-top: 1px;
    }

    .android-badge {
        right: 8px;
        width: 38px;
        height: 38px;
        min-width: 38px;
    }

    .android-boneco-btn {
        width: 38px;
        height: 38px;
    }
}

/* ================= SEGURANÇA - SELO OFICIAL MOBILE ================= */

.seguranca-texto {
    position: relative;

    padding: 18px 16px;
    border-radius: 18px;

    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.10) 0%,
            rgba(255, 255, 255, 0.035) 100%
        );

    border: 1px solid rgba(255, 255, 255, 0.20);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.seguranca-icone {
    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.18) 0%,
            rgba(255, 255, 255, 0.06) 100%
        );

    border: 1.5px solid rgba(255, 255, 255, 0.62);
    box-shadow:
        0 8px 18px rgba(0, 0, 0, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.seguranca-icone i {
    transform: translateY(1px);
}

.seguranca-conteudo h3 {
    position: relative;

    font-size: 18px;
    line-height: 1.12;
    font-weight: 900;
    letter-spacing: -0.25px;

    margin-bottom: 8px;
}

.seguranca-conteudo p {
    font-size: 13px;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.90);
}

@media (max-width: 420px) {
    .seguranca-texto {
        padding: 16px 14px;
        gap: 12px;
        align-items: center;
    }

    .seguranca-icone {
        width: 52px;
        height: 52px;
        min-width: 52px;
        border-radius: 15px;
        font-size: 23px;
    }

    .seguranca-conteudo {
        max-width: none;
    }

    .seguranca-conteudo h3 {
        font-size: 17px;
        margin-bottom: 7px;
    }

    .seguranca-conteudo p {
        font-size: 12.5px;
    }
}

@media (max-width: 340px) {
    .seguranca-texto {
        padding: 14px 12px;
        gap: 10px;
    }

    .seguranca-icone {
        width: 46px;
        height: 46px;
        min-width: 46px;
        font-size: 20px;
    }

    .seguranca-conteudo h3 {
        font-size: 15.5px;
    }

    .seguranca-conteudo p {
        font-size: 11.5px;
    }
}

/* ================= TEXTO ACIMA DOS BENEFÍCIOS ================= */

.beneficios-intro {
    font-family: 'Manrope', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.45;
    color: #20242c;
    max-width: 430px;
    margin: 0 auto 18px;
}

.beneficios-subtitulo {
    font-family: 'Manrope', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.45;
    color: #20242c;
    max-width: 430px;
    margin: 0 auto 44px;
}

@media (max-width: 420px) {
    .beneficios-intro {
        font-size: 15px;
        line-height: 1.4;
        margin-bottom: 16px;
    }

    .beneficios-subtitulo {
        font-size: 15px;
        line-height: 1.4;
        margin-bottom: 30px;
    }
}
