:root {
    /* Cores principais */
    --color-primary: #001d3d;
    /* Azul escuro – base, autoridade */
    --color-secondary: #00c897;
    /* Verde – ação, CTA, destaque */

    /* Cores neutras */
    --color-light: #f8f9fa;
    /* Fundo claro */
    --color-muted: #4a4e69;
    /* Texto secundário / detalhes */

    /* Extras úteis */
    --color-text: #001d3d;
    --color-bg: #f8f9fa;
    --color-contrast: #ffffff;
}

body {
    background-color: var(--color-primary);

}

main {
    display: flex;
    flex-direction: column;
    margin: auto;
    background-color: var(--color-text);
    font-family: sans-serif, Arial, Helvetica;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/*---------------------------------------------
                Sessão: HERO
---------------------------------------------*/


/* =========================
   HERO — BASE
========================= */

.hero {
    position: relative;
    width: 100%;
    display: flex;
    overflow: hidden;
    color: #fff;
    background: #000;
    padding-top: 72px;
    /* altura média do header */
}

/* -------------------------
   MEDIA (IMAGENS)
------------------------- */

.hero-media {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: none;
}

/* -------------------------
   CONTEÚDO
------------------------- */

.hero-content {
    position: relative;
    z-index: 2;
    width: 90%;
}

/* Overlay */
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(0, 0, 0, 0),
            rgba(0, 0, 0, 0));
    z-index: 1;
}

/* =========================
   MOBILE — 7x9 | 80vh
========================= */

@media (max-width: 767px) {
    .hero {
        aspect-ratio: 7 / 9;
        height: 90vh;

        align-items: flex-end;
        /* texto na base */
        justify-content: center;
        padding-bottom: 40px;
        font-family: sans-serif, Arial, Helvetica;
    }

    .hero-img-mobile {
        display: block;
        background-image: url("imagens/banner7x9.png");
    }

    .hero-content {
        text-align: center;
        max-width: 520px;
    }
}

/* =========================
   TABLET — 2x1
========================= */

@media (min-width: 768px) and (max-width: 1023px) {
    .hero {
        aspect-ratio: 2 / 1;

        align-items: center;
        /* centro vertical */
        justify-content: flex-start;
        /* esquerda */
        font-family: sans-serif, Arial, Helvetica;
    }

    .hero-img-tablet {
        display: block;
        background-image: url("imagens/banner4X2.png");
    }

    .hero-content {
        max-width: 560px;
        text-align: left;
        padding: 50px;
    }
}

/* =========================
   DESKTOP — 8x3
========================= */

@media (min-width: 1024px) {
    .hero {
        aspect-ratio: 8 / 3;
        overflow: hidden;
        align-items: center;
        justify-content: flex-start;
        font-family: sans-serif, Arial, Helvetica;
    }

    .hero-img-desktop {
        display: block;
        background-image: url("imagens/banner24X15.png");
    }

    .hero-content {
        max-width: 640px;
        text-align: left;
        padding: 50px;
    }

    .hero-content h1 {
        font-size: 2.8em;
    }
}

/* =========================
   DESKTOP TELA GRANDE
========================= */

@media (min-width: 1440px) {
    .hero {
        padding-left: 140px;
    }

    .hero-content {
        max-width: 720px;
        text-align: left;
        padding: 50px;
    }
}









/*---------------------------------------------
                Sessão: HEADER
---------------------------------------------*/




/* =========================
   HEADER — BASE
========================= */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    z-index: 1000;

    background: rgba(0, 0, 0, 0.308);
    font-family: sans-serif, Arial, Helvetica;
}

.header-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.logo {
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #fff;
}

/* =========================
   NAV DESKTOP
========================= */

.nav-desktop {
    display: none;
    gap: 32px;
}

.nav-desktop a {
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    opacity: 0.85;
    padding: 6px 10px;
    border-radius: 8px;

    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.nav-desktop a:hover {
    background-color: var(--color-secondary);
    color: var(--color-contrast);
    transform: scale(1.05);
}

/* =========================
   HAMBURGER
========================= */

.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;

    display: flex;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: #fff;
}

/* =========================
   MENU MOBILE — FIX DEFINITIVO
========================= */

.nav-mobile {
    position: fixed;
    top: 0;
    right: 0;

    width: 280px;
    height: 100vh;

    background: var(--color-secondary);
    padding: 96px 24px;

    display: flex;
    flex-direction: column;
    gap: 24px;

    transform: translateX(100%);
    transition: transform 0.3s ease;
    font-family: sans-serif, Arial, Helvetica;
    z-index: 999;
}

/* Estado aberto */
.menu-open .nav-mobile {
    transform: translateX(0);
}

/* Overlay */
.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.103);

    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;

    z-index: 998;
}

.menu-open .menu-overlay {
    opacity: 1;
    pointer-events: auto;
}

.nav-mobile a {
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    opacity: 0.85;
    padding: 6px 10px;
    border-radius: 8px;

    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.nav-mobile a:hover {
    background-color: var(--color-bg);
    color: var(--color-secondary);
    transform: scale(1.05);
}

.cta-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 14px 26px;
    border-radius: 999px;

    border: 1px solid var(--color-secondary);
    color: var(--color-light);

    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    text-decoration: none;

    background-color: transparent;

    transition:
        background-color 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.cta-link:hover {
    background-color: var(--color-secondary);
    color: #0b0b0b;
    /* melhora contraste */
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}


@media (max-width: 767px) {
    .cta-link {
        width: 80%;
        text-align: center;
    }
}

/* =========================
   ESTADO ATIVO
========================= */

.menu-open .nav-mobile {
    right: 0;
}

.menu-open .menu-overlay {
    opacity: 1;
    pointer-events: auto;
}

/* =========================
   BREAKPOINTS
========================= */

/* Mobile pequeno e normal */
@media (max-width: 767px) {
    .menu-toggle {
        display: flex;
    }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1023px) {
    .menu-toggle {
        display: flex;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .menu-toggle {
        display: none;
    }

    .nav-desktop {
        display: flex;
    }

    .nav-mobile,
    .menu-overlay {
        display: none;
    }
}

/* Tela grande */
@media (min-width: 1440px) {
    .header-inner {
        padding: 20px 40px;
    }
}

@media (min-width: 1024px) {

    .nav-mobile,
    .menu-overlay {
        display: none !important;
    }
}






/*---------------------------------------------
                Sessão: introdução
---------------------------------------------*/


/*---------------------------------------------
        Sessão: PROBLEM REAL
---------------------------------------------*/

.problem-real {
    width: 100%;
    background-color: var(--color-primary);
    padding: 100px 20px;
    display: flex;
    justify-content: center;
}

.problem-real-inner {
    max-width: 1200px;
    width: 100%;
    color: var(--color-light);
}

/* Header */

.problem-real-header {
    max-width: 680px;
    margin-bottom: 72px;
}

.problem-real-header .eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-secondary);
    margin-bottom: 12px;
}

.problem-real-header h2 {
    font-size: 2.1rem;
    line-height: 1.3;
    margin-bottom: 16px;
}

.premises {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
}

/* Grid */

.problem-real-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}

/* Cards */

.problem-real-card {
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    padding: 30px;
    backdrop-filter: blur(6px);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background-color 0.25s ease;
}

.problem-real-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.problem-real-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.82);
}

.problem-real-card:hover {
    transform: translateY(-4px);
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.35);
}

/* Footer */

.problem-real-footer {
    margin-top: 64px;
    max-width: 620px;
}

.problem-real-footer p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
}

/* =========================
   TABLET
========================= */

@media (min-width: 768px) {
    .problem-real-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .problem-real-header h2 {
        font-size: 2.3rem;
    }

    .problem-real-header {
        text-align: left;
        padding: 0 0 0 20px;
        max-width: 500px;
    }

    .problem-real-footer {
        text-align: left;
        max-width: 500px;
    }
}


/* =========================
   DESKTOP
========================= */

@media (min-width: 1024px) {
    .problem-real {
        padding: 130px 40px;
    }

    .problem-real-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .problem-real-header h2 {
        font-size: 2.5rem;
    }
}







/*---------------------------------------------
                Sessão: Nome da Sessão
---------------------------------------------*/



/*---------------------------------------------
        Sessão: CHANNELS
---------------------------------------------*/

.channels {
    width: 100%;
    background-color: var(--color-primary);
    padding: 0px 20px;
    display: flex;
    justify-content: center;
}

.channels-inner {
    max-width: 1200px;
    width: 100%;
    color: var(--color-light);
}

/* Header */

.channels-header {
    max-width: 680px;
    margin-bottom: 72px;
}

.channels-header .eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-secondary);
    margin-bottom: 12px;
}

.channels-header h2 {
    font-size: 2.1rem;
    line-height: 1.3;
    margin-bottom: 16px;
}

.channels-intro {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
}

/* Flow */

.channels-flow {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}

/* Cards */

.channel-card {
    position: relative;
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    padding: 34px 30px;
    backdrop-filter: blur(6px);

    transition:
        transform 0.25s ease,
        background-color 0.25s ease,
        box-shadow 0.25s ease;
}

.channel-step {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    margin-bottom: 12px;
    color: var(--color-secondary);
}

.channel-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.channel-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.82);
}

/* Destaque */

.channel-card.highlight {
    background-color: rgba(0, 200, 151, 0.12);
    border-color: rgba(0, 200, 151, 0.35);
}

.channel-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.35);
}

/* Footer */

.channels-footer {
    margin-top: 64px;
    max-width: 620px;
}

.channels-footer p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
}

/* =========================
   TABLET
========================= */

@media (min-width: 768px) {
    .channels-flow {
        grid-template-columns: repeat(3, 1fr);
    }

    .channels-header {
        text-align: left;
        padding: 0 0 0 20px;
        max-width: 500px;
    }

    .channels-header h2 {
        font-size: 2.3rem;
    }

    .channels-footer {
        text-align: left;
        padding: 0 0 0 20px;
        max-width: 500px;
    }
}

/* =========================
   DESKTOP
========================= */

@media (min-width: 1024px) {
    .channels {
        padding: 130px 40px;
    }

    .channels-header h2 {
        font-size: 2.5rem;
    }
}







/*---------------------------------------------
        Sessão: LANDING EXPLAIN
---------------------------------------------*/

.landing-explain {
    width: 100%;
    background-color: var(--color-primary);
    padding: 120px 20px;
    display: flex;
    justify-content: center;
}

.landing-explain-inner {
    max-width: 1200px;
    width: 100%;
    color: var(--color-light);
}

/* Header */

.landing-explain-header {
    max-width: 720px;
    margin-bottom: 72px;
}

.landing-explain-header .eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-secondary);
    margin-bottom: 12px;
}

.landing-explain-header h2 {
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 16px;
}

.landing-explain-intro {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
}

/* Conteúdo */

.landing-explain-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

/* Texto */

.landing-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
}

/* Pontos */

.landing-points {
    display: grid;
    gap: 24px;
}

.landing-point {
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    padding: 28px;
    backdrop-filter: blur(6px);
}

.landing-point h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.landing-point p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

/* Footer */

.landing-explain-footer {
    margin-top: 72px;
    max-width: 620px;
}

.landing-explain-footer p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
}

/* =========================
   TABLET
========================= */

/* Tablet e Desktop */


@media (min-width: 768px) {
    .landing-explain-content {
        grid-template-columns: 1.4fr 1fr;
        align-items: start;
    }

    .landing-explain-header {
        text-align: left;
        padding: 0 0 0 20px;
    }

    .landing-explain-header h2 {
        font-size: 2.4rem;
    }

    .landing-explain-header,
    .landing-explain-footer {
        text-align: left;
        padding: 0 0 0 20px;
        max-width: 500px;
    }

    .landing-text {
        text-align: left;
        padding: 0 0 0 20px;
        max-width: 700px;
    }
}

/* =========================
   DESKTOP
========================= */

@media (min-width: 1024px) {
    .landing-explain {
        padding: 140px 40px;
    }

    .landing-explain-header h2 {
        font-size: 2.6rem;
    }
}







/*---------------------------------------------
                Sessão: Nome da Sessão
---------------------------------------------*/


/*---------------------------------------------
            Sessão: CONVERSION
---------------------------------------------*/

.conversion {
    width: 100%;
    background-color: var(--color-primary);
    padding: 80px 20px;
    color: var(--color-light);
}

.conversion-inner {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */

.conversion-header {
    max-width: 720px;
    margin-bottom: 60px;
}

.conversion-header h2 {
    font-size: 2.2rem;
    margin: 12px 0 16px;
}

.conversion-intro {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

/* Grid */

.conversion-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

/* Cards */

.conversion-card {
    background-color: rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 28px;
    transition: transform 0.25s ease, background-color 0.25s ease;
}

.conversion-card h3 {
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: var(--color-secondary);
}

.conversion-card p {
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.conversion-card:hover {
    transform: translateY(-4px);
    background-color: rgba(255, 255, 255, 0.1);
}

/* Destaque */

.conversion-card.highlight {
    background-color: var(--color-secondary);
    color: #0b0b0b;
}

.conversion-card.highlight h3,
.conversion-card.highlight p {
    color: #0b0b0b;
}

/* Footer */

.conversion-footer {
    margin-top: 60px;
    max-width: 720px;
    font-size: 1rem;
    line-height: 1.6;
}

/* =========================
   TABLET
========================= */

@media (min-width: 768px) {
    .conversion-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .conversion-header,
    .conversion-footer {
        text-align: left;
    }
}

/* =========================
   DESKTOP
========================= */

@media (min-width: 1024px) {
    .conversion {
        padding: 100px 40px;
    }

    .conversion-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}








/*---------------------------------------------
                Sessão: Nome da Sessão
---------------------------------------------*/



/*---------------------------------------------
            Sessão: EXAMPLES
---------------------------------------------*/

.examples {
    width: 100%;
    background-color: var(--color-bg);
    padding: 80px 20px;
    color: var(--color-text);
}

.examples-inner {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */

.examples-header {
    max-width: 760px;
    margin-bottom: 60px;
}

.examples-header h2 {
    font-size: 2.2rem;
    margin: 12px 0 16px;
}

.examples-intro {
    color: var(--color-muted);
    line-height: 1.6;
    padding: 0 10px 0 10px;
}

/* Grid */

.examples-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}

/* Cards */

.example-card {
    background-color: #ffffff;
    border-radius: 18px;
    padding: 32px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    text-align: left;
}

.example-card h3 {
    font-size: 1.25rem;
    margin-bottom: 6px;
}

.example-sub {
    font-size: 0.9rem;
    color: var(--color-muted);
    margin-bottom: 14px;
    font-weight: bold;
}

.example-card p {
    line-height: 1.65;
    margin-bottom: 12px;
}

.example-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

/* Destaque */

.example-card.highlight {
    background-color: var(--color-primary);
    color: var(--color-light);
}

.example-card.highlight h3,
.example-card.highlight .example-sub,
.example-card.highlight p {
    color: var(--color-light);
}

/* Footer */

.examples-footer {
    max-width: 760px;
    margin-top: 60px;
    font-size: 1rem;
    line-height: 1.6;
    padding: 0 10px 0 10px;
}

/* =========================
   TABLET
========================= */

@media (min-width: 768px) {
    .examples-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .examples-header,
    .examples-footer {
        text-align: left;
    }
}

/* =========================
   DESKTOP
========================= */

@media (min-width: 1024px) {
    .examples {
        padding: 100px 40px;
    }

    .examples-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}







/*---------------------------------------------
                Sessão: Nome da Sessão
---------------------------------------------*/





/*---------------------------------------------
            Sessão: REQUIREMENTS
---------------------------------------------*/

.requirements {
    width: 100%;
    background-color: var(--color-primary);
    padding: 80px 20px;
    color: var(--color-light);
}

.requirements-inner {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */

.requirements-header {
    max-width: 760px;
    margin-bottom: 60px;
}

.requirements-header h2 {
    font-size: 2.2rem;
    margin: 12px 0 16px;
}

.requirements-intro {
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

/* Grid */

.requirements-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

/* Cards */

.requirements-card {
    background-color: rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    padding: 36px;
}

.requirements-card h3 {
    margin-bottom: 24px;
    font-size: 1.3rem;
    color: var(--color-secondary);
}

/* Lista */

.requirements-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.requirements-list li {
    margin-bottom: 18px;
    line-height: 1.6;
    font-size: 0.95rem;
}

.requirements-list strong {
    display: block;
    margin-bottom: 4px;
    font-weight: 600;
}

/* Destaque */

.requirements-card.highlight {
    background-color: var(--color-secondary);
    color: #0b0b0b;
}

.requirements-card.highlight h3,
.requirements-card.highlight strong {
    color: #0b0b0b;
}

/* Footer */

.requirements-footer {
    max-width: 760px;
    margin-top: 60px;
    line-height: 1.6;
    font-size: 1rem;
}

/* =========================
   TABLET
========================= */

@media (min-width: 768px) {
    .requirements-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .requirements-header,
    .requirements-footer {
        text-align: left;
    }
}

/* =========================
   DESKTOP
========================= */

@media (min-width: 1024px) {
    .requirements {
        padding: 100px 40px;
    }
}





/*---------------------------------------------
                Sessão: Nome da Sessão
---------------------------------------------*/




/*---------------------------------------------
            Sessão: FIT
---------------------------------------------*/

.fit {
    width: 100%;
    background-color: var(--color-bg);
    padding: 80px 20px;
    color: var(--color-text);
}

.fit-inner {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */

.fit-header {
    max-width: 760px;
    margin-bottom: 60px;
    padding: 0 10px 0 10px;
}

.fit-header h2 {
    font-size: 2.2rem;
    margin: 12px 0 16px;
}

.fit-intro {
    color: var(--color-muted);
    line-height: 1.6;
}

/* Grid */

.fit-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

/* Cards */

.fit-card {
    border-radius: 18px;
    padding: 36px;
}

.fit-card h3 {
    margin-bottom: 20px;
    font-size: 1.3rem;
}

/* Positivo */

.fit-card.positive {
    background-color: #ffffff;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.06);
    text-align: left;
}

.fit-card.positive h3 {
    color: var(--color-primary);
}

/* Negativo */

.fit-card.negative {
    background-color: rgba(0, 0, 0, 0.05);
    text-align: left;
}

.fit-card.negative h3 {
    color: #8b0000;
}

/* Lista */

.fit-card ul {
    list-style: disc;
    padding-left: 20px;
    margin: 0;
}

.fit-card ul li {
    margin-bottom: 14px;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Footer */

.fit-footer {
    max-width: 760px;
    margin-top: 60px;
    font-size: 1rem;
    line-height: 1.6;
    padding: 0 10px 0 10px;
}

/* =========================
   TABLET
========================= */

@media (min-width: 768px) {
    .fit-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fit-header,
    .fit-footer {
        text-align: left;
    }
}

/* =========================
   DESKTOP
========================= */

@media (min-width: 1024px) {
    .fit {
        padding: 100px 40px;
    }
}






/*---------------------------------------------
                Sessão: Nome da Sessão
---------------------------------------------*/





.service {
    background-color: #001d3d;
    color: #ffffff;
    padding: 6rem 1.5rem;
    text-align: center;
}

.service-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.service-header {
    text-align: left;
}

/* Header */
.service-header .eyebrow {
    color: #00c897;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.service-header h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.service-intro {
    font-size: 1rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 20px 10px;
    color: #cbd5f5;

}

/* Cards */
.service-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background-color: #022b55;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 200, 151, 0.25);
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #00c897;
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #e5e7eb;
}

/* CTA */
.service-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.service-cta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cta-primary {
    background-color: #00c897;
    color: #001d3d;
    font-weight: bolder;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 5px 8px 20px rgb(0, 200, 150);
}

.cta-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #00c897;
}

.cta-secondary:hover {
    background-color: var(--color-primary);
    color: var(--color-bg);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 200, 151, 0.25);
}

/* Responsivo */
@media (min-width: 768px) {
    .service-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .service-cards {
        grid-template-columns: repeat(4, 1fr);
    }

    .service-header {
        text-align: left;
    }

    .service-cta {
        flex-direction: row;
        gap: 1.5rem;
        justify-content: flex-start;
    }
}







/*---------------------------------------------
            Sessão: FINAL CTA
---------------------------------------------*/

.final-cta {
    width: 100%;
    background: linear-gradient(135deg,
            var(--color-primary),
            #000814);
    padding: 100px 20px;
    color: var(--color-light);
}

.final-cta-inner {
    max-width: 960px;
    margin: 0 auto;
}

/* Conteúdo */

.final-cta-content {
    text-align: center;
}

.final-cta-content h2 {
    font-size: 2.4rem;
    margin-bottom: 8px;
}

.final-cta-content h3 {
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.9);
}

.final-cta-text {
    max-width: 720px;
    margin: 0 auto 40px;
    line-height: 1.7;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Ações */

.final-cta-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

/* Botão principal */

.cta-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 16px 32px;
    border-radius: 999px;

    background-color: var(--color-secondary);
    color: #0b0b0b;

    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background-color 0.25s ease;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
}

/* Botão secundário */

.cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 16px 32px;
    border-radius: 999px;

    background-color: var(--color-contrast);
    color: var(--color-text);

    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background-color 0.25s ease;
}

.cta-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
}


/* =========================
   TABLET
========================= */

@media (min-width: 768px) {
    .final-cta-content {
        text-align: left;
    }

    .final-cta-actions {
        flex-direction: row;
        justify-content: flex-start;
    }
}

/* =========================
   DESKTOP
========================= */

@media (min-width: 1024px) {
    .final-cta {
        padding: 120px 40px;
    }

    .final-cta-content h2 {
        font-size: 2.8rem;
    }

    .final-cta-content h3 {
        font-size: 1.8rem;
    }
}







/*---------------------------------------------
                Sessão: Nome da Sessão
---------------------------------------------*/


/* ===============================
   FAQ - Quebra de objeções
================================= */

.faq {
    width: 100%;
    padding: 5rem 1.5rem;
    background: #f8fafc;
}

.faq-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 10px 0 10px;
}

/* Cabeçalho */
.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq .eyebrow {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #22c55e;
    font-weight: 600;
    margin-bottom: 0.6rem;
}

.faq h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    margin-bottom: 0.8rem;
    color: #020617;
}

.faq-intro {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1rem;
    color: #475569;
    line-height: 1.6;
}

/* Lista */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: left;
}

/* Item */
.faq-item {
    background: #ffffff;
    border-radius: 12px;
    padding: 1.2rem 1.4rem;
    border: 1px solid #e5e7eb;
    transition: box-shadow 0.3s ease;
}

.faq-item[open] {
    box-shadow: 0 12px 30px rgba(2, 6, 23, 0.08);
}

/* Pergunta */
.faq-item summary {
    cursor: pointer;
    font-weight: 600;
    font-size: 1.05rem;
    color: #020617;
    list-style: none;
    position: relative;
    padding-right: 1.5rem;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

/* Ícone + */
.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.3rem;
    color: #22c55e;
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    content: "–";
}

/* Resposta */
.faq-item p {
    margin-top: 1rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #334155;
}










/* ===============================
   Footer
================================= */

.site-footer {
    background: #020617;
    color: #e5e7eb;
    padding: 4rem 1.5rem 2rem;
    width: 100%;

}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
    padding: 0 10px 0 20px;
}

/* Área principal */
.footer-main {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

/* Marca */
.footer-brand h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #ffffff;
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #cbd5f5;
    max-width: 360px;
}

/* Títulos */
.footer-title {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
    color: #94a3b8;
}

/* Navegação */
.footer-nav ul {
    list-style: none;
    padding: 0;
}

.footer-nav li {
    margin-bottom: 0.6rem;
}

.footer-nav a {
    color: #e5e7eb;
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #22c55e;
}

/* Contato */
.footer-contact p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
    color: #cbd5f5;
}

.footer-whatsapp {
    display: inline-block;
    padding: 0.7rem 1.4rem;
    background: #22c55e;
    color: #020617;
    font-weight: 600;
    border-radius: 999px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.35);
}

/* Rodapé inferior */
.footer-bottom {
    border-top: 1px solid rgba(148, 163, 184, 0.2);
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.85rem;
    color: #94a3b8;
}

.footer-bottom span {
    display: block;
    margin-top: 0.4rem;
}

/* ===============================
   Responsivo
================================= */

@media (max-width: 900px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: left;
    }
}