* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img,
svg {
    max-width: 100%;
}

a,
button {
    -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible {
    outline: 3px solid rgba(19, 115, 51, 0.35);
    outline-offset: 3px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #ffffff;
    color: #171717;
    overflow-x: hidden;
}

button,
input {
    font: inherit;
}

.container {
    width: 90%;
    max-width: 1180px;
    margin: 0 auto;
}


/* ==================================================
   HEADER
================================================== */

.header {
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #e9e9e9;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* LOGO */

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #146b32;
}

.logo-icon {
    font-size: 28px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text strong {
    font-size: 22px;
    line-height: 20px;
}

.logo-text span {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* MENU */

.nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav a {
    text-decoration: none;
    color: #222222;
    font-size: 14px;
    font-weight: 500;
    transition: 0.2s;
}

.nav a:hover {
    color: #16833d;
}

.nav .btn-whatsapp {
    border: 1px solid #178a40;
    color: #178a40;
    padding: 11px 18px;
    border-radius: 6px;
}

.nav .btn-whatsapp:hover {
    background: #178a40;
    color: #ffffff;
}

.menu-mobile {
    display: none;
    border: none;
    background: transparent;
    font-size: 28px;
    color: #137333;
    cursor: pointer;
}


/* ==================================================
   HERO
================================================== */

.hero {
    padding: 75px 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    align-items: center;
    gap: 70px;
}

.hero-small,
.section-small,
.panel-label {
    display: block;
    color: #16833d;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 0.9px;
    margin-bottom: 13px;
}

.hero-small {
    font-size: 13px;
    margin-bottom: 18px;
}

.hero h1 {
    font-size: 64px;
    line-height: 0.98;
    letter-spacing: -2.5px;
    margin-bottom: 25px;
}

.hero-description {
    max-width: 440px;
    font-size: 20px;
    line-height: 1.5;
    color: #3e3e3e;
    margin-bottom: 28px;
}

.hero-list {
    list-style: none;
    margin-bottom: 35px;
}

.hero-list li {
    margin-bottom: 13px;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-list li::before {
    content: "✓";
    display: flex;
    justify-content: center;
    align-items: center;
    width: 19px;
    height: 19px;
    border-radius: 4px;
    background: #16833d;
    color: #ffffff;
    font-size: 12px;
    font-weight: bold;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    text-decoration: none;
    padding: 14px 20px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
    transition: 0.2s;
}

.btn-primary {
    background: #137333;
    color: #ffffff;
    border: 1px solid #137333;
}

.btn-primary:hover {
    background: #0d5b28;
}

.btn-secondary {
    border: 1px solid #137333;
    color: #137333;
    background: #ffffff;
}

.btn-secondary:hover {
    background: #f4fbf6;
}


/* PREVIEW HERO */

.hero-image {
    width: 100%;
}

.system-preview {
    background: #ffffff;
    border: 12px solid #191919;
    border-bottom-width: 22px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 28px 55px rgba(0, 0, 0, 0.18);
}

.preview-top {
    height: 46px;
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 0 18px;
    background: #f5f5f5;
}

.preview-top strong {
    color: #16833d;
}

.preview-top span {
    font-size: 13px;
}

.preview-body {
    min-height: 330px;
    display: flex;
}

.preview-sidebar {
    width: 120px;
    background: #116a31;
    padding: 22px 14px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.preview-sidebar span {
    font-size: 10px;
    color: #ffffff;
}

.preview-main {
    flex: 1;
    padding: 20px;
    background: #f7f7f7;
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.card {
    padding: 15px;
    background: #ffffff;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.card small {
    display: block;
    font-size: 9px;
    color: #777777;
    margin-bottom: 6px;
}

.card strong {
    font-size: 15px;
}

.chart {
    height: 180px;
    margin-top: 25px;
    background: #ffffff;
    border-radius: 6px;
    padding: 20px;
    display: flex;
    align-items: end;
    gap: 15px;
}

.chart div {
    flex: 1;
    background: #16833d;
    border-radius: 3px 3px 0 0;
}


/* ==================================================
   BENEFÍCIOS
================================================== */

.benefits {
    padding: 75px 0 85px;
    background: #fafafa;
    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
}

.section-title {
    text-align: center;
    margin-bottom: 48px;
}

.section-title span {
    color: #16833d;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 0.7px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.benefit-card {
    padding: 10px 35px 15px;
    text-align: center;
}

.benefit-card:not(:last-child) {
    border-right: 1px solid #dddddd;
}

.benefit-icon {
    font-size: 38px;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 20px;
    line-height: 1.25;
    margin-bottom: 14px;
}

.benefit-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #555555;
    max-width: 240px;
    margin: 0 auto;
}


/* ==================================================
   SISTEMA
================================================== */

.system-section {
    padding: 95px 0;
}

.system-heading {
    max-width: 700px;
    margin: 0 auto 45px;
    text-align: center;
}

.system-heading h2,
.trust-content h2,
.features-heading h2 {
    font-size: 42px;
    line-height: 1.1;
    letter-spacing: -1.2px;
    margin-bottom: 18px;
}

.system-heading p {
    max-width: 580px;
    margin: 0 auto;
    color: #5a5a5a;
    font-size: 17px;
    line-height: 1.6;
}

.system-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
}

.system-tab {
    padding: 11px 23px;
    border: 1px solid #dcdcdc;
    border-radius: 6px;
    background: #ffffff;
    color: #444444;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s;
}

.system-tab:hover {
    border-color: #16833d;
    color: #16833d;
}

.system-tab.active {
    background: #137333;
    border-color: #137333;
    color: #ffffff;
}

.system-panel {
    display: none;
    grid-template-columns: 0.8fr 1.2fr;
    align-items: center;
    gap: 70px;
}

.system-panel.active {
    display: grid;
}

.system-panel-text h3 {
    max-width: 430px;
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 18px;
}

.system-panel-text > p {
    max-width: 450px;
    color: #555555;
    font-size: 16px;
    line-height: 1.65;
    margin-bottom: 25px;
}

.system-panel-text ul {
    list-style: none;
}

.system-panel-text li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 15px;
}

.system-panel-text li::before {
    content: "✓";
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 18px;
    height: 18px;
    background: #16833d;
    color: #ffffff;
    border-radius: 50%;
    font-size: 10px;
}


/* JANELAS */

.feature-window {
    background: #f7f7f7;
    border: 1px solid #dddddd;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.1);
}

.window-header {
    height: 45px;
    background: #eeeeee;
    display: flex;
    align-items: center;
    padding: 0 15px;
    gap: 7px;
}

.window-header span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #c9c9c9;
}

.window-header strong {
    margin-left: 10px;
    color: #137333;
    font-size: 12px;
}


/* PDV */

.pdv-screen {
    min-height: 340px;
    padding: 25px;
    display: grid;
    grid-template-columns: 1.4fr 0.6fr;
    gap: 20px;
}

.pdv-products {
    background: #ffffff;
    padding: 18px;
    border-radius: 8px;
}

.pdv-search {
    padding: 13px;
    background: #f1f1f1;
    border-radius: 5px;
    font-size: 12px;
    color: #888888;
    margin-bottom: 18px;
}

.pdv-item {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    padding: 14px 0;
    border-bottom: 1px solid #eeeeee;
    font-size: 13px;
}

.pdv-total {
    background: #137333;
    color: #ffffff;
    border-radius: 8px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pdv-total small {
    opacity: 0.8;
    margin-bottom: 8px;
}

.pdv-total strong {
    font-size: 27px;
    margin-bottom: 25px;
}

.pdv-pay {
    background: #ffffff;
    color: #137333;
    padding: 13px;
    border-radius: 5px;
    text-align: center;
    font-size: 12px;
    font-weight: bold;
}


/* ESTOQUE */

.stock-screen {
    min-height: 340px;
    padding: 35px 30px;
}

.stock-line {
    display: grid;
    grid-template-columns: 1fr 90px 100px;
    gap: 15px;
    align-items: center;
    padding: 17px 18px;
    background: #ffffff;
    border-bottom: 1px solid #eeeeee;
    font-size: 13px;
}

.stock-title {
    background: #137333;
    color: #ffffff;
    font-weight: bold;
    border-radius: 6px 6px 0 0;
}

.status-ok,
.status-low {
    padding: 6px 8px;
    border-radius: 4px;
    text-align: center;
    font-size: 10px;
}

.status-ok {
    background: #e8f5ec;
    color: #137333;
}

.status-low {
    background: #fff3d8;
    color: #886400;
}


/* COMANDAS */

.command-screen {
    min-height: 340px;
    padding: 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    align-items: center;
}

.command-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    min-height: 180px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.command-card small {
    color: #16833d;
    margin-bottom: 15px;
    font-weight: bold;
}

.command-card strong {
    font-size: 15px;
    margin-bottom: 25px;
}

.command-card span {
    font-size: 12px;
    color: #777777;
    margin-top: auto;
    margin-bottom: 7px;
}

.command-card b {
    font-size: 20px;
}


/* RELATÓRIOS */

.report-screen {
    min-height: 340px;
    padding: 25px;
}

.report-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.report-cards div {
    padding: 18px;
    background: #ffffff;
    border-radius: 7px;
}

.report-cards small {
    display: block;
    color: #777777;
    margin-bottom: 7px;
}

.report-cards strong {
    font-size: 20px;
}

.report-chart {
    height: 200px;
    padding: 25px;
    background: #ffffff;
    border-radius: 7px;
    display: flex;
    align-items: flex-end;
    gap: 14px;
}

.report-chart span {
    flex: 1;
    background: #16833d;
    border-radius: 4px 4px 0 0;
}


/* ==================================================
   CONFIANÇA
================================================== */

.trust-section {
    padding: 95px 0;
    background: #f7faf8;
    border-top: 1px solid #e6ece8;
    border-bottom: 1px solid #e6ece8;
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    align-items: center;
    gap: 80px;
}

.trust-lead {
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 18px;
}

.trust-content > p:not(.trust-lead) {
    font-size: 16px;
    line-height: 1.7;
    color: #5a5a5a;
}

.trust-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 35px;
}

.trust-point {
    padding: 18px;
    background: #ffffff;
    border: 1px solid #e1e7e3;
    border-radius: 8px;
}

.trust-point strong {
    display: block;
    color: #137333;
    font-size: 14px;
    margin-bottom: 6px;
}

.trust-point span {
    color: #666666;
    font-size: 12px;
    line-height: 1.5;
}


/* DEPOIMENTO */

.testimonial-card {
    padding: 35px;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e1e7e3;
    box-shadow: 0 20px 45px rgba(0,0,0,0.08);
}

.quote-mark {
    height: 45px;
    color: #16833d;
    font-size: 58px;
}

.testimonial-card > p {
    font-size: 18px;
    line-height: 1.6;
    margin: 8px 0 28px;
}

.testimonial-client {
    display: flex;
    align-items: center;
    gap: 12px;
}

.client-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #137333;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.testimonial-client strong {
    display: block;
    font-size: 14px;
    margin-bottom: 4px;
}

.testimonial-client span {
    color: #777777;
    font-size: 12px;
}

.testimonial-note {
    display: flex;
    gap: 10px;
    margin-top: 18px;
    padding: 16px 18px;
    background: #edf7f0;
    border-radius: 7px;
}

.testimonial-note span {
    color: #137333;
    font-weight: bold;
}

.testimonial-note p {
    color: #526257;
    font-size: 12px;
    line-height: 1.5;
}


/* ==================================================
   RECURSOS COMPLETOS
================================================== */

.features-section {
    padding: 95px 0;
    background: #ffffff;
}

.features-heading {
    max-width: 720px;
    margin: 0 auto 50px;
    text-align: center;
}

.features-heading p {
    max-width: 560px;
    margin: 0 auto;
    color: #5a5a5a;
    font-size: 17px;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.feature-card {
    min-height: 220px;
    padding: 28px 25px;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    background: #ffffff;
    transition: 0.2s;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: #bcd9c5;
    box-shadow: 0 14px 30px rgba(0,0,0,0.07);
}

.feature-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 22px;
    border-radius: 8px;
    background: #edf7f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.feature-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.feature-card p {
    color: #666666;
    font-size: 14px;
    line-height: 1.6;
}

/* ==================================================
   CONTRATAR
================================================== */

.hire-section {
    padding: 95px 0;
    background: #ffffff;
}

.hire-box {
    overflow: hidden;

    display: grid;
    grid-template-columns: 1.15fr 0.85fr;

    border-radius: 16px;

    background: #116a31;

    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.12);
}

.hire-content {
    padding: 65px 60px;

    color: #ffffff;
}

.hire-small {
    display: block;

    margin-bottom: 15px;

    font-size: 12px;
    font-weight: bold;

    letter-spacing: 1px;

    color: #bfe6ca;
}

.hire-content h2 {
    max-width: 570px;

    margin-bottom: 20px;

    font-size: 42px;

    line-height: 1.08;

    letter-spacing: -1.2px;
}

.hire-content > p {
    max-width: 590px;

    font-size: 17px;

    line-height: 1.7;

    color: #e0efe4;
}

.hire-points {
    display: flex;

    flex-wrap: wrap;

    gap: 12px 22px;

    margin-top: 30px;
}

.hire-points span {
    font-size: 13px;

    color: #ffffff;
}


/* LADO DIREITO */

.hire-action {
    padding: 50px 42px;

    background: #f7faf8;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: flex-start;
}

.whatsapp-circle {
    width: 58px;
    height: 58px;

    margin-bottom: 20px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #dff2e4;

    font-size: 27px;
}

.hire-action h3 {
    margin-bottom: 12px;

    font-size: 25px;

    line-height: 1.2;
}

.hire-action > p {
    margin-bottom: 24px;

    color: #5c5c5c;

    font-size: 15px;

    line-height: 1.6;
}

.hire-button {
    width: 100%;

    padding: 15px 20px;

    border-radius: 7px;

    background: #137333;

    color: #ffffff;

    text-decoration: none;

    text-align: center;

    font-size: 14px;

    font-weight: bold;

    transition: 0.2s;
}

.hire-button:hover {
    background: #0d5b28;

    transform: translateY(-1px);
}

.hire-action small {
    display: block;

    width: 100%;

    margin-top: 12px;

    text-align: center;

    color: #818181;

    font-size: 11px;
}

/* ==================================================
   RODAPÉ
================================================== */

.footer {
    padding: 70px 0 0;

    background: #102719;

    color: #ffffff;
}

.footer-grid {
    display: grid;

    grid-template-columns: 1.4fr 0.7fr 0.7fr 0.9fr;

    gap: 55px;

    padding-bottom: 50px;
}

.footer-logo {
    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 20px;

    text-decoration: none;

    color: #ffffff;
}

.footer-logo-icon {
    font-size: 28px;
}

.footer-logo-text {
    display: flex;

    flex-direction: column;
}

.footer-logo-text strong {
    font-size: 22px;

    line-height: 20px;
}

.footer-logo-text span {
    margin-top: 2px;

    font-size: 9px;

    letter-spacing: 1px;

    text-transform: uppercase;

    color: #9cc7a8;
}

.footer-brand p {
    max-width: 330px;

    color: #b9c8bd;

    font-size: 14px;

    line-height: 1.7;
}

.footer h4 {
    margin-bottom: 18px;

    font-size: 14px;

    color: #ffffff;
}

.footer-links {
    display: flex;

    flex-direction: column;
}

.footer-links a {
    width: fit-content;

    margin-bottom: 12px;

    text-decoration: none;

    color: #b9c8bd;

    font-size: 13px;

    transition: 0.2s;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-contact p {
    margin-bottom: 15px;

    color: #b9c8bd;

    font-size: 13px;

    line-height: 1.6;
}

.footer-contact a {
    display: inline-block;

    padding: 11px 16px;

    border: 1px solid #7bb38a;

    border-radius: 6px;

    color: #ffffff;

    text-decoration: none;

    font-size: 12px;

    font-weight: bold;

    transition: 0.2s;
}

.footer-contact a:hover {
    background: #ffffff;

    color: #102719;
}


/* ==================================================
   PARTE INFERIOR DO RODAPÉ
================================================== */

.footer-bottom {
    padding: 20px 0;

    border-top: 1px solid rgba(255, 255, 255, 0.1);

    text-align: center;
}

.footer-bottom p {
    color: #8fa096;

    font-size: 12px;
}


/* ==================================================
   WHATSAPP FLUTUANTE
================================================== */

.floating-whatsapp {
    position: fixed;

    right: 24px;
    bottom: 24px;

    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #137333;

    color: #ffffff;

    text-decoration: none;

    font-size: 26px;

    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.22);

    z-index: 1200;

    transition: 0.2s;
}

.floating-whatsapp:hover {
    transform: translateY(-3px);

    background: #0d5b28;
}

/* ==================================================
   TABLET
================================================== */

@media (max-width: 950px) {

    .nav {
        gap: 15px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .hero h1 {
        font-size: 58px;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px 0;
    }

    .benefit-card:nth-child(2) {
        border-right: none;
    }

    .system-panel,
    .system-panel.active {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .trust-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hire-box {
        grid-template-columns: 1fr;
    }

    .hire-content {
        padding: 55px 45px;
    }

    .hire-action {
        padding: 40px 45px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 40px;
    }

}


/* ==================================================
   CELULAR
================================================== */

@media (max-width: 720px) {

    .container {
        width: 92%;
    }

    .header-content {
        height: 68px;
    }

    .menu-mobile {
        display: block;
    }

    .nav {
        position: absolute;
        top: 68px;
        left: 0;
        width: 100%;
        padding: 25px 4%;
        background: #ffffff;
        border-bottom: 1px solid #e4e4e4;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .nav.active {
        display: flex;
    }

    .nav a {
        padding: 14px 0;
        border-bottom: 1px solid #eeeeee;
    }

    .nav .btn-whatsapp {
        text-align: center;
        margin-top: 15px;
    }


    /* HERO */

    .hero {
        padding: 48px 0 55px;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        gap: 42px;
    }

    .hero h1 {
        font-size: 45px;
        line-height: 1;
    }

    .hero-description {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
        padding: 16px;
    }

    .system-preview {
        border-width: 7px;
        border-bottom-width: 13px;
    }

    .preview-body {
        min-height: 215px;
    }

    .preview-sidebar {
        width: 74px;
        padding: 14px 8px;
        gap: 11px;
    }

    .preview-sidebar span {
        font-size: 6px;
    }

    .preview-main {
        padding: 10px;
    }

    .card {
        padding: 7px;
    }

    .card small {
        font-size: 5px;
    }

    .card strong {
        font-size: 8px;
    }

    .chart {
        height: 110px;
        margin-top: 10px;
        padding: 10px;
        gap: 6px;
    }


    /* BENEFÍCIOS */

    .benefits {
        padding: 55px 0 60px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefit-card {
        padding: 30px 10px;
        border-right: none !important;
        border-bottom: 1px solid #e1e1e1;
    }

    .benefit-card:last-child {
        border-bottom: none;
    }


    /* SISTEMA */

    .system-section {
        padding: 65px 0;
    }

    .system-heading h2,
    .trust-content h2,
    .features-heading h2 {
        font-size: 32px;
    }

    .system-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .system-tabs::-webkit-scrollbar {
        display: none;
    }

    .system-tab {
        flex: 0 0 auto;
        padding: 10px 17px;
    }

    .system-panel,
    .system-panel.active {
        display: none;
    }

    .system-panel.active {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .system-panel-text h3 {
        font-size: 26px;
    }

    .pdv-screen {
        min-height: auto;
        padding: 12px;
        grid-template-columns: 1fr;
    }

    .stock-screen {
        min-height: auto;
        padding: 15px 10px;
    }

    .stock-line {
        grid-template-columns: minmax(0, 1fr) 52px 70px;
        gap: 7px;
        padding: 12px 9px;
        font-size: 10px;
    }

    .command-screen {
        min-height: auto;
        padding: 15px;
        grid-template-columns: 1fr;
    }

    .report-screen {
        min-height: auto;
        padding: 12px;
    }

    .report-chart {
        height: 150px;
        padding: 15px;
        gap: 7px;
    }


    /* CONFIANÇA */

    .trust-section {
        padding: 65px 0;
    }

    .trust-points {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .testimonial-card {
        padding: 25px;
    }


    /* RECURSOS */

    .features-section {
        padding: 65px 0;
    }

    .features-heading {
        margin-bottom: 35px;
    }

    .features-heading p {
        font-size: 15px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .feature-card {
        min-height: auto;
        padding: 22px;
    }

    .feature-icon {
        margin-bottom: 16px;
    }

        /* CONTRATAR */

        .hire-section {
            padding: 65px 0;
        }
    
        .hire-box {
            border-radius: 12px;
        }
    
        .hire-content {
            padding: 38px 24px;
        }
    
        .hire-content h2 {
            font-size: 31px;
        }
    
        .hire-content > p {
            font-size: 15px;
        }
    
        .hire-points {
            flex-direction: column;
    
            gap: 10px;
    
            margin-top: 24px;
        }
    
        .hire-action {
            padding: 32px 24px;
        }
    
        .hire-action h3 {
            font-size: 22px;
        }
    
        .hire-button {
            padding: 16px;
        }

            /* RODAPÉ */

    .footer {
        padding-top: 55px;
    }

    .footer-grid {
        grid-template-columns: 1fr;

        gap: 32px;

        padding-bottom: 40px;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .footer-bottom {
        padding: 18px 0;
    }

    .footer-bottom p {
        line-height: 1.6;
    }


    /* WHATSAPP FLUTUANTE */

    .floating-whatsapp {
        right: 16px;
        bottom: 16px;

        width: 54px;
        height: 54px;

        font-size: 24px;
    }

}