:root {
    --green: #43a968;
    --green-dark: #348d55;
    --green-soft: #eef8f1;

    --navy: #182033;
    --text: #303746;
    --muted: #7d8798;

    --bg: #ffffff;
    --bg-soft: #f3f8f5;
    --border: #e7ebe8;

    --radius-lg: 28px;
    --radius-md: 18px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", sans-serif;
    color: var(--text);
    background: #fbfcfb;
    -webkit-font-smoothing: antialiased;
}

img {
    display: block;
    max-width: 100%;
}

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

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

/* =========================================
    NAVBAR
========================================= */

.navbar {
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: inline-flex;
    align-items: center;
}

.logo-image {
    display: block;
    width: auto;
    height: 52px;
    object-fit: contain;
}

@media (max-width: 800px) {
    .logo-image {
        height: 44px;
    }
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 19px;
    border-radius: 999px;
    background: var(--green);
    color: white;
    font-weight: 700;
    font-size: 14px;
    transition: .2s ease;
}

.nav-cta:hover {
    background: var(--green-dark);
    transform: translateY(-1px);
}


/* =========================================
    HERO
========================================= */


.hero {
    padding: 78px 0 0;
    text-align: center;
    position: relative;
    overflow: hidden;

    background:
        radial-gradient(circle at 50% 0%,
            rgba(67, 169, 104, 0.10) 0%,
            rgba(67, 169, 104, 0.035) 28%,
            transparent 58%),
        #ffffff;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image: radial-gradient(rgba(67, 169, 104, 0.16) 1.2px,
            transparent 1.2px);

    background-size: 30px 30px;

    mask-image: radial-gradient(ellipse 70% 55% at 50% 5%,
            black 0%,
            rgba(0, 0, 0, 0.7) 35%,
            transparent 75%);

    pointer-events: none;
    z-index: 0;
}

.hero>.container {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 13px;
    border-radius: 999px;
    background: var(--green-soft);
    color: var(--green-dark);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 22px;
}

.hero-badge span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
}

.hero h1 {
    max-width: 760px;
    margin-inline: auto;

    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1.08;
    letter-spacing: -2.8px;
    color: var(--navy);
    font-weight: 800;
}

.hero h1 span {
    color: var(--green);
}

.hero-description {
    max-width: 560px;
    margin: 24px auto 0;

    color: var(--muted);
    font-size: 18px;
    line-height: 1.65;
}

.hero-actions {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 52px;
    padding: 0 25px;

    border-radius: 14px;
    background: var(--green);
    color: white;

    font-size: 15px;
    font-weight: 700;

    transition: .2s ease;
}

.btn-primary:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
}

.hero-note {
    margin-top: 13px;
    color: #a0a8b5;
    font-size: 13px;
}


/* =========================================
    HERO PRODUCT PREVIEW
========================================= */

.hero-preview {
    position: relative;
    width: min(880px, 100%);
    margin: 65px auto 0;
}

.hero-preview::after {
    content: "";
    position: absolute;

    left: 8%;
    right: 8%;
    bottom: -45px;

    height: 180px;

    background: radial-gradient(ellipse,
            rgba(67, 169, 104, 0.22) 0%,
            rgba(67, 169, 104, 0.09) 35%,
            transparent 72%);

    filter: blur(35px);

    z-index: -1;
}


.browser-frame {
    border: 1px solid var(--border);
    border-radius: 24px 24px 0 0;
    overflow: hidden;

    background: white;

    box-shadow:
        0 30px 80px rgba(24, 32, 51, .12),
        0 8px 25px rgba(24, 32, 51, .06);
}

.browser-bar {
    height: 42px;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 0 16px;

    background: #fafbfb;
    border-bottom: 1px solid var(--border);
}

.browser-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #dfe4e1;
}

.browser-url {
    margin-left: 8px;
    height: 25px;
    flex: 1;

    background: white;
    border: 1px solid #edf0ee;
    border-radius: 7px;

    color: #a0a8b1;
    font-size: 11px;

    display: flex;
    align-items: center;
    padding: 0 12px;
    text-align: left;
}

.catalog-preview {
    max-height: 570px;
    overflow: hidden;
}

.catalog-preview img {
    width: 100%;
    height: auto;
}


/* =========================================
    FLOW
========================================= */

.flow-section {
    padding: 125px 0 100px;
    text-align: center;
}

.section-label {
    color: var(--green);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .8px;
    text-transform: uppercase;
    margin-bottom: 13px;
}

.section-title {
    font-family: "Plus Jakarta Sans", sans-serif;
    color: var(--navy);
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.15;
    letter-spacing: -1.4px;
    font-weight: 800;
}

.section-description {
    max-width: 550px;
    margin: 16px auto 0;
    color: var(--muted);
    line-height: 1.65;
}

.flow-grid {
    margin-top: 55px;

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

.flow-card {
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: white;

    text-align: left;

    box-shadow: 0 8px 30px rgba(24, 32, 51, .045);
}

.flow-image {
    aspect-ratio: 9 / 17;
    overflow: hidden;
    border-radius: 18px;
    background: #f5f7f6;
}

.flow-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.flow-number {
    margin-top: 20px;

    width: 30px;
    height: 30px;
    border-radius: 50%;

    background: var(--green-soft);
    color: var(--green-dark);

    display: grid;
    place-items: center;

    font-size: 12px;
    font-weight: 800;
}

.flow-card h3 {
    margin-top: 12px;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 19px;
    color: var(--navy);
}

.flow-card p {
    margin-top: 6px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
}


/* =========================================
    FEATURE SHOWCASE
========================================= */

.showcase-section {
    padding: 110px 0;
    background: var(--bg-soft);
}

.showcase-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 70px;
}

.showcase-row+.showcase-row {
    margin-top: 120px;
}

.showcase-row.reverse .showcase-copy {
    order: 2;
}

.showcase-row.reverse .showcase-image {
    order: 1;
}

.showcase-copy h2 {
    margin-top: 10px;

    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(30px, 4vw, 43px);
    line-height: 1.15;
    letter-spacing: -1.5px;
    color: var(--navy);
}

.showcase-copy p {
    margin-top: 18px;
    max-width: 470px;

    color: var(--muted);
    line-height: 1.7;
    font-size: 16px;
}

.feature-list {
    margin-top: 25px;
    display: grid;
    gap: 12px;
}

.feature-list li {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10px;

    color: var(--text);
    font-size: 15px;
}

.feature-check {
    width: 24px;
    height: 24px;
    border-radius: 50%;

    background: var(--green-soft);
    color: var(--green);

    display: grid;
    place-items: center;

    font-size: 13px;
    font-weight: 800;
}

.showcase-image {
    display: flex;
    justify-content: center;
}

.phone {
    width: min(350px, 100%);
    padding: 8px;

    border-radius: 34px;
    background: #111827;

    box-shadow:
        0 30px 70px rgba(24, 32, 51, .18),
        0 10px 30px rgba(24, 32, 51, .08);
}

.phone-screen {
    overflow: hidden;
    border-radius: 27px;
    background: white;
}

.phone-screen img {
    width: 100%;
    height: auto;
}


/* =========================================
    PRICING
========================================= */

.hero,
.flow-section,
.pricing-section {
    background: #ffffff;
}

.pricing-section {
    padding: 110px 0;
}

.pricing-header {
    text-align: center;
}

.pricing-grid {
    margin-top: 50px;

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

.pricing-card {
    position: relative;

    padding: 32px 27px;

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

    background: white;

    box-shadow: 0 10px 35px rgba(24, 32, 51, .04);
}

.pricing-card.popular {
    border: 2px solid var(--green);
    padding: 31px 26px;
}

.popular-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);

    padding: 6px 14px;
    border-radius: 999px;

    background: var(--green);
    color: white;

    font-size: 11px;
    font-weight: 800;
    white-space: nowrap;
}

.pricing-name {
    font-family: "Plus Jakarta Sans", sans-serif;
    color: var(--navy);
    font-size: 19px;
    font-weight: 800;
}

.pricing-description {
    min-height: 44px;
    margin-top: 7px;

    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
}

.pricing-price {
    margin-top: 25px;

    font-family: "Plus Jakarta Sans", sans-serif;
    color: var(--navy);
    font-size: 42px;
    letter-spacing: -1.5px;
    font-weight: 800;
}

.pricing-price small {
    font-family: "DM Sans", sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--muted);
    letter-spacing: 0;
}

.pricing-limits {
    margin-top: 24px;
    padding: 15px;

    border-radius: 14px;
    background: var(--bg-soft);

    display: grid;
    gap: 8px;
}

.pricing-limit {
    display: flex;
    justify-content: space-between;
    gap: 10px;

    font-size: 14px;
}

.pricing-limit strong {
    color: var(--navy);
}

.pricing-features {
    margin-top: 22px;
    display: grid;
    gap: 11px;
}

.pricing-features li {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--text);
    font-size: 13px;
}

.pricing-features .check {
    color: var(--green);
    font-weight: 800;
}

.pricing-features .cross {
    color: #b9c0c7;
    font-weight: 800;
}

.pricing-features .disabled {
    color: #aeb5bd;
}

.pricing-button {
    margin-top: 27px;

    width: 100%;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: #f1f4f2;
    color: var(--navy);

    font-size: 14px;
    font-weight: 700;

    transition: .2s ease;
}

.pricing-card.popular .pricing-button {
    background: var(--green);
    color: white;
}

.pricing-button:hover {
    transform: translateY(-1px);
}


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

.final-cta {
    padding: 30px 0 100px;
}

.final-cta-box {
    padding: 70px 30px;
    border-radius: 30px;

    text-align: center;

    background:
        radial-gradient(circle at 50% 0%,
            rgba(110, 203, 132, .25),
            transparent 55%),
        var(--green-soft);
}

.final-cta h2 {
    font-family: "Plus Jakarta Sans", sans-serif;
    color: var(--navy);
    font-size: clamp(30px, 4vw, 44px);
    letter-spacing: -1.5px;
}

.final-cta p {
    margin-top: 12px;
    color: var(--muted);
}

.final-cta .btn-primary {
    margin-top: 25px;
}


/* =========================================
    FOOTER
========================================= */

footer {
    margin-top: 20px;
    padding: 28px 0 32px;
    border-top: 1px solid #edf0ee;
    background: #ffffff;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;

    color: #9aa2ae;
    font-size: 12px;
}

.footer-tos {
    border: 0;
    padding: 0;

    background: transparent;

    color: #8b949e;
    font-family: inherit;
    font-size: 12px;

    cursor: pointer;
    transition: color .2s ease;
}

.footer-tos:hover {
    color: #343c47;
    text-decoration: underline;
}

@media (max-width: 600px) {
    footer {
        padding: 24px 0 28px;
    }

    .footer-inner {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}


/* =========================================
    MOBILE
========================================= */

@media (max-width: 800px) {

    .container {
        width: min(100% - 28px, 600px);
    }

    .navbar {
        height: 68px;
    }

    .nav-cta {
        padding: 9px 15px;
        font-size: 13px;
    }

    .hero {
        padding-top: 55px;
    }

    .hero h1 {
        font-size: clamp(39px, 11vw, 58px);
        letter-spacing: -2px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-preview {
        margin-top: 45px;
    }

    .browser-bar {
        height: 35px;
    }

    .catalog-preview {
        max-height: 500px;
    }

    .flow-section {
        padding: 90px 0;
    }

    .flow-grid {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin-inline: auto;
    }

    .flow-card {
        padding: 12px;
    }

    .flow-image {
        aspect-ratio: 9 / 15;
    }

    .showcase-section {
        padding: 80px 0;
    }

    .showcase-row,
    .showcase-row.reverse {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .showcase-row.reverse .showcase-copy,
    .showcase-row.reverse .showcase-image {
        order: initial;
    }

    .showcase-copy {
        text-align: center;
    }

    .showcase-copy p {
        margin-inline: auto;
    }

    .feature-list {
        width: fit-content;
        margin-inline: auto;
        text-align: left;
    }

    .phone {
        width: min(330px, 90%);
    }

    .pricing-section {
        padding: 85px 0;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-inline: auto;
    }

    .pricing-card.popular {
        transform: none;
    }

    .final-cta {
        padding-bottom: 70px;
    }

    .final-cta-box {
        padding: 55px 20px;
    }

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

.footer-tos {
    border: 0;
    background: transparent;
    padding: 0;

    color: #7d8792;
    font: inherit;

    text-decoration: underline;
    cursor: pointer;
}

.footer-tos:hover {
    color: #343c47;
}

@media (max-width: 600px) {
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* =========================================
TERMS & CONDITIONS MODAL
========================================= */

.tos-modal {
    display: none;

    position: fixed;
    inset: 0;

    z-index: 9999;
}

.tos-modal.active {
    display: block;
}

.tos-backdrop {
    position: absolute;
    inset: 0;

    background: rgba(15, 23, 42, 0.55);

    backdrop-filter: blur(3px);
}

.tos-wrapper {
    position: relative;

    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;
}

.tos-box {
    position: relative;

    width: min(760px, 100%);
    max-height: 85vh;

    display: flex;
    flex-direction: column;

    background: white;

    border-radius: 22px;

    overflow: hidden;

    box-shadow:
        0 30px 80px rgba(15, 23, 42, 0.2);
}

.tos-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 20px 24px;

    border-bottom: 1px solid #edf0ee;
}

.tos-header h2 {
    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: 18px;
    line-height: 1.3;

    color: var(--navy);
}

.tos-close {
    width: 34px;
    height: 34px;

    display: grid;
    place-items: center;

    border: 0;
    border-radius: 50%;

    background: #f3f5f4;

    color: #68717c;

    font-size: 23px;
    line-height: 1;

    cursor: pointer;

    transition: .2s ease;
}

.tos-close:hover {
    background: #e9ecea;
    color: #202833;
}

.tos-content {
    padding: 24px;

    overflow-y: auto;

    color: #4b5563;

    font-size: 14px;
    line-height: 1.7;
}

.tos-footer {
    display: flex;
    justify-content: flex-end;

    padding: 16px 24px;

    border-top: 1px solid #edf0ee;
}

.tos-close-button {
    border: 0;

    padding: 10px 18px;

    border-radius: 10px;

    background: #f1f4f2;

    color: #303842;

    font-family: inherit;
    font-size: 13px;
    font-weight: 600;

    cursor: pointer;

    transition: .2s ease;
}

.tos-close-button:hover {
    background: #e6eae8;
}

@media (max-width: 600px) {

    .tos-wrapper {
        padding: 14px;
    }

    .tos-box {
        max-height: 90vh;
        border-radius: 18px;
    }

    .tos-header {
        padding: 17px 18px;
    }

    .tos-header h2 {
        font-size: 16px;
        padding-right: 10px;
    }

    .tos-content {
        padding: 18px;
        font-size: 13px;
    }

    .tos-footer {
        padding: 13px 18px;
    }
}

/* =========================================
FLOATING WHATSAPP
========================================= */

.wa-floating {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9998;

    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.wa-bubble {
    display: none;

    margin-bottom: 12px;
    padding: 10px 16px;

    background: white;
    border-radius: 999px;

    box-shadow: 0 8px 25px rgba(24, 32, 51, .14);

    color: #4b5563;
    font-size: 13px;
    font-weight: 700;

    white-space: nowrap;

    animation: waBubbleIn .3s ease;
}

.wa-button {
    width: 56px;
    height: 56px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #25D366;

    box-shadow:
        0 8px 25px rgba(37, 211, 102, .28),
        0 4px 12px rgba(24, 32, 51, .12);

    transition: transform .2s ease, box-shadow .2s ease;
}

.wa-button:hover {
    transform: translateY(-3px);

    box-shadow:
        0 12px 30px rgba(37, 211, 102, .32),
        0 6px 15px rgba(24, 32, 51, .14);
}

.wa-button svg {
    width: 28px;
    height: 28px;
}

/* Pulse */

.wa-pulse {
    animation: waPulse 2.2s infinite;
}

@keyframes waPulse {
    0% {
        box-shadow:
            0 0 0 0 rgba(37, 211, 102, .45),
            0 8px 25px rgba(37, 211, 102, .28);
    }

    70% {
        box-shadow:
            0 0 0 12px rgba(37, 211, 102, 0),
            0 8px 25px rgba(37, 211, 102, .28);
    }

    100% {
        box-shadow:
            0 0 0 0 rgba(37, 211, 102, 0),
            0 8px 25px rgba(37, 211, 102, .28);
    }
}

@keyframes waBubbleIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 600px) {
    .wa-floating {
        right: 15px;
        bottom: 15px;
    }

    .wa-button {
        width: 54px;
        height: 54px;
    }

    .wa-bubble {
        font-size: 12px;
        padding: 9px 14px;
    }
}

/* =========================================
TESTIMONIAL
========================================= */

.testimonial-section {
    padding: 110px 0;
    background: #ffffff;
}

.testimonial-header {
    text-align: center;
}

.testimonial-grid {
    margin-top: 50px;

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

.testimonial-card {
    display: flex;
    flex-direction: column;

    padding: 28px;

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

    background: white;

    box-shadow: 0 10px 35px rgba(24, 32, 51, .045);

    transition: .2s ease;
}

.testimonial-card:hover {
    transform: translateY(-3px);

    box-shadow: 0 15px 40px rgba(24, 32, 51, .08);
}

.testimonial-quote {
    color: var(--text);

    font-size: 15px;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-top: 28px;
}

.testimonial-avatar {
    width: 42px;
    height: 42px;

    flex-shrink: 0;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: var(--green-soft);
    color: var(--green-dark);

    font-size: 14px;
    font-weight: 800;
}

.testimonial-author div:last-child {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.testimonial-author strong {
    color: var(--navy);
    font-size: 14px;
}

.testimonial-author span {
    color: var(--muted);
    font-size: 12px;
}

.testimonial-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;

    margin-top: 25px;

    color: var(--green-dark);

    font-size: 13px;
    font-weight: 700;

    transition: .2s ease;
}

.testimonial-link span {
    transition: transform .2s ease;
}

.testimonial-link:hover {
    color: var(--green);
}

.testimonial-link:hover span {
    transform: translate(2px, -2px);
}

@media (max-width: 800px) {

    .testimonial-section {
        padding: 85px 0;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-inline: auto;
    }

}

.testimonial-preview {
    margin-top: 20px;

    height: 500px;

    border-radius: 14px;
    overflow: hidden;

    background: #f5f7f6;
    border: 1px solid var(--border);
}

.testimonial-preview img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: top;
}