:root {
    /* Identidade DELAS */
    --wine: #64223a;
    --wine-dark: #4f192d;
    --wine-soft: #f3e7eb;

    --orange: #f04807;
    --orange-dark: #d94300;
    --orange-soft: #fbe9de;

    --cream: #fbf7f4;
    --cream-strong: #f4e9e5;
    --white: #ffffff;

    --text: #2b2024;
    --text-soft: #6b5c62;
    --line: #e8dce0;

    --shadow: 0 18px 45px rgba(79, 25, 45, 0.10);
    --shadow-card: 0 9px 24px rgba(79, 25, 45, 0.08);

    --radius: 24px;
    --radius-sm: 17px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--white);
    color: var(--text);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
}

svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.container {
    width: min(calc(100% - 30px), var(--container));
    margin-inline: auto;
}

/* =========================================================
   CABEÇALHO
   ========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(100, 34, 58, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(12px);
}

.site-header__inner {
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.brand {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
    text-decoration: none;
}

.brand__name {
    color: var(--white);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
    letter-spacing: 0.11em;
}

.brand__sub {
    margin-top: 4px;
    padding-left: 0.42em;
    color: rgba(255, 255, 255, 0.84);
    font-size: 8px;
    letter-spacing: 0.42em;
}

.login-link {
    max-width: 160px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.25;
    text-align: right;
    text-decoration: none;
}

/* =========================================================
   TIPOGRAFIA / BOTÕES
   ========================================================= */

.section-kicker {
    margin: 0 0 15px;
    color: var(--wine);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

h1,
h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
    letter-spacing: -0.035em;
}

h1 {
    margin: 0;
    font-size: clamp(42px, 13vw, 60px);
    line-height: 0.99;
}

h2 {
    margin: 0;
    font-size: clamp(35px, 10vw, 48px);
    line-height: 1.04;
}

p {
    margin-top: 0;
}

.button {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0 23px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-align: center;
    text-decoration: none;
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:active {
    transform: translateY(1px);
}

.button--primary {
    background: var(--orange);
    color: var(--white);
    box-shadow: 0 10px 25px rgba(216, 103, 13, 0.22);
}

.button--light {
    background: var(--white);
    color: var(--wine);
    box-shadow: var(--shadow-card);
}

.button--wide {
    width: 100%;
}

/* =========================================================
   HERO - MOBILE FIRST
   ========================================================= */

.hero {
    overflow: hidden;
    background:
        radial-gradient(circle at 100% 0%, rgba(100, 34, 58, 0.10), transparent 37%),
        linear-gradient(180deg, #fff 0%, #fbf6f7 100%);
}

.hero__grid {
    display: grid;
    gap: 38px;
    padding-top: 48px;
    padding-bottom: 44px;
}

.hero__text {
    margin-top: 25px;
    color: var(--text-soft);
    font-size: 16px;
    line-height: 1.7;
}

.hero__text p {
    margin-bottom: 17px;
}

.hero__copy .button {
    width: 100%;
    margin-top: 9px;
}

.hero__visual {
    position: relative;
    min-height: 345px;
    border: 1px solid #eadce1;
    border-radius: 30px;
    background:
        radial-gradient(circle at 68% 28%, rgba(255,255,255,.95), transparent 16%),
        linear-gradient(145deg, #f3e6ea 0%, #fcf8f8 52%, #ead9df 100%);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.hero__halo {
    position: absolute;
    border-radius: 999px;
    border: 1px solid rgba(100, 34, 58, 0.18);
}

.hero__halo--one {
    width: 250px;
    height: 250px;
    top: 35px;
    right: -72px;
}

.hero__halo--two {
    width: 150px;
    height: 150px;
    bottom: -28px;
    left: -38px;
}

.hero__feature {
    position: absolute;
    z-index: 3;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255,255,255,.75);
    border-radius: 18px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.83);
    box-shadow: 0 12px 32px rgba(61, 42, 29, 0.08);
    backdrop-filter: blur(7px);
}

.hero__feature--top {
    top: 24px;
    left: 22px;
}

.hero__feature--bottom {
    right: 22px;
    bottom: 24px;
}

.hero__feature-number {
    color: var(--orange);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 40px;
    line-height: 0.95;
}

.hero__feature-label {
    margin-top: 5px;
    color: var(--text-soft);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero__jewel {
    position: absolute;
    border: 5px solid rgba(216, 103, 13, 0.42);
    filter: drop-shadow(0 14px 14px rgba(84, 49, 25, 0.11));
}

.hero__jewel--ring {
    width: 116px;
    height: 116px;
    top: 110px;
    left: calc(50% - 58px);
    border-radius: 50%;
}

.hero__jewel--ring::after {
    content: "";
    position: absolute;
    width: 36px;
    height: 36px;
    top: -25px;
    left: 34px;
    border: 4px solid rgba(216, 103, 13, 0.55);
    transform: rotate(45deg);
    background: rgba(255,255,255,.45);
}

.hero__jewel--chain {
    width: 145px;
    height: 70px;
    right: 31px;
    top: 137px;
    border-width: 4px;
    border-radius: 50%;
    transform: rotate(-22deg);
}

/* =========================================================
   SEÇÕES GERAIS
   ========================================================= */

.section {
    padding: 64px 0;
}

.section--white {
    background: var(--white);
}

.section--light {
    background: var(--cream);
}

.section--soft {
    background: #f8f2f4;
}

.section--orange {
    background:
        radial-gradient(circle at 100% 0%, rgba(255,255,255,.10), transparent 28%),
        var(--wine);
    color: var(--white);
}

.section-heading {
    margin-bottom: 34px;
}

.section-heading--narrow {
    max-width: 720px;
}

.section-heading--light h2 {
    color: var(--white);
}

.simple-grid {
    display: grid;
    gap: 14px;
}

.simple-card {
    min-height: 132px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 20px;
    background: var(--white);
    box-shadow: var(--shadow-card);
}

.simple-card__icon {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: var(--orange-soft);
    color: var(--orange);
    font-size: 12px;
    font-weight: 900;
}

.simple-card p {
    margin: 17px 0 0;
    color: #3f3733;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.45;
}

.prose {
    margin-top: 35px;
    color: var(--text-soft);
    font-size: 17px;
    line-height: 1.72;
}

.prose p:last-child {
    margin-bottom: 0;
}

.prose--wide {
    max-width: 900px;
}

/* =========================================================
   COMISSÕES
   ========================================================= */

.commission-grid {
    display: grid;
    gap: 16px;
}

.commission-card {
    border-radius: var(--radius);
    padding: 27px 24px;
    background: var(--cream);
    color: var(--text);
    box-shadow: var(--shadow-card);
}

.commission-card__value {
    color: var(--orange);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 62px;
    line-height: 0.9;
}

.commission-card p {
    margin: 18px 0 0;
    color: #5c524c;
    font-size: 16px;
    line-height: 1.65;
}

.commission-summary {
    max-width: 760px;
    margin: 31px auto 0;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.45;
    text-align: center;
}

.section-cta {
    margin-top: 29px;
    text-align: center;
}

.section-cta .button {
    width: 100%;
}

/* =========================================================
   PRODUTO / DELAS CUIDA DO RESTO
   ========================================================= */

.content-split {
    display: grid;
    gap: 30px;
}

.content-split__copy {
    color: var(--text-soft);
    font-size: 17px;
    line-height: 1.75;
}

.lead-line {
    color: var(--text);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 29px;
    line-height: 1.25;
}

.trust-panel {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 27px;
    background: var(--cream);
    box-shadow: var(--shadow-card);
}

.trust-panel__badge {
    display: inline-flex;
    min-width: 78px;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--orange);
    color: var(--white);
    font-family: Georgia, "Times New Roman", serif;
    letter-spacing: 0.08em;
}

.trust-panel__lines {
    display: grid;
    gap: 12px;
    margin-top: 23px;
}

.trust-panel__lines span {
    border-bottom: 1px solid var(--line);
    padding-bottom: 12px;
    color: #4b423d;
    font-size: 15px;
    font-weight: 700;
}

.trust-panel__lines span:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.care-block {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 18px;
    margin-top: 34px;
    border-radius: var(--radius);
    padding: 24px;
    background: #2b2522;
    color: var(--white);
}

.care-block__icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    padding: 14px;
    background: var(--orange);
}

.care-block p {
    margin-bottom: 12px;
    color: rgba(255,255,255,.76);
}

.care-block__lead {
    color: var(--white) !important;
    font-size: 18px;
    font-weight: 800;
}

/* =========================================================
   COMO FUNCIONA
   ========================================================= */

.steps {
    display: grid;
    gap: 18px;
}

.step-card {
    position: relative;
    border-radius: var(--radius);
    padding: 30px 24px 26px;
    background: var(--cream);
    color: var(--text);
    box-shadow: var(--shadow-card);
}

.step-card__number {
    position: absolute;
    top: -15px;
    left: -7px;
    display: inline-flex;
    width: 53px;
    height: 53px;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--orange);
    border-radius: 50%;
    background: var(--white);
    color: var(--orange);
    font-weight: 900;
    box-shadow: var(--shadow-card);
}

.step-card__icon {
    width: 57px;
    height: 57px;
    margin-left: 17px;
    border-radius: 16px;
    padding: 14px;
    background: var(--orange-soft);
    color: var(--orange);
}

.step-card h3 {
    margin: 26px 0 13px;
    font-size: 22px;
}

.step-card p {
    margin: 0;
    color: #706761;
    font-size: 16px;
    line-height: 1.65;
}

.how-it-works__footer {
    margin-top: 31px;
    color: rgba(255,255,255,.9);
    font-size: 17px;
    text-align: center;
}

.how-it-works__footer p {
    margin-bottom: 5px;
}

/* =========================================================
   AUDIÊNCIA / RECOMENDAÇÃO
   ========================================================= */

.audience__intro {
    max-width: 850px;
}

.audience__intro p {
    margin: 20px 0 26px;
    color: var(--text-soft);
    font-size: 18px;
    line-height: 1.65;
}

.audience__intro .button {
    width: 100%;
}

.quote-card {
    position: relative;
    margin-top: 39px;
    border: 1px solid #efd7c5;
    border-radius: var(--radius);
    padding: 29px 24px;
    background: var(--cream);
}

.quote-card::before {
    content: "“";
    position: absolute;
    top: -31px;
    left: 17px;
    color: rgba(100, 34, 58, 0.16);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 110px;
    line-height: 1;
}

.quote-card p {
    position: relative;
    z-index: 1;
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
    line-height: 1.45;
}

/* =========================================================
   BENEFÍCIOS
   ========================================================= */

.benefits-list {
    display: grid;
    gap: 11px;
}

.benefit-row {
    display: grid;
    grid-template-columns: 37px 1fr;
    align-items: center;
    gap: 12px;
    min-height: 66px;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 13px 15px;
    background: var(--white);
    box-shadow: 0 4px 16px rgba(65, 43, 29, 0.04);
    font-size: 15px;
    font-weight: 650;
}

.benefit-row__check {
    display: inline-flex;
    width: 37px;
    height: 37px;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--orange);
    border-radius: 50%;
    color: var(--orange);
    font-weight: 900;
}

/* =========================================================
   CTA FINAL
   ========================================================= */

.final-cta {
    padding: 58px 0 66px;
    background:
        radial-gradient(circle at 15% 20%, rgba(255,255,255,.10), transparent 23%),
        var(--wine);
    color: var(--white);
}

.final-cta__inner {
    text-align: center;
}

.final-cta__inner p {
    max-width: 780px;
    margin: 25px auto 0;
    color: rgba(255,255,255,.91);
    font-size: 17px;
    line-height: 1.7;
}

/* =========================================================
   TABLET
   ========================================================= */

@media (min-width: 700px) {
    .container {
        width: min(calc(100% - 52px), var(--container));
    }

    .site-header__inner {
        min-height: 78px;
    }

    .brand__name {
        font-size: 29px;
    }

    .login-link {
        max-width: none;
        font-size: 14px;
    }

    .hero__grid {
        grid-template-columns: minmax(0, 1fr) minmax(310px, .75fr);
        align-items: center;
        gap: 48px;
        padding-top: 65px;
        padding-bottom: 62px;
    }

    h1 {
        font-size: clamp(50px, 7.2vw, 74px);
    }

    h2 {
        font-size: clamp(40px, 5vw, 56px);
    }

    .hero__copy .button,
    .section-cta .button,
    .audience__intro .button {
        width: auto;
    }

    .hero__visual {
        min-height: 430px;
    }

    .section {
        padding: 82px 0;
    }

    .simple-grid--four {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .commission-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .content-split {
        grid-template-columns: minmax(0, 1.15fr) minmax(290px, .85fr);
        align-items: center;
        gap: 56px;
    }

    .care-block {
        grid-template-columns: 70px 1fr;
        padding: 31px;
    }

    .care-block__icon {
        width: 70px;
        height: 70px;
        padding: 18px;
    }

    .steps {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .step-card {
        min-height: 330px;
    }

    .benefits-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .button--wide {
        width: auto;
        min-width: 360px;
    }
}

/* =========================================================
   DESKTOP
   ========================================================= */

@media (min-width: 1050px) {
    .hero__grid {
        grid-template-columns: minmax(0, 1.05fr) minmax(390px, .8fr);
        gap: 76px;
        padding-top: 84px;
        padding-bottom: 80px;
    }

    .hero__text {
        max-width: 680px;
        font-size: 18px;
    }

    .hero__visual {
        min-height: 500px;
    }

    .simple-grid--four {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .simple-card {
        min-height: 180px;
        padding: 26px;
    }

    .prose--centered {
        max-width: 900px;
        margin-inline: auto;
        text-align: center;
    }

    .commission-card {
        padding: 38px;
    }

    .commission-card__value {
        font-size: 76px;
    }

    .quote-card {
        padding: 43px 48px;
    }

    .quote-card p {
        font-size: 31px;
    }

    .benefits-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px 18px;
    }

    .final-cta {
        padding: 78px 0 86px;
    }
}


/* Ajustes finais para manter o conteúdo textual fiel ao Word */
.hero__jewel--bracelet {
    width: 175px;
    height: 88px;
    left: 28px;
    bottom: 48px;
    border-width: 4px;
    border-radius: 50%;
    transform: rotate(18deg);
    opacity: .62;
}

.trust-panel {
    position: relative;
    min-height: 310px;
    overflow: hidden;
    background:
        radial-gradient(circle at 70% 25%, rgba(255,255,255,.94), transparent 18%),
        linear-gradient(145deg, #f1e3e8 0%, #fcf8f8 54%, #ead8df 100%);
}

.trust-panel__jewel {
    position: absolute;
    border: 5px solid rgba(216, 103, 13, .42);
    filter: drop-shadow(0 15px 18px rgba(82, 48, 26, .12));
}

.trust-panel__jewel--one {
    width: 112px;
    height: 112px;
    top: 55px;
    left: 50%;
    margin-left: -56px;
    border-radius: 50%;
}

.trust-panel__jewel--one::after {
    content: "";
    position: absolute;
    width: 34px;
    height: 34px;
    top: -24px;
    left: 34px;
    border: 4px solid rgba(216, 103, 13, .52);
    background: rgba(255,255,255,.5);
    transform: rotate(45deg);
}

.trust-panel__jewel--two {
    width: 170px;
    height: 76px;
    right: -20px;
    bottom: 38px;
    border-width: 4px;
    border-radius: 50%;
    transform: rotate(-18deg);
}

.trust-panel__jewel--three {
    width: 130px;
    height: 65px;
    left: -18px;
    bottom: 25px;
    border-width: 4px;
    border-radius: 50%;
    transform: rotate(24deg);
    opacity: .58;
}

.benefit-row {
    display: flex;
    align-items: center;
}

.benefit-row__text {
    color: #403833;
    line-height: 1.45;
}

.benefit-row__text::first-letter {
    color: var(--orange);
    font-weight: 900;
}


/* =========================================================
   REFINOS DA IDENTIDADE DELAS
   ========================================================= */

.login-link:hover {
    color: var(--white);
}

.button--primary:hover {
    background: var(--orange-dark);
}

.section--orange .section-kicker,
.final-cta .section-kicker {
    color: var(--white);
}

.section--orange .commission-summary,
.section--orange .how-it-works__footer {
    color: rgba(255, 255, 255, 0.92);
}

.simple-card__icon,
.step-card__icon {
    background: var(--wine-soft);
    color: var(--wine);
}

.step-card__number {
    border-color: var(--orange);
    color: var(--orange);
}

.benefit-row__text::first-letter {
    color: var(--orange);
}

::selection {
    background: var(--wine);
    color: var(--white);
}
