:root { 
    --purple: #32105c;
    --violet: #5d2eb2;
    --coral: #f04a73;
    --orange: #ff984e;
    --ink: #281244;
    --muted: #6d6678;
    --line: #ddd6eb;
    --tint: #f8f6ff;
    --white: #fff
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    color: var(--ink);
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    line-height: 1.65;
    background: #fff
}

h1,
h2,
h3,
p {
    margin-top: 0
}

h1,
h2,
h3 {
    font-family: "Playfair Display", serif
}

a {
    color: inherit;
    text-decoration: none
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--orange);
    outline-offset: 3px
}

.wrap {
    width: min(960px, calc(100% - 40px));
    margin: auto
}

.header {
    height: 82px;
    background: rgba(255, 255, 255, .94);
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(15px)
}

.nav {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 36px
}

.brand {
    width: 145px;
    height: 54px;
    overflow: hidden;
    position: relative;
    display: block
}

.brand img {
    width: 180px;
    max-width: none;
    position: absolute;
    left: -24px;
    top: -43px
}

.links {
    display: flex;
    gap: 24px;
    margin-left: auto;
    font-size: 14px;
    font-weight: 500
}

.links a {
    transition: .2s
}

.links a:hover {
    color: var(--coral)
}

.links a.active {
    color: var(--purple);
    font-weight: 700
}

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: var(--purple);
    color: #fff;
    border: 0;
    border-radius: 28px;
    padding: 14px 25px;
    font-weight: 600;
    min-height: 44px;
    font-size: 14px;
    box-shadow: 0 7px 16px rgba(50, 16, 92, .18);
    cursor: pointer
}

.btn:disabled {
    opacity: .6;
    cursor: not-allowed;
    box-shadow: none
}

.btn-small {
    padding: 10px 22px;
    white-space: nowrap
}

.menu {
    display: none
}

.hero {
    min-height: 670px;
    background: radial-gradient(circle at 79% 30%, #ffebe8 0, transparent 36%), radial-gradient(circle at 67% 65%, #eee8ff 0, transparent 36%)
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 72px;
    padding: 78px 0 75px
}

.pill {
    border: 1px solid #ded6ed;
    border-radius: 20px;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 600
}

.hero h1 {
    font-size: clamp(46px, 5vw, 54px);
    line-height: 1.08;
    margin: 22px 0;
    color: #291242
}

.hero h1 span {
    background: linear-gradient(90deg, var(--coral), var(--orange));
    background-clip: text;
    color: transparent
}

.hero-copy>p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
    max-width: 520px
}

.hero-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 24px 0
}

.hero-points span {
    font-size: 14px;
    line-height: 1.45
}

.hero-points b,
.hero-points small {
    display: block;
    margin-left: 18px
}

.hero-points small {
    color: var(--muted);
    font-size: 13px
}

.actions {
    display: flex;
    gap: 12px
}

.ghost {
    color: var(--ink);
    background: white;
    border: 1px solid var(--line);
    box-shadow: none
}

.hero-logo {
    display: block;
    width: 220px;
    max-width: 100%;
    height: auto;
    margin-bottom: 22px
}

.hero-art {
    height: 520px;
    border-radius: 34px;
    position: relative;
    background: rgba(255, 255, 255, .63);
    box-shadow: inset 0 0 80px rgba(255, 255, 255, .75);
    overflow: hidden
}

.hero-art img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block
}

.art-note {
    position: absolute;
    bottom: -22px;
    left: 25px;
    background: #fff;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 14px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 22px rgba(31, 17, 50, .15);
    font-size: 13px
}

.art-note b {
    background: linear-gradient(135deg, var(--violet), var(--coral));
    color: white;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: grid;
    place-items: center
}

.art-note strong {
    font-weight: 500
}

.section {
    padding: 90px 0
}

.tinted {
    background: var(--tint)
}

.heading {
    text-align: center;
    margin-bottom: 46px
}

.heading span {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #7452ca;
    font-weight: 700
}

.heading h2 {
    font-size: clamp(32px, 3.5vw, 38px);
    line-height: 1.15;
    margin: 14px 0
}

.heading p {
    color: var(--muted)
}

.cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px
}

.cards article,
.mini-cards article {
    background: white;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 22px;
    min-height: 195px;
    box-shadow: 0 2px 3px rgba(39, 22, 69, .05)
}

.cards article.active {
    background: linear-gradient(145deg, #351065, #6535b9);
    color: white
}

.cards i,
.mini-cards i {
    font-style: normal;
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: #f0ebfa;
    color: #5b2c9d;
    margin-bottom: 24px
}

.cards .active i {
    background: #6a41a6;
    color: white
}

.cards h3,
.mini-cards h3 {
    font-size: 17px;
    line-height: 1.3;
    margin-bottom: 8px
}

.cards p,
.mini-cards p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--muted)
}

.cards .active p {
    color: #eee8fa
}

.security {
    background: white;
    border: 1px solid var(--line);
    border-radius: 14px;
    margin-top: 70px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 15px
}

.security small {
    display: block;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
    margin-left: 25px
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: relative;
    gap: 20px
}

.steps:before {
    content: "";
    position: absolute;
    top: 20px;
    left: 6%;
    right: 6%;
    height: 1px;
    background: linear-gradient(90deg, #6934b6, #f06788, #f0a34b)
}

.steps article {
    position: relative
}

.steps i {
    width: 40px;
    height: 40px;
    border: 1px solid #ded3f2;
    background: white;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-style: normal;
    position: relative
}

.steps b {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #7147bf;
    display: block;
    margin: 22px 0 8px
}

.steps h3 {
    font-size: 17px;
    line-height: 1.3
}

.steps p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--muted)
}

.stats {
    background: linear-gradient(105deg, #2b0c4c, #6a3dcc);
    color: white;
    padding: 70px 0
}

.stats .wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center
}

.stats strong {
    font: 700 38px "Playfair Display";
    display: block
}

.stats span {
    font-size: 15px;
    color: #e4dbf4
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 85px;
    align-items: center
}

.heading.left {
    text-align: left;
    margin-bottom: 20px
}

.trust-grid>div>p {
    color: var(--muted);
    max-width: 460px
}

.mini-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px
}

.mini-cards article {
    min-height: 150px;
    padding: 18px
}

.mini-cards i {
    margin-bottom: 12px;
    width: 32px;
    height: 32px
}

.price-box {
    width: min(710px, 100%);
    margin: auto;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 14px 30px rgba(38, 18, 66, .16)
}

.price {
    background: linear-gradient(145deg, #2e0d50, #6738bf);
    color: white;
    padding: 38px 34px;
    display: flex;
    flex-direction: column
}

.price>small:first-child {
    text-transform: uppercase;
    letter-spacing: 2px
}

.price div {
    font: 700 39px "Playfair Display";
    margin: 15px 0 0
}

.price sup {
    font-size: 22px
}

.price em {
    font: 400 14px "DM Sans"
}

.price p,
.price small {
    font-size: 13px;
    line-height: 1.55;
    color: #e2d8f2
}

.price .white {
    margin: 18px 0 12px
}

.white {
    background: white;
    color: var(--purple)
}

.included {
    padding: 38px 30px
}

.included h3 {
    font-size: 18px
}

.included ul {
    list-style: none;
    padding: 0;
    margin: 20px 0 0
}

.included li {
    font-size: 15px;
    line-height: 1.55;
    color: var(--muted);
    margin: 10px 0;
    padding-left: 20px
}

.included li:before {
    content: "✓";
    color: #7e59c9;
    margin-left: -20px;
    margin-right: 10px
}

.partner-list {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px
}

.partner-list span {
    border: 1px solid var(--line);
    border-radius: 12px;
    min-height: 90px;
    display: grid;
    place-items: center;
    text-align: center;
    font-size: 20px
}

.partner-list b {
    display: block;
    font: 500 14px/1.4 "DM Sans"
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px
}

.testimonials article {
    background: white;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 28px;
    min-height: 245px
}

.testimonials i {
    font: 34px serif;
    color: var(--coral)
}

.testimonials p {
    color: #4c4457;
    font-size: 16px;
    line-height: 1.65;
    min-height: 100px
}

.testimonials b {
    font: 600 14px/1.4 "DM Sans";
    display: flex;
    align-items: center;
    gap: 10px
}

.testimonials b span {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6e35ba, #e84882);
    color: #fff;
    display: grid;
    place-items: center
}

.testimonials small {
    display: block;
    font-size: 13px;
    font-weight: 400;
    color: var(--muted)
}

.disclaimer {
    text-align: center;
    font-size: 13px;
    color: var(--muted);
    margin: 25px
}

.faq-filters {
    max-width: 960px;
    margin: 0 auto 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center
}

.faq-filter {
    border: 1px solid var(--line);
    background: white;
    color: var(--muted);
    border-radius: 20px;
    min-height: 44px;
    padding: 10px 18px;
    font: 600 14px "DM Sans";
    cursor: pointer;
    transition: .2s
}

.faq-filter:hover {
    border-color: #b9a8e0
}

.faq-filter.active {
    background: var(--purple);
    color: white;
    border-color: var(--purple)
}

.accordion {
    max-width: 960px;
    margin: auto;
    border: 1px solid var(--line);
    border-radius: 15px;
    overflow: hidden
}

.faq-group-title {
    padding: 16px 20px 8px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #7452ca;
    background: var(--tint)
}

.faq-group:first-child .faq-group-title {
    padding-top: 18px
}

.faq-item {
    border-bottom: 1px solid var(--line)
}

.faq-group:last-child .faq-item:last-child {
    border-bottom: 0
}

.faq-group.hidden,
.faq-item.hidden {
    display: none
}

.faq-item button {
    width: 100%;
    border: 0;
    background: white;
    text-align: left;
    padding: 17px 20px;
    color: var(--ink);
    font: 600 16px/1.5 "DM Sans";
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    cursor: pointer
}

.faq-item p {
    display: none;
    padding: 0 20px 17px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.65;
    margin: 0
}

.faq-item.open p {
    display: block
}

.emergency-section {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line)
}

.emergency-subhead {
    text-align: center;
    font-size: 20px;
    margin-bottom: 26px
}

.emergency-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

.emergency-card {
    background: #f0ebfa;
    border-radius: 20px;
    padding: 34px 26px;
    text-align: center
}

.emergency-card.danger {
    background: #fceceb
}

.emergency-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .65);
    display: grid;
    place-items: center;
    margin: 0 auto 20px;
    color: #5b2c9d
}

.emergency-card.danger .emergency-icon {
    color: #d3453f
}

.emergency-icon svg {
    width: 28px;
    height: 28px
}

.emergency-card h4 {
    font-family: "DM Sans";
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 16px;
    min-height: 40px
}

.emergency-number {
    display: block;
    font: 700 42px "Playfair Display";
    color: var(--ink);
    margin-bottom: 16px
}

.emergency-card.danger .emergency-number {
    color: #d3453f
}

.emergency-card p {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 24px;
    min-height: 44px
}

.emergency-call {
    width: 100%
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center
}

.contact-grid>div>p {
    color: var(--muted);
    max-width: 400px
}

.contact-info {
    color: var(--ink) !important;
    font-size: 15px
}

form {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 5px 15px rgba(50, 30, 75, .04)
}

label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 14px
}

input,
textarea {
    display: block;
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 9px;
    margin-top: 7px;
    padding: 13px;
    font: 16px/1.5 "DM Sans";
    outline: none
}

input:focus,
textarea:focus {
    border-color: #805dc7
}

textarea {
    height: 90px;
    resize: vertical
}

form .btn {
    width: 100%
}

.form-status {
    margin: 10px 0 0;
    text-align: center;
    color: #4a8d5a;
    font-size: 14px
}

.final-cta {
    background: linear-gradient(105deg, #2e0d50, #7044ca);
    color: #fff;
    text-align: center;
    padding: 75px 0
}

.final-cta h2 {
    font-size: clamp(36px, 4vw, 44px);
    line-height: 1.15;
    margin-bottom: 14px
}

.final-cta p {
    font-size: 16px;
    line-height: 1.65;
    color: #e7def2;
    margin-bottom: 25px
}

footer {
    background: #f7f5fc;
    padding: 55px 0 20px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr .8fr 1fr .7fr;
    gap: 60px
}

.footer-grid h3 {
    font-size: 15px
}

.footer-grid p,
.footer-grid a {
    font-size: 14px;
    line-height: 1.55;
    color: var(--muted);
    display: block;
    margin-bottom: 10px
}

.footer-brand {
    height: 45px;
    margin-bottom: 10px
}

.footer-brand img {
    top: -36px;
    width: 155px;
    left: -20px
}

.social {
    margin-top: 20px
}

.copyright {
    border-top: 1px solid #e5e0ee;
    margin-top: 35px;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    line-height: 1.55;
    color: #70687c
}

.quick-exit {
    position: fixed;
    top: 96px;
    right: 14px;
    z-index: 50;
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--ink);
    color: #fff;
    border-radius: 20px;
    padding: 8px 16px;
    font: 600 12px "DM Sans";
    text-decoration: none;
    box-shadow: 0 6px 16px rgba(0, 0, 0, .25)
}

.quick-exit:hover {
    background: #000
}

.skip-link {
    position: absolute;
    top: -60px;
    left: 14px;
    z-index: 60;
    background: var(--purple);
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    font: 600 13px "DM Sans";
    text-decoration: none;
    transition: top .2s
}

.skip-link:focus {
    top: 14px
}

.back-to-top {
    position: fixed;
    right: 18px;
    bottom: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--purple);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    text-decoration: none;
    box-shadow: 0 8px 18px rgba(50, 16, 92, .28);
    z-index: 30
}

.back-to-top:hover {
    background: var(--violet)
}

.consent {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 11px;
    font-weight: 400;
    color: var(--muted);
    line-height: 1.4
}

.consent input {
    width: auto;
    margin: 2px 0 0;
    flex-shrink: 0
}

.consent a {
    color: var(--purple);
    text-decoration: underline
}

.reveal {
    animation: appear .7s ease both
}

@keyframes appear {
    from {
        opacity: 0;
        transform: translateY(16px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

@media(max-width:920px) {
    .links {
        position: absolute;
        top: 78px;
        left: 20px;
        right: 20px;
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 16px;
        padding: 18px;
        display: none;
        flex-direction: column;
        gap: 15px;
        box-shadow: 0 15px 25px rgba(30, 10, 50, .12)
    }

    .links.open {
        display: flex
    }

    .menu {
        display: flex;
        margin-left: auto;
        width: 44px;
        height: 44px;
        border: 0;
        background: none;
        flex-direction: column;
        justify-content: center;
        gap: 5px
    }

    .menu span {
        height: 2px;
        background: var(--purple);
        width: 22px
    }

    .nav {
        gap: 14px
    }

    .hero-grid {
        grid-template-columns: 1fr;
        padding-top: 18px
    }

    .hero-art {
        height: 440px
    }

    .cards {
        grid-template-columns: repeat(2, 1fr)
    }

    .coverage article:last-child {
        grid-column: auto
    }

    .steps {
        grid-template-columns: repeat(2, 1fr)
    }

    .stats .wrap {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px
    }

    .trust-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 45px
    }

    .partner-list {
        grid-template-columns: repeat(3, 1fr)
    }

    .emergency-cards {
        grid-template-columns: 1fr 1fr
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:560px) {
    .wrap {
        width: min(100% - 28px, 960px)
    }

    .brand {
        width: 120px
    }

    .brand img {
        width: 155px;
        left: -22px;
        top: -37px
    }

    .nav {
        gap: 8px
    }

    .btn-small {
        padding: 9px 14px;
        font-size: 12px
    }

    .hero-grid {
        gap: 35px
    }

    .hero h1 {
        font-size: clamp(36px, 11vw, 40px);
        line-height: 1.1
    }

    .hero-points {
        grid-template-columns: 1fr
    }

    .actions {
        flex-direction: column
    }

    .hero-art {
        height: 370px
    }

    .orb {
        width: 250px;
        height: 250px
    }

    .hero-art svg {
        width: 180px;
        top: 60px
    }

    .section {
        padding: 65px 0
    }

    .heading h2 {
        font-size: clamp(28px, 8vw, 30px);
        line-height: 1.2
    }

    .heading h2 br {
        display: none
    }

    .cards,
    .mini-cards,
    .testimonials {
        grid-template-columns: 1fr
    }

    .cards article {
        min-height: auto
    }

    .security {
        align-items: flex-start;
        gap: 15px;
        flex-direction: column
    }

    .steps {
        grid-template-columns: 1fr
    }

    .steps:before {
        display: none
    }

    .stats strong {
        font-size: 30px
    }

    .price-box {
        grid-template-columns: 1fr
    }

    .partner-list {
        grid-template-columns: repeat(2, 1fr)
    }

    .emergency-cards {
        grid-template-columns: 1fr;
        gap: 16px
    }

    .contact-grid {
        gap: 25px
    }

    .footer-grid {
        grid-template-columns: 1fr
    }

    .copyright {
        flex-direction: column;
        gap: 10px
    }
}

/* O arquivo original inclui slogans; este recorte preserva o símbolo e o nome usados no cabeçalho. */
.brand {
    overflow: visible;
    display: flex;
    align-items: center
}

.brand img {
    position: static;
    width: 138px;
    height: auto;
    max-width: 100%
}

.footer-brand img {
    position: static;
    width: 138px
}

@media(max-width:560px) {
    .brand img {
        position: static;
        width: 118px
    }
}
