* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Manrope', Arial, sans-serif;
    background: #f4f4f4;
    color: #111827;
}

.page {
    max-width: 1120px;
    margin: 16px auto;
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 16px 45px rgba(0,0,0,0.10);
}

.header {
    padding: 24px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.logo {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    text-decoration: none;
}

.logo img {
    width: 150px;
    height: auto;
    display: block;
    margin: 0;
}

.menu {
    display: flex;
    gap: 22px;
}

.menu a {
    background: linear-gradient(180deg, #ef2330, #c40000);
    color: #fff;
    text-decoration: none;
    padding: 16px 34px;
    border-radius: 999px;
    font-size: 22px;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 18px rgba(214,0,18,0.22);
}

.content {
    padding: 28px 42px 24px;
}

.hero {
    display: grid;
    grid-template-columns: 0.52fr 0.48fr;
    gap: 14px;
    align-items: center;
}

h1 {
    font-size: 34px;
    line-height: 0.95;
    letter-spacing: -1.4px;
    font-weight: 900;
    margin-bottom: 10px;
}

.line {
    width: 88px;
    height: 4px;
    background: #d60012;
    margin-bottom: 10px;
}

.hero p {
    font-size: 13px;
    line-height: 1.22;
    color: #3b3f46;
    margin-bottom: 6px;
}

.bloco-imagem-sobre {
    width: 100%;
    min-height: 170px;
    background: transparent;
    border-radius: 0;
    padding: 0;

    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.imagem-sobre-app {
    width: 100%;
    max-width: 220px;
    height: auto;
    display: block;
    object-fit: contain;
}

.cards {
    margin-top: 12px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

.card {
    height: 82px;
    display: grid;
    grid-template-columns: 54px 1fr;
    align-items: center;
    gap: 10px;

    padding: 10px 12px;
    border-radius: 16px;
    border: 1px solid #eee;
    box-shadow: 0 5px 14px rgba(0,0,0,0.06);
}

.card-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 5px 12px rgba(0,0,0,0.07);

    display: flex;
    align-items: center;
    justify-content: center;

    color: #d60012;
    font-size: 22px;
    margin: 0 auto;
}

.card-content {
    border-left: 2px solid #e5e5e5;
    padding-left: 12px;
}

.card h3 {
    font-size: 16px;
    line-height: 1.08;
    font-weight: 900;
    margin-bottom: 3px;
}

.card p {
    font-size: 12.5px;
    line-height: 1.2;
    color: #333842;
}

.btn-main,
.btn-back {
    width: 88%;
    max-width: 360px;
    min-height: 56px;
    margin: 14px auto 0;
    border-radius: 18px;

    font-size: 20px;
    font-weight: 900;
    text-decoration: none;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    letter-spacing: -0.3px;
}

.btn-main {
    background: linear-gradient(180deg, #ff2633 0%, #b80000 100%);
    color: #ffffff;
    box-shadow: 0 10px 22px rgba(227, 6, 19, 0.24);
    border: 1px solid rgba(140, 0, 0, 0.28);
}

.btn-back {
    color: #d60012;
    background: #ffffff;
    border: 2px solid rgba(214, 0, 18, 0.85);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.05);
}

.security {
    margin-top: 18px;
    background: #fff;
    border-radius: 18px;
    padding: 18px 16px;

    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

    box-shadow: 0 8px 22px rgba(0,0,0,0.06);
}

.security-icon {
    width: 96px;
    height: 96px;
    margin: 0 auto 14px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.security h3 {
    font-size: 22px;
    line-height: 1.15;
    font-weight: 900;
    color: #111827;
    margin-bottom: 8px;
}

.security p {
    font-size: 14px;
    line-height: 1.35;
    color: #4b5563;
    max-width: 280px;
    margin: 0 auto;
}

.security .whatsapp {
    border-top: none;
}

.whatsapp {
    width: 86%;
    margin: 0 auto;
    padding-top: 4px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    background: transparent;
    color: #111827;
    text-decoration: none;

    border-top: 0;

    font-size: 13px;
    font-weight: 800;
}

.whatsapp i {
    font-size: 20px;
    color: #25d366;
}

.safe-text {
    margin-top: 10px;
    padding: 6px 8px 0;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;

    text-align: center;
    color: #6b7280;
    font-size: 11px;
    line-height: 1.15;
    font-weight: 700;
    white-space: nowrap;
}

.safe-text i {
    font-size: 10px;
    color: #6b7280;
    transform: translateY(-0.5px);
    line-height: 1;
}

@media (max-width: 768px) {
    .page {
        margin: 0;
        border-radius: 0;
    }

    .header {
        padding: 14px 10px;
        gap: 8px;
    }

    .logo img {
        width: 92px;
    }

    .menu {
        flex: 1;
        gap: 5px;
        justify-content: flex-end;
        padding-right: 6px;
    }

    .menu a {
        padding: 9px 10px;
        font-size: 11px;
        gap: 4px;
    }

    .content {
        padding: 28px 14px 24px;
    }

    .hero {
    grid-template-columns: 0.62fr 0.38fr;
    gap: 10px;
    align-items: center;
    }

    h1 {
    font-size: 34px;
}

.hero p {
    font-size: 13px;
    line-height: 1.3;
    margin-bottom: 8px;
}

.bloco-imagem-sobre {
    min-height: 170px;
    padding: 6px;
    border-radius: 16px;
}

.imagem-sobre-app {
    width: 135%;
    max-width: 260px;
    height: auto;
    display: block;
    object-fit: contain;
    transform: translateX(-14px);
}

    .card {
        height: 76px;
        grid-template-columns: 48px 1fr;
        gap: 8px;
        padding: 8px 10px;
    }

    .card-icon {
        width: 40px;
        height: 40px;
        font-size: 19px;
    }

    .card-content {
        padding-left: 10px;
    }

    .card h3 {
        font-size: 14px;
        line-height: 1.05;
        margin-bottom: 2px;
    }

    .card p {
        font-size: 11px;
        line-height: 1.15;
    }

    .btn-main,
    .btn-back {
        min-height: 58px;
        font-size: 21px;
    }

    .security {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 22px 18px;
    }

    .security-icon {
        margin: 0 auto;
    }

    .whatsapp {
        border-left: 0;
        border-top: 1px solid #b9c0ca;
        padding-left: 0;
        padding-top: 18px;
        justify-content: center;
    }

    .safe-text {
        font-size: 15px;
    }
}

.sobre-texto {
    max-width: 190px;
    text-align: left;
}

.security-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
}

.security-tags span {
    display: inline-flex;
    align-items: center;
    gap: 5px;

    padding: 7px 10px;
    border-radius: 999px;

    background: #f8fafc;
    color: #374151;

    font-size: 11px;
    font-weight: 800;
}

.security-tags i {
    color: #d60012;
    font-size: 10px;
}

.linha-whatsapp {
    width: 86%;
    height: 1px;
    background: #b9c0ca;
    margin: 10px auto 0px;
}

.security-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}