﻿*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --mint: #F0FAF4;
    --mint-mid: #D6F0E0;
    --green-soft: #B8E4C8;
    --green: #1E9952;
    --green-mid: #178044;
    --green-dark: #0D5530;
    --forest: #072E1A;
    --lime: #7EC63A;
    --lime-light: #F2FAE8;
    --gold: #E8A020;
    --ouro: #a47e36;
    --gold-light: #FFF7E0;
    --red-light: #FFF0F0;
    --red: #D94F4F;
    --gray-text: #3D5249;
    --gray-light: #F5FAF7;
    --white: #FFFFFF;
    --branco: #ffffff;
    --shadow-sm: 0 2px 12px rgba(30,153,82,0.08);
    --shadow-md: 0 8px 32px rgba(30,153,82,0.14);
    --shadow-lg: 0 20px 60px rgba(30,153,82,0.2);
    color-scheme: light;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--forest);
    background: var(--white);
    overflow-x: hidden;
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 6%;
    background: rgba(255,255,255,0.93);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(30,153,82,0.09);
}

.logo {
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: 1.45rem;
    color: var(--forest);
    letter-spacing: -0.5px;
}

    .logo span {
        color: var(--green);
    }

    .logo .dot {
        color: var(--lime);
    }

nav a.btn-nav {
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    background: var(--green);
    color: white;
    padding: 10px 22px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
}

    nav a.btn-nav:hover {
        background: var(--green-dark);
        transform: translateY(-1px);
    }

/* HERO */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 6% 80px;
    background: linear-gradient(140deg, #EDF8F1 0%, #F5FAF7 45%, #FAFFF9 100%);
    position: relative;
    overflow: hidden;
}

    .hero::before {
        content: '';
        position: absolute;
        top: -140px;
        right: -100px;
        width: 700px;
        height: 700px;
        background: radial-gradient(circle, rgba(30,153,82,0.11) 0%, transparent 68%);
        border-radius: 50%;
    }

    .hero::after {
        content: '';
        position: absolute;
        bottom: -100px;
        left: -80px;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(126,198,58,0.1) 0%, transparent 68%);
        border-radius: 50%;
    }

.road-deco {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: repeating-linear-gradient(90deg, var(--green) 0, var(--green) 60px, transparent 60px, transparent 90px);
    opacity: 0.12;
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--lime-light);
    border: 1px solid rgba(126,198,58,0.35);
    color: #4A7A18;
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: 0.78rem;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 24px;
    letter-spacing: 0.3px;
}

h1 {
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 3.5vw, 3rem);
    line-height: 1.2;
    color: var(--forest);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

    h1 em {
        font-style: normal;
        color: var(--green);
        position: relative;
    }

        h1 em::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -2px;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--green), var(--lime));
            border-radius: 2px;
        }

.hero-sub {
    font-size: 1.08rem;
    line-height: 1.75;
    color: var(--gray-text);
    margin-bottom: 36px;
    max-width: 500px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--green);
    color: white;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    padding: 16px 32px;
    border-radius: 10px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 6px 24px rgba(30,153,82,0.35);
    transition: all 0.22s;
}

    .btn-primary:hover {
        background: var(--green-dark);
        transform: translateY(-2px);
        box-shadow: 0 10px 32px rgba(30,153,82,0.42);
    }

/* Phone mockup */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.phone-mockup {
    width: 260px;
    background: white;
    border-radius: 28px;
    box-shadow: var(--shadow-lg), 0 0 0 8px rgba(30,153,82,0.07);
    overflow: hidden;
    position: relative;
    z-index: 2;
    transform: rotate(2deg);
    animation: float 5s ease-in-out infinite;
}

@keyframes float {
    0%,100% {
        transform: rotate(2deg) translateY(0);
    }

    50% {
        transform: rotate(2deg) translateY(-10px);
    }
}

.phone-top {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
    padding: 20px 18px 16px;
    color: white;
}

.phone-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.phone-title {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 0.82rem;
}

.phone-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.phone-balance-label {
    font-size: 0.7rem;
    opacity: 0.75;
    margin-bottom: 3px;
}

.phone-balance {
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: 1.6rem;
}

.phone-body {
    padding: 14px 16px;
}

.phone-section-title {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 0.72rem;
    color: var(--gray-text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.phone-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 0;
    border-bottom: 1px solid var(--mint);
    font-size: 0.78rem;
}

    .phone-item:last-child {
        border-bottom: none;
    }

.phone-item-label {
    color: var(--gray-text);
    display: flex;
    align-items: center;
    gap: 6px;
}

.dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
}

.dot-green {
    background: var(--green);
}

.dot-red {
    background: var(--red);
}

.dot-gold {
    background: var(--gold);
}

.phone-item-val {
    font-family: 'Sora', sans-serif;
    font-weight: 600;
}

.val-green {
    color: var(--green);
}

.val-red {
    color: var(--red);
}

.val-gold {
    color: var(--gold);
}

.badge-float {
    position: absolute;
    background: white;
    border-radius: 14px;
    box-shadow: var(--shadow-md);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Sora', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    z-index: 3;
}

.bf-1 {
    top: 10%;
    right: -30px;
}

.bf-2 {
    bottom: 15%;
    left: -35px;
}

/* PAIN */
.pain {
    background: linear-gradient(135deg, var(--forest) 0%, #0D3D20 100%);
    padding: 100px 6%;
    position: relative;
    overflow: hidden;
}

    .pain::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(ellipse at 80% 50%, rgba(30,153,82,0.18) 0%, transparent 60%);
    }

    .pain::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--green), var(--lime), var(--green));
    }

.pain-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.section-tag {
    display: inline-block;
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.tag-lime {
    background: rgba(126,198,58,0.15);
    color: var(--lime);
    border: 1px solid rgba(126,198,58,0.3);
}

.tag-green {
    background: rgba(30,153,82,0.12);
    color: var(--green);
    border: 1px solid rgba(30,153,82,0.3);
}

.pain h2 {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: white;
    line-height: 1.3;
    margin-bottom: 28px;
}

.pain-text {
    font-size: 1.1rem;
    line-height: 1.85;
    color: rgba(255,255,255,0.68);
    max-width: 680px;
    margin: 0 auto 40px;
}

    .pain-text strong {
        color: rgba(255,255,255,0.95);
        font-weight: 500;
    }

.pain-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    margin-top: 48px;
}

.stat {
    text-align: center;
}

.stat-num {
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: 2.2rem;
    color: var(--lime);
    display: block;
    margin-bottom: 4px;
}

.stat-desc {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
}

/* BEFORE/AFTER */
.comparison {
    padding: 100px 6%;
    background: var(--gray-light);
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

    .section-header h2 {
        font-family: 'Sora', sans-serif;
        font-weight: 800;
        font-size: clamp(1.8rem, 3vw, 2.4rem);
        color: var(--forest);
        line-height: 1.25;
        margin-bottom: 14px;
        letter-spacing: -0.3px;
    }

    .section-header p {
        font-size: 1.05rem;
        color: var(--gray-text);
        max-width: 560px;
        margin: 0 auto;
        line-height: 1.7;
    }

.comparison-table-wrap {
    max-width: 1000px;
    margin: 0 auto;
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

thead th {
    padding: 16px 24px;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    text-align: left;
}

    thead th:first-child {
        width: 28%;
        color: var(--forest);
    }

thead .th-before {
    background: var(--red-light);
    color: var(--red);
    border-radius: 10px 0 0 0;
}

thead .th-after {
    background: var(--mint);
    color: var(--green-dark);
    border-radius: 0 10px 0 0;
}

.th-label {
    display: flex;
    align-items: center;
    gap: 8px;
}

tbody tr td {
    padding: 18px 24px;
    font-size: 0.92rem;
    vertical-align: middle;
    border-bottom: 1px solid rgba(30,153,82,0.07);
}

    tbody tr td:first-child {
        font-family: 'Sora', sans-serif;
        font-weight: 600;
        font-size: 0.88rem;
        color: var(--forest);
        background: white;
    }

    tbody tr td.col-before {
        background: #FFF8F8;
        color: #7A3A3A;
        line-height: 1.5;
    }

    tbody tr td.col-after {
        background: #F0FAF4;
        color: #145C30;
        line-height: 1.5;
    }

tbody tr:last-child td:nth-child(2) {
    border-radius: 0 0 0 10px;
}

tbody tr:last-child td:nth-child(3) {
    border-radius: 0 0 10px 0;
}

.check {
    color: var(--green);
    margin-right: 6px;
    font-weight: 700;
}

.cross {
    color: var(--red);
    margin-right: 6px;
}

/* FEATURES */
.features {
    padding: 100px 6%;
    background: white;
}

.features-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.feat-card {
    background: var(--mint);
    border: 1.5px solid var(--mint-mid);
    border-radius: 18px;
    padding: 32px 28px;
    transition: transform 0.22s, box-shadow 0.22s;
    position: relative;
    overflow: hidden;
}

    .feat-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--green), var(--lime));
        border-radius: 18px 18px 0 0;
    }

    .feat-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-md);
    }

.feat-icon {
    width: 52px;
    height: 52px;
    background: white;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}

.feat-card h3 {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--forest);
    margin-bottom: 10px;
}

.feat-card p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--gray-text);
}

/* TESTIMONIAL */
.testimonial {
    background: linear-gradient(135deg, #EDF8F1 0%, #F5FAF7 100%);
    padding: 100px 6%;
}

.testimonial-inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.quote-mark {
    font-family: 'Sora', sans-serif;
    font-size: 5rem;
    line-height: 1;
    color: var(--green);
    opacity: 0.18;
    margin-bottom: -20px;
    display: block;
}

.testimonial blockquote {
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    font-weight: 500;
    line-height: 1.65;
    color: var(--forest);
    font-style: italic;
    margin-bottom: 32px;
}

.testimonial cite {
    font-style: normal;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.cite-name {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--forest);
}

.cite-role {
    font-size: 0.82rem;
    color: var(--gray-text);
}

.stars {
    color: var(--gold);
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

/* FORM */
.form-section {
    padding: 100px 6%;
    background: linear-gradient(135deg, var(--forest) 0%, #0D3D20 100%);
    position: relative;
    overflow: hidden;
}

    .form-section::before {
        content: '';
        position: absolute;
        top: -100px;
        right: -100px;
        width: 550px;
        height: 550px;
        background: radial-gradient(circle, rgba(126,198,58,0.12) 0%, transparent 70%);
        border-radius: 50%;
    }

    .form-section::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--green), var(--lime), var(--green));
    }

.form-inner {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
}

.form-left h2 {
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    color: white;
    line-height: 1.3;
    margin-bottom: 18px;
}

.form-left p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.62);
    margin-bottom: 28px;
}

.form-perks {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .form-perks li {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 0.9rem;
        color: rgba(255,255,255,0.8);
    }

.perk-icon {
    color: var(--lime);
}

.form-card {
    background: white;
    border-radius: 20px;
    padding: 36px 32px;
    box-shadow: var(--shadow-lg);
}

    .form-card h3 {
        font-family: 'Sora', sans-serif;
        font-weight: 700;
        font-size: 1.1rem;
        color: var(--forest);
        margin-bottom: 24px;
    }

.form-group {
    margin-bottom: 16px;
}

label {
    display: block;
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: 0.78rem;
    color: var(--forest);
    margin-bottom: 6px;
    letter-spacing: 0.2px;
}

input, select {
    width: 100%;
    padding: 12px 15px;
    border: 1.5px solid var(--mint-mid);
    border-radius: 9px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.92rem;
    color: var(--forest);
    background: var(--mint);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    appearance: none;
}

    input:focus, select:focus {
        border-color: var(--green);
        box-shadow: 0 0 0 3px rgba(30,153,82,0.12);
        background: white;
    }

select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231E9952' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 38px;
}

.form-btn-submit {
    text-align: center;
    margin: 30px auto;
}

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    text-decoration: none;
    color: white;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    padding: 15px 24px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    margin: 20px auto;
    box-shadow: 0 6px 20px rgba(30,153,82,0.38);
    transition: all 0.2s;
}

    .btn-submit:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 28px rgba(30,153,82,0.48);
    }

.form-note {
    font-size: 0.72rem;
    color: var(--gray-text);
    text-align: center;
    margin-top: 10px;
}

/* ─── FOOTER ─── */
footer {
    background: #080f0c;
    padding: 40px 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-logo {
    font-family: 'Ubuntu', serif;
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--branco);
}

    .footer-logo img {
        max-width: 150px;
    }

    .footer-logo span {
        color: var(--ouro);
    }

footer p {
    color: rgba(255,255,255,0.3);
    font-size: 0.78rem;
}

footer a {
    color: var(--ouro);
    text-decoration: none;
}

/* ANIMATIONS */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content > * {
    animation: fadeUp 0.7s ease both;
}

.hero-badge {
    animation-delay: 0s;
}

h1 {
    animation-delay: 0.1s;
}

.hero-sub {
    animation-delay: 0.2s;
}

.btn-primary {
    animation-delay: 0.3s;
}

.hero-visual {
    animation: fadeUp 0.8s 0.35s ease both;
}

/* RESPONSIVE */
@media (max-width: 860px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 48px;
    }

    .hero-sub {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-visual {
        order: -1;
    }

    .badge-float {
        display: none;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .form-inner {
        grid-template-columns: 1fr;
    }

    .pain-stats {
        gap: 28px;
    }
}

@media (max-width: 640px) {
    nav {
        padding: 14px 5%;
    }

    .logo {
        font-size: 1.2rem;
    }

    .hero, .pain, .comparison, .features, .testimonial, .form-section {
        padding-left: 5%;
        padding-right: 5%;
    }
}

/* Modal Sucesso */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

    .modal-overlay.modal-visible {
        opacity: 1;
        pointer-events: all;
    }

.modal-box {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    max-width: 440px;
    width: 90%;
    text-align: center;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal-overlay.modal-visible .modal-box {
    transform: scale(1);
}

.modal-icon {
    margin-bottom: 1.25rem;
}

.modal-box h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #111;
}

.modal-box p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.modal-btn-fechar {
    margin-top: 1.75rem;
    display: inline-block;
    cursor: pointer;
    border: none;
    font-family: inherit;
}

/*-- Manter Tema Claro Media Query --*/
@media (prefers-color-scheme: dark) {
    html {
        filter: none !important;
    }
}