* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {

    --primary: #007E7E;
    --primary-dark: #006868;
    --primary-light: #EAF8F8;

    --background: #F5F7FA;
    --surface: #FFFFFF;

    --text: #24303F;
    --text-light: #6B7280;

    --border: #E5E7EB;

    --shadow: 0 18px 45px rgba(15, 23, 42, .08);

}

body {

    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    background: var(--background);

    color: var(--text);

    line-height: 1.6;

}

.container {

    max-width: 900px;

    margin: auto;

    padding: 50px 24px;

}

.landing-container {

    max-width: 1200px;

    margin: auto;

    padding: 30px 24px;

}

.header {

    text-align: center;

    margin-bottom: 40px;

}

.logo {

    font-size: 34px;

    font-weight: 700;

    color: var(--primary);

}

.logo span {

    color: #222;

}

.header h2 {

    margin-top: 18px;

    font-size: 34px;

    font-weight: 700;

}

.header p {

    margin-top: 12px;

    color: var(--text-light);

    font-size: 18px;

}

.card {

    background: white;

    border-radius: 24px;

    padding: 48px;

    box-shadow: var(--shadow);

}

.footer {

    margin-top: 30px;

    display: flex;

    justify-content: center;

    gap: 30px;

    color: var(--text-light);

    font-size: 14px;

}

.footer-item {

    display: flex;

    align-items: center;

    gap: 8px;

}

.footer-copy {

    margin-top: 0px;

    text-align: center;

    color: #9CA3AF;

    font-size: 13px;

}

h1 {

    font-size: 32px;

    margin-bottom: 10px;

}

.subtitle {

    color: var(--text-light);

    margin-bottom: 35px;

}

.steps {

    display: flex;

    align-items: center;

    margin-bottom: 40px;

}

.step {

    width: 42px;

    height: 42px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    font-weight: 700;

    background: var(--primary);

    color: white;

}

.step.inactive {

    background: #E5E7EB;

    color: #9CA3AF;

}

.step-line {

    flex: 1;

    height: 4px;

    background: #E5E7EB;

}

label {

    display: block;

    margin-top: 26px;

    margin-bottom: 10px;

    font-weight: 600;

}

input,
textarea,
select {

    width: 100%;

    border: 1px solid var(--border);

    border-radius: 14px;

    padding: 16px;

    font-size: 15px;

    transition: .2s;

}

textarea {

    min-height: 140px;

    resize: vertical;

}

input:focus,
textarea:focus,
select:focus {

    outline: none;

    border-color: var(--primary);

    box-shadow: 0 0 0 5px rgba(0, 126, 126, .12);

}

.error {

    margin-top: 8px;

    color: #DC2626;

    font-size: 14px;

}

.actions {

    margin-top: 40px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 16px;

}

.actions form {

    margin: 0;

    margin-left: auto;

}

button {

    background: var(--primary);

    color: white;

    border: none;

    border-radius: 14px;

    padding: 16px 34px;

    font-size: 16px;

    font-weight: 600;

    cursor: pointer;

    transition: .2s;

}

button:hover {

    background: var(--primary-dark);

    transform: translateY(-2px);

}

.actions {

    margin-top: 40px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 16px;

}

.actions form {

    margin: 0;

    margin-left: auto;

}

button {

    background: var(--primary);

    color: white;

    border: none;

    border-radius: 14px;

    padding: 16px 34px;

    font-size: 16px;

    font-weight: 600;

    cursor: pointer;

    transition: .2s;

}

button:hover {

    background: var(--primary-dark);

    transform: translateY(-2px);

}

.btn-secondary {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 16px 34px;

    border-radius: 14px;

    border: 1px solid var(--border);

    background: white;

    color: var(--text);

    text-decoration: none;

    font-weight: 600;

    transition: .2s;

}

.btn-secondary:hover {

    background: #F3F4F6;

    border-color: var(--primary);

}

/* ============================
   Gift Cards
============================ */

.giftcards {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));

    gap: 18px;

    margin-top: 18px;

}

.giftcard {

    border: 2px solid var(--border);

    border-radius: 18px;

    padding: 20px;

    cursor: pointer;

    transition: .2s;

    text-align: center;

    background: white;

}

.giftcard:hover {

    transform: translateY(-3px);

    border-color: var(--primary);

    box-shadow: 0 10px 25px rgba(0, 126, 126, .12);

}

.giftcard.selected {

    border-color: var(--primary);

    background: var(--primary-light);

}

.giftcard-image {

    height: 72px;

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 46px;

    margin-bottom: 16px;

}

.giftcard-name {

    font-weight: 600;

    font-size: 15px;

}

.info-card {

    background: white;

    border: 1px solid var(--border);

    border-radius: 18px;

    padding: 24px;

    margin-top: 22px;

}

.info-title {

    font-size: 14px;

    color: var(--text-light);

    margin-bottom: 12px;

}

.info-value {

    font-size: 28px;

    font-weight: 700;

    color: var(--primary);

}

.info-small {

    margin-top: 8px;

    color: var(--text-light);

    font-size: 13px;

}

.simulation-row {

    display: flex;

    justify-content: space-between;

    padding: 10px 0;

    border-bottom: 1px solid var(--border);

}

.simulation-row:last-child {

    border: none;

}

.feature-list {

    margin: 0;

    padding-left: 20px;

}

.feature-list li {

    margin: 12px 0;

}

.purchase-header {

    text-align: center;

    margin-bottom: 32px;

}

.purchase-header h2 {

    color: #007E7E;

    font-size: 26px;

    margin-bottom: 12px;

}

.purchase-header p {

    color: #666;

    line-height: 1.6;

}

.purchase-info {

    display: flex;

    flex-direction: column;

    gap: 22px;

}

.info-row {

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding-bottom: 16px;

    border-bottom: 1px solid #ececec;

}

.info-row:last-child {

    border-bottom: none;

}

.info-row span {

    color: #666;

}

.info-row strong {

    color: #222;

}

/* ==========================================================
   Layout Global
   ========================================================== */

.site-header {

    position: sticky;

    top: 0;

    z-index: 1000;

    background: #374151;

    border-bottom: 1px solid rgba(255, 255, 255, .08);

    box-shadow: 0 2px 12px rgba(0, 0, 0, .18);

}

.site-header::before {

    content: "";

    display: block;

    height: 3px;

    background: rgb(11, 253, 11);

}

.header-container {

    max-width: 1200px;

    margin: auto;

    height: 64px;

    padding: 0 24px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

}

.site-logo {

    text-decoration: none;

    font-size: 28px;

    font-weight: 700;

    color: white;

    white-space: nowrap;

}

.site-logo span {

    color: rgb(11, 253, 11);

}

.site-nav {

    display: flex;

    justify-content: center;

    align-items: center;

    flex: 1;

    gap: 26px;

}

.site-nav a {

    color: rgba(255, 255, 255, .92);

    text-decoration: none;

    font-weight: 600;

    font-size: 15px;

    transition: .2s;

}

.site-nav a:hover {

    color: rgb(11, 253, 11);

}

.header-user {

    display: flex;

    align-items: center;

    gap: 14px;

    white-space: nowrap;

}

.user-name {

    color: white;

    font-size: 14px;

}

.login-link,
.logout-link {

    color: rgb(11, 253, 11);

    text-decoration: none;

    font-weight: 600;

}

.login-link:hover,
.logout-link:hover {

    color: white;

}

.page-container {

    max-width: 900px;

    margin: auto;

    padding: 45px 24px;

}

.page-header {

    text-align: center;

    margin-bottom: 36px;

}

.page-header h1 {

    font-size: 34px;

    font-weight: 700;

    margin-bottom: 10px;

}

.page-header p {

    color: var(--text-light);

    font-size: 18px;

}

/* ==========================================================
   Footer
   ========================================================== */

.site-footer {

    margin-top: 40px;

    background: #374151;

    border-top: 1px solid rgba(255, 255, 255, .08);

}

.footer-container {

    max-width: 1200px;

    margin: auto;

    padding: 20px 24px;

    text-align: center;

}

.footer-logo {

    display: inline-block;

    text-decoration: none;

    font-size: 22px;

    font-weight: 700;

    color: white;

    margin-bottom: 10px;

}

.footer-logo span {

    color: rgb(11, 253, 11);

}

.footer-copy {

    color: #D1D5DB;

    font-size: 13px;

    margin-bottom: 4px;

}

.footer-cnpj {

    color: #9CA3AF;

    font-size: 12px;

    margin-bottom: 14px;

}

.footer-links {

    display: flex;

    justify-content: center;

    align-items: center;

    flex-wrap: wrap;

    gap: 10px;

    font-size: 13px;

}

.footer-links a {

    color: #F3F4F6;

    text-decoration: none;

    transition: color .2s;

}

.footer-links a:hover {

    color: rgb(11, 253, 11);

}

.footer-links span {

    color: #6B7280;

}

@media (max-width: 768px) {

    .footer-container {

        padding: 18px 16px;

    }

    .footer-logo {

        font-size: 20px;

    }

    .footer-links {

        flex-direction: column;

        gap: 6px;

    }

    .footer-links span {

        display: none;

    }

}

@media (max-width: 768px) {

    .header-container {

        height: auto;

        padding: 14px 16px;

        flex-direction: column;

        gap: 14px;

    }

    .site-logo {

        font-size: 24px;

    }

    .site-nav {

        width: 100%;

        justify-content: center;

        flex-wrap: wrap;

        gap: 18px;

    }

    .site-nav a {

        font-size: 14px;

    }

    .header-user {

        justify-content: center;

    }

}

/* ==========================================================
   Home (Landing Page)
   ========================================================== */

.hero {

    background: radial-gradient(circle at top,
            #dff8f3,
            var(--background));

    padding: 40px 0;

}

.hero-grid {

    max-width: 1200px;

    margin: auto;

    padding: 0 24px;

    display: grid;

    grid-template-columns: 1.1fr .9fr;

    gap: 50px;

    align-items: center;

}

.hero h1 {

    font-size: 42px;

    line-height: 1.1;

    max-width: 650px;

    margin-bottom: 20px;

}

.lead {

    font-size: 21px;

    color: var(--text-light);

    margin-bottom: 24px;

}

.badges {

    display: grid;

    grid-template-columns: repeat(2, max-content);

    gap: 14px;

    margin: 32px 0;

}

.badge {

    background: white;

    border: 1px solid var(--border);

    border-radius: 999px;

    padding: 10px 16px;

    font-size: 14px;

    font-weight: 500;

    text-align: center;

}

.phone {

    background: #111827;

    border-radius: 34px;

    padding: 18px;

    box-shadow: 0 25px 60px rgba(0, 0, 0, .20);

}

.screen {

    background: white;

    border-radius: 24px;

    padding: 24px;

}

.progress {

    height: 10px;

    background: #E5E7EB;

    border-radius: 999px;

    overflow: hidden;

    margin: 14px 0;

}

.progress div {

    height: 100%;

    width: 72%;

    background: linear-gradient(90deg,
            var(--primary),
            #22C55E);

}

.title {

    text-align: center;

    font-size: 32px;

    margin-bottom: 42px;

}

.sub {

    max-width: 760px;

    margin: 0 auto 50px;

    text-align: center;

    color: var(--text-light);

    font-size: 18px;

}

.grid4 {

    display: grid;

    grid-template-columns: repeat(auto-fit,
            minmax(230px, 1fr));

    gap: 24px;

}

.timeline {

    display: flex;

    flex-direction: column;

    gap: 24px;

    margin-top: 40px;

}

.timeline-card {

    background: white;

    border: 1px solid var(--border);

    border-radius: 18px;

    padding: 28px 32px;

    box-shadow: 0 8px 24px rgba(15, 23, 42, .05);

    transition: .2s;

}

.timeline-number {

    width: 42px;

    height: 42px;

    border-radius: 50%;

    background: var(--primary);

    color: white;

    display: flex;

    align-items: center;

    justify-content: center;

    font-weight: 700;

    margin-bottom: 18px;

}

.compare {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 30px;

}

.compare ul {

    list-style: none;

    padding: 0;

    margin: 0;

}

.compare li {

    padding: 12px 0;

    border-bottom: 1px solid var(--border);

}

.cta {

    background: linear-gradient(135deg,
            var(--primary),
            #14532d);

    color: white;

    border-radius: 28px;

    padding: 70px;

    text-align: center;

}

.cta h2 {

    margin-bottom: 16px;

}

.cta p {

    margin-bottom: 28px;

}

.guide-link {

    margin-top: 48px;

    display: flex;

    align-items: center;

    gap: 16px;

    max-width: 640px;

    text-decoration: none;

    color: inherit;

    background: white;

    border: 1px solid var(--border);

    border-radius: 18px;

    padding: 18px 22px;

    transition: .2s;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);

}

.guide-link:hover {

    transform: translateY(-2px);

    box-shadow: 0 16px 40px rgba(0, 0, 0, .08);

}

.guide-icon {

    width: 54px;

    height: 54px;

    border-radius: 14px;

    background: #DFF8F3;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 26px;

}

.guide-title {

    font-size: 18px;

    font-weight: 700;

    margin-bottom: 4px;

}

.guide-text {

    color: var(--text-light);

    font-size: 15px;

}

.guide-arrow {

    margin-left: auto;

    color: var(--primary);

    font-size: 24px;

}

@media (max-width:900px) {

    .hero-grid,
    .compare,
    .timeline {

        grid-template-columns: 1fr;

    }

    .hero h1 {

        font-size: 38;

    }

}

/* ==========================================================
   Ajustes da Landing
========================================================== */

.hero {

    overflow: hidden;

}

.hero-grid {

    min-height: 560px;

}

.phone h3 {

    margin-bottom: 12px;

}

.phone hr {

    margin: 18px 0;

    border: none;

    border-top: 1px solid #E5E7EB;

}

.title {

    font-weight: 700;

    line-height: 1.2;

}

.grid4 .card {

    text-align: center;

    padding: 32px;

}

.grid4 .card h3 {

    margin: 16px 0 10px;

    font-size: 22px;

}

.grid4 .card p {

    color: var(--text-light);

}

.timeline {

    margin-top: 40px;

}

.timeline-card {

    box-shadow: 0 8px 24px rgba(15, 23, 42, .05);

    transition: .2s;

}

.timeline-card:hover {

    transform: translateY(-4px);

}

.timeline-card h3 {

    margin: 18px 0 10px;

    font-size: 22px;

}

.timeline-card p {

    color: var(--text-light);

    line-height: 1.7;

}

.compare .card h3 {

    margin-bottom: 18px;

}

.compare li {

    display: flex;

    align-items: center;

    gap: 10px;

}

.compare li::before {

    content: "✓";

    color: var(--primary);

    font-weight: 700;

}

.cta {

    box-shadow: 0 20px 60px rgba(15, 23, 42, .12);

}

.cta h2 {

    font-size: 28px;

    line-height: 1.2;

    margin-bottom: 18px;

}

.cta p {

    font-size: 20px;

    opacity: .95;

}

.btn {

    display: inline-block;

    background: var(--primary);

    color: #fff;

    text-decoration: none;

    padding: 16px 28px;

    border-radius: 14px;

    font-weight: 700;

    transition: .2s;

}

.btn:hover {

    background: var(--primary-dark);

    transform: translateY(-2px);

}

.btn-note {
    margin-top: 12px;
    font-size: 11px;
    color: #8b9099;
    text-align: left;
    font-style: italic;
}

.field-help {
    margin: 0px 0 20px;
    font-size: 12px;
    color: #667085;
    line-height: 1.0;
    font-style: italic;
}


@media (max-width:900px) {

    .title {

        font-size: 34px;

    }

    .cta {

        padding: 42px 24px;

    }

    .cta h2 {

        font-size: 22px;

    }

    .badges {

        grid-template-columns: 1fr;

    }

    .title {


        font-size: 28px;


    }

    .field-help {
        line-height: 1.45;
    }

}

/* ==========================================================
   Mobile
========================================================== */

@media (max-width:768px) {

    body {
        background: #fff;
    }

    .page-container {
        width: 100%;
        max-width: 100%;
        padding: 12px;
        box-sizing: border-box;
    }

    .card {
        background: #fff;
        border: none;
        border-radius: 16px;
        box-shadow: none;
        padding: 20px;
    }

    .header-container {
        min-height: 60px;
        padding: 0 16px;
    }

    .site-logo {
        font-size: 22px;
    }

    .phone {
        display: none;
    }

    .hero-grid {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .hero {
        padding-bottom: 24px;
    }

    .landing-container {
        padding-top: 16px;
        padding-bottom: 16px;
    }

    .landing-container>.title:first-child {
        margin-top: 18px;
        margin-bottom: 32px;
    }

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

    .badge {
        width: 100%;
        box-sizing: border-box;
    }

    .btn {
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }

    .guide-link {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .guide-arrow {
        display: none;
    }

    .grid4 {
        gap: 16px;
    }

    .grid4 .card {
        background: #ffffff;
        border: 1px solid #E5E7EB;
        border-radius: 16px;
        padding: 20px;
        margin: 0;
        text-align: center;
    }


    .timeline {
        gap: 16px;
    }

    .timeline-card {
        padding: 18px;
    }

    .compare {
        gap: 16px;
    }

    footer {
        padding: 32px 16px;
        text-align: center;
    }

    footer .logo {
        font-size: 24px;
        line-height: 1.2;
        margin-bottom: 12px;
    }

    footer p {
        font-size: 14px;
        line-height: 1.6;
        color: #6b7280;
        margin: 0;
    }

    .compare {
        gap: 16px;
    }

    .compare .card {
        background: #fff;
        border: 1px solid #E5E7EB;
        border-radius: 16px;
        padding: 20px;
        margin: 0;
    }

    .compare .card h3 {
        margin-bottom: 16px;
    }

    .compare .card ul {
        margin: 0;
        padding-left: 20px;
    }

    .compare .card li {
        margin-bottom: 10px;
    }

    .header-container {

        min-height: 72px;
        /* antes era 60px */
        padding: 10px 16px;
        /* adiciona espaço em cima e embaixo */

    }

}