/* ========================================
   RESET BÁSICO
======================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    background: linear-gradient(135deg,
            var(--bg) 0%,
            var(--surface) 30%,
            var(--surface-light) 100%);

    color: #ffffff;
    font-family: "Barlow Semi Condensed", sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* VARIÁVEIS */

:root {

    --primary: #2ea8ff;
    --primary-light: #84d2ff;

    --bg: #08111f;
    --surface: #122038;
    --surface-light: #223458;

    --surface-contrast: #1d2b46;
    --surface-contrast-light: #5273b1;

    --text: #ffffff;
    --text-secondary: #a7b6c8;

    --border: rgba(255, 255, 255, .08);

    --shadow:
        0 15px 40px rgba(0, 0, 0, .35);

    --radius: 18px;
    --transition: .3s ease;
}

/* PADRÕES DE CONSTRUÇÃO */

/* CONTAINER */

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

/* EYEBROW DAS SEÇÕES */

.section-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;

    color: var(--primary-light);

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

    letter-spacing: 2px;

    margin-bottom: 18px;
}

.eyebrow-line {
    width: 40px;
    height: 2px;
    background: var(--primary);
}

/* TITULO E TEXTO DE SECÃO */

.section-title {

    font-family: "Playfair Display", serif;
    font-size: clamp(1.5rem, 2.6vw, 2.1rem);
    line-height: clamp(1.5rem, 2.6vw, 2.1rem);

    text-align: center;

    margin-bottom: 1.5rem;

    position: relative;

}

.section-title::after {

    content: "";

    width: 300px;
    height: 3px;

    background: var(--primary);

    display: block;

    margin: 15px auto 0;
}

.container-text {
    width: 90%;
    margin: 1rem;
    text-align: center;
}

/* HEADER */

.header {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

    backdrop-filter: blur(18px);

    background: rgba(8, 17, 31, .75);

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

.header-container {

    height: 60px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-container a {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
}

.nav-list {

    display: flex;
    align-items: center;

    list-style: none;

    gap: 35px;
}

.nav-list a {

    text-decoration: none;

    color: var(--text-secondary);

    transition: var(--transition);
}

.nav-list a:hover {
    color: var(--primary-light);
}

.header-action {

    text-decoration: none;

    color: white;

    font-family: "Montserrat", sans-serif;

    background: linear-gradient(135deg,
            var(--primary),
            #6fd0ff);

    padding: 8px 16px;

    border-radius: 999px;

    transition: var(--transition);
}

.header-action:hover {

    transform: translateY(-1px);

    box-shadow:
        0 0 20px rgba(46, 168, 255, .4);
}

/* Estado inicial */

.header {

    background: transparent;

    border-bottom: 1px solid transparent;

    transition:
        background .4s ease,
        backdrop-filter .4s ease,
        border-color .4s ease,
        box-shadow .4s ease;
}

/* Após rolar */

.header--active {

    background: rgba(8, 17, 31, .85);

    backdrop-filter: blur(18px);

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

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

/* HERO */

.hero {

    position: relative;

    min-height: 85vh;

    display: flex;
    align-items: center;

    overflow: hidden;
}

/* IMAGEM */

.hero-background {

    position: absolute;

    inset: 0;

    z-index: 0;
}

.hero-background img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;
}

/* CAMADA SOBRE A IMAGEM */

.hero-overlay {

    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(90deg,
            rgba(5, 15, 28, .92) 0%,
            rgba(5, 15, 28, .75) 40%,
            rgba(5, 15, 28, .35) 70%,
            rgba(5, 15, 28, .15) 100%);
}

/* CONTEÚDO */

.hero-container {

    padding-top: 35px;

    position: relative;

    z-index: 2;

    margin: 0 auto;

    display: flex;
    align-items: center;
}

.hero-content {

    max-width: 700px;
}

/* TAG */

.hero-tag {

    display: inline-block;

    padding: 9px 18px;

    margin-bottom: 25px;

    border-radius: 999px;

    background: rgba(46, 168, 255, .12);

    border: 1px solid rgba(132, 210, 255, .35);

    color: var(--primary-light);

    font-family: "Montserrat", sans-serif;

    font-size: .85rem;

    letter-spacing: .5px;

    backdrop-filter: blur(10px);
}

/* TÍTULO */

.hero-title {

    font-family: "Playfair Display", serif;

    font-size: 4rem;

    line-height: 1;

    letter-spacing: -2px;

    margin-bottom: 30px;

    color: #ffffff;
}

.hero-title span {

    display: block;

    color: var(--primary-light);

}

/* TEXTO */

.hero-text {

    max-width: 600px;

    margin-bottom: 40px;

    color: #d5e0ed;

    font-size: 1.25rem;

    line-height: 1.7;
}

/* BOTÕES */

.hero-buttons {

    display: flex;

    gap: 18px;
}

.btn {

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

    text-decoration: none;

    padding: 15px 28px;

    border-radius: 999px;

    font-family: "Montserrat", sans-serif;

    transition: var(--transition);
}

.btn--primary {

    background: linear-gradient(135deg,
            var(--primary),
            #70d5ff);

    color: white;
}

.btn--primary:hover {

    transform: translateY(-2px);

    box-shadow:
        0 0 30px rgba(46, 168, 255, .45);
}

.btn--secondary {

    border: 1px solid rgba(255, 255, 255, .15);

    color: white;
}

.btn--secondary:hover {

    background: rgba(255, 255, 255, .05);
}

.hero-visual {

    background-image: url('assets/img/foto2');

    height: 500px;

    border-radius: 30px;

    background:
        linear-gradient(135deg,
            rgba(46, 168, 255, .2),
            rgba(255, 255, 255, .05));

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

    backdrop-filter: blur(20px);
}

.hero-visual img {
    height: 100%;
}

/* ========================================
   SEÇÕES
======================================== */

section {
    scroll-margin-top: 20px;
    padding: 30px 0;
}

/* ========================================
   CARDS
======================================== */

.competencias-grid,
.formacoes-grid,
.contato-cards {

    display: grid;

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

    gap: 25px;
}

.card,
.formation-card,
.contact-card {

    background: linear-gradient(135deg,
            var(--surface-contrast-light),
            var(--surface-contrast));

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

    border-radius: var(--radius);

    padding: 1rem;

    transition: var(--transition);

    box-shadow: var(--shadow);
}

.card:hover,
.formation-card:hover,
.contact-card:hover {

    transform: translateY(-8px);

    border-color:
        rgba(46, 168, 255, .35);
}

.contact-card img {
    height: 50px;
}

.contact-card .title {
    gap: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: left;
}

.card h3,
.formation-card h3,
.contact-card h3 {

    font-family: "Montserrat", sans-serif;

    color: var(--primary-light);
}

.card p,
.formation-card p,
.contact-card p {

    color: var(--text-secondary);
}

.contact-card {

    text-decoration: none;
}

.como-funciona {
    background-color: var(--surface-contrast);
    padding: 100px 0;
}

/* =========================
   PROCESSO
========================= */

.process {
    width: min(700px, 100%);
    margin: 60px auto 0;
}

.process-step {
    display: grid;
    grid-template-columns: 70px 1fr;
    align-items: center;
    gap: 25px;
}

/* =========================
   ÍCONE
========================= */

.process-icon {
    width: 70px;
    height: 70px;

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

    border-radius: 50%;

    background: var(--primary);
    color: #fff;

    font-size: 24px;

    box-shadow:
        0 0 0 8px rgba(46, 168, 255, .08),
        0 8px 25px rgba(46, 168, 255, .20);

    position: relative;
    z-index: 2;
}

/* =========================
   CONTEÚDO
========================= */

.process-content {
    padding: 5px 0;
}

.process-label {
    display: block;

    margin-bottom: 6px;

    color: var(--primary-light);

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

    text-transform: uppercase;
    letter-spacing: .5px;
}

.process-content p {
    margin: 0;

    max-width: 520px;

    color: var(--text);

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

/* =========================
   TRILHA
========================= */

.process-line {
    width: 3px;
    height: 55px;

    margin-left: 33px;

    background: linear-gradient(to bottom,
            var(--primary),
            rgba(46, 168, 255, .15));

    border-radius: 10px;
}

/* =========================
   VALORES
========================= */

.valores {
    padding: 100px 0;
    background: var(--surface-light);
}

.section-description {
    max-width: 650px;

    margin: 20px auto 0;

    text-align: center;

    color: var(--text);

    line-height: 1.7;
}


/* =========================
   GRID
========================= */

.pricing-grid {
    display: grid;

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

    gap: 25px;

    max-width: 1100px;

    margin: 60px auto 0;

    align-items: stretch;
}


/* =========================
   CARD
========================= */

.pricing-card {
    position: relative;

    display: flex;
    flex-direction: column;

    padding: 35px 30px;

    border-radius: 20px;

    background: #fff;

    border: 1px solid rgba(15, 23, 42, .08);

    box-shadow:
        0 10px 35px rgba(15, 23, 42, .06);

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

.pricing-card:hover {
    transform: translateY(-6px);

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


/* =========================
   CARD DESTACADO
========================= */

.pricing-card.featured {
    border: 2px solid var(--primary);

    box-shadow:
        0 15px 45px rgba(46, 168, 255, .15);
}

.pricing-popular {
    position: absolute;

    top: -13px;
    left: 50%;

    transform: translateX(-50%);

    padding: 5px 15px;

    border-radius: 20px;

    background: var(--primary);

    color: #fff;

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

    white-space: nowrap;
}


/* =========================
   HEADER DE VALORES
========================= */

.pricing-tag {
    display: inline-block;

    margin-bottom: 10px;

    color: var(--primary);

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

    letter-spacing: 1px;
}

.pricing-header h3 {
    margin: 0 0 10px;

    color: #0f172a;

    font-size: 23px;
}

.pricing-header p {
    margin: 0;

    color: #64748b;

    font-size: 14px;

    line-height: 1.6;
}


/* =========================
   PREÇO
========================= */

.pricing-price {
    display: flex;
    align-items: baseline;

    gap: 4px;

    margin: 30px 0;
}

.pricing-currency {
    font-size: 18px;
    font-weight: 600;

    color: #334155;
}

.pricing-price strong {
    font-size: 48px;

    line-height: 1;

    color: #0f172a;
}

.pricing-period {
    margin-left: 5px;

    color: #64748b;

    font-size: 12px;
}


/* =========================
   LISTA
========================= */

.pricing-list {
    display: flex;
    flex-direction: column;

    gap: 14px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.pricing-list li {
    display: flex;
    align-items: flex-start;

    gap: 10px;

    color: #475569;

    font-size: 14px;

    line-height: 1.4;
}

.pricing-list i {
    margin-top: 3px;

    color: var(--primary);

    font-size: 13px;
}


/* =========================
   BOTÃO
========================= */

.pricing-button {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;

    margin-top: auto;
    padding: 14px 20px;

    border-radius: 10px;

    background: #0f172a;

    color: #fff;

    text-decoration: none;

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

    transition:
        background .3s ease,
        transform .3s ease;
}

.pricing-button:hover {
    background: var(--primary);

    transform: translateY(-2px);
}

.pricing-card.featured .pricing-button {
    background: var(--primary);
}

.pricing-card.featured .pricing-button:hover {
    background: #0f172a;
}


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

@media (max-width: 850px) {

    .pricing-grid {
        grid-template-columns: 1fr;

        max-width: 500px;

        gap: 25px;
    }

    .pricing-card {
        padding: 30px 25px;
    }

}

/* ========================================
   CARROSSEL
======================================== */

.carousel {
    margin-top: 2rem;
    position: relative;
}

.carousel-track {

    display: flex;

    gap: 30px;

    overflow-x: auto;

    scroll-behavior: smooth;

    padding: 2.5rem;
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

.carousel-dots {

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

    gap: 12px;

    margin-top: 30px;
}

.dot {

    width: 12px;
    height: 12px;

    border-radius: 50%;

    border: none;

    cursor: pointer;

    background: rgba(255, 255, 255, .25);

    transition: all .3s ease;
}

.dot:hover {

    background: rgba(255, 255, 255, .5);
}

.dot.active {

    width: 30px;

    border-radius: 999px;

    background: var(--primary);

    box-shadow:
        0 0 10px rgba(46, 168, 255, .5);
}

.phone-card {
    position: relative;

    width: 250px;
    height: 450px;

    border-radius: 24px;
    border: 8px solid #07010a;

    background: #000;

    overflow: hidden;

    flex-shrink: 0;

    /* Define quais propriedades vão animar e o tempo (0.3 segundos) */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.phone-card:hover {
    -webkit-box-shadow: 0px 0px 30px 20px rgba(102, 0, 255, 0.5);
    transform: translateY(-10px);
}

/* Área que realmente rola */
.phone-screen {
    width: 100%;
    height: 100%;

    overflow-y: auto;
    overflow-x: hidden;

    scrollbar-width: none;
}

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

/* Chrome / Edge */
.phone-screen::-webkit-scrollbar {
    width: 8px;
}

.phone-screen::-webkit-scrollbar-track {
    background: transparent;
}

.phone-screen::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.35);
    border-radius: 20px;
}

.phone-screen:hover::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.65);
}

/* Câmera */
.phone-camera {
    position: absolute;

    z-index: 10;

    top: 10px;
    left: 50%;
    transform: translateX(-50%);

    width: 75px;
    height: 22px;

    background: #050505;

    border-radius: 20px;

    box-shadow:
        0 1px 4px rgba(0, 0, 0, 0.5),
        inset 0 0 3px rgba(255, 255, 255, 0.08);

    pointer-events: none;
}

/* Lente */
.phone-camera::after {
    content: "";

    position: absolute;

    width: 8px;
    height: 8px;

    top: 7px;
    right: 12px;

    border-radius: 50%;

    background: #111827;

    box-shadow:
        inset 0 0 3px rgba(255, 255, 255, 0.2);
}

.carousel-btn {

    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    width: 55px;
    height: 55px;

    border-radius: 50%;

    border: none;

    cursor: pointer;

    background: rgba(255, 255, 255, .08);

    color: white;

    backdrop-filter: blur(15px);

    z-index: 5;
}

.prev {
    left: -25px;
}

.next {
    right: -25px;
}

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

.cta-final {
    padding: 100px 0;

    background:
        radial-gradient(circle at 50% 0%,
            var(--surface-contrast-light),
            transparent 55%),
        var(--bg);

    color: #fff;
}

.cta-content {
    max-width: 750px;

    margin: 0 auto;

    text-align: center;
}


/* =========================
   EYEBROW
========================= */

.cta-eyebrow {
    display: inline-block;

    margin-bottom: 18px;

    color: var(--primary);

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

    letter-spacing: 1.5px;
}


/* =========================
   TÍTULO
========================= */

.cta-content h2 {
    margin: 0;

    font-size: clamp(34px, 5vw, 56px);

    line-height: 1.1;

    letter-spacing: -1.5px;
}

.cta-content p {
    max-width: 600px;

    margin: 20px auto 30px;

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

    font-size: 16px;

    line-height: 1.7;
}


/* =========================
   BOTÃO
========================= */

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 15px 25px;

    border-radius: 10px;

    background: var(--primary);

    color: #fff;

    text-decoration: none;

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

    box-shadow:
        0 10px 30px rgba(46, 168, 255, .25);

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

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

    box-shadow:
        0 15px 35px rgba(46, 168, 255, .35);
}

.cta-button i {
    font-size: 13px;

    transition: transform .3s ease;
}

.cta-button:hover i {
    transform: translateX(4px);
}


/* =========================
   BADGES
========================= */

.cta-badges {
    display: grid;

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

    max-width: 850px;

    margin: 65px auto 0;

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

    padding-top: 35px;
}

.cta-badge {
    display: flex;

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

    gap: 14px;

    padding: 0 25px;
}

.cta-badge+.cta-badge {
    border-left:
        1px solid rgba(255, 255, 255, .1);
}


/* =========================
   ÍCONE
========================= */

.cta-badge-icon {
    width: 45px;
    height: 45px;

    flex-shrink: 0;

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

    border-radius: 12px;

    background: rgba(46, 168, 255, .12);

    color: var(--primary);

    font-size: 18px;
}


/* =========================
   TEXTO
========================= */

.cta-badge div:last-child {
    display: flex;
    flex-direction: column;

    text-align: left;
}

.cta-badge strong {
    color: #fff;

    font-size: 14px;
}

.cta-badge span {
    margin-top: 3px;

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

    font-size: 12px;
}

/* =========================
   CONTATO
========================= */

.contato {
    padding: 100px 0;
    background: var(--text);
}

.contato-header {
    max-width: 650px;
    margin: 0 auto 55px;
    text-align: center;
}

.contato-header .section-title {
    margin-bottom: 15px;
    color: var(--bg);
}

.contato-header p {
    margin: 0;
    color: #64748b;
    font-size: 16px;
    line-height: 1.7;
}


/* =========================
   CARDS
========================= */

.contato-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-card {
    position: relative;

    display: flex;
    align-items: center;
    gap: 18px;

    min-height: 150px;
    padding: 25px;

    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;

    color: #0f172a;
    text-decoration: none;

    transition:
        transform .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: rgba(46, 168, 255, .35);
    box-shadow: 0 15px 35px rgba(15, 23, 42, .08);
}


/* =========================
   ÍCONE
========================= */

.contact-icon {
    width: 52px;
    height: 52px;

    flex-shrink: 0;

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

    border-radius: 14px;
    background: #f1f5f9;
}

.contact-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}


/* =========================
   TEXTO
========================= */

.contact-info {
    display: flex;
    flex-direction: column;

    min-width: 0;
}

.contact-info span {
    margin-bottom: 3px;

    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
}

.contact-info h3 {
    margin: 0 0 5px;

    font-size: 18px;
    font-weight: 700;
}

.contact-info p {
    margin: 0;

    color: #64748b;
    font-size: 13px;
    line-height: 1.5;
}


/* =========================
   SETA
========================= */

.contact-arrow {
    position: absolute;

    right: 20px;
    bottom: 20px;

    color: #cbd5e1;
    font-size: 13px;

    transition:
        color .3s ease,
        transform .3s ease;
}

.contact-card:hover .contact-arrow {
    color: var(--primary);
    transform: translateX(4px);
}


/* =========================
   WHATSAPP DESTAQUE
========================= */

.whatsapp-contact {
    border-color: rgba(46, 168, 255, .25);
    background:
        radial-gradient(circle at 100% 0%,
            rgba(46, 168, 255, .08),
            transparent 55%),
        #fff;
}

.footer {
    padding: 70px 0 25px;
    background: #0f172a;
    color: #fff;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.3fr;
    gap: 60px;
    padding-bottom: 55px;
}


/* =========================
   MARCA
========================= */

.footer-brand h3 {
    margin: 0 0 15px;

    font-size: 22px;
    font-weight: 700;
}

.footer-brand p {
    max-width: 330px;
    margin: 0;

    color: rgba(255, 255, 255, .55);
    font-size: 14px;
    line-height: 1.7;
}


/* =========================
   COLUNAS
========================= */

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-column h4 {
    margin: 0 0 18px;

    color: #fff;
    font-size: 14px;
    font-weight: 700;
}

.footer-column a {
    margin-bottom: 10px;

    color: rgba(255, 255, 255, .55);
    font-size: 13px;
    text-decoration: none;

    transition: color .25s ease;
}

.footer-column a:hover {
    color: var(--primary);
}


/* =========================
   LINHA INFERIOR
========================= */

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

    padding-top: 25px;

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

    color: rgba(255, 255, 255, .4);
    font-size: 12px;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-legal a {
    color: rgba(255, 255, 255, .4);
    text-decoration: none;

    transition: color .25s ease;
}

.footer-legal a:hover {
    color: var(--primary);
}

/* ========================================
   RESPONSIVO
======================================== */

@media (max-width: 992px) {

    .hero-container {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        display: none;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .contato {
        padding: 80px 20px;
    }

    .contato-cards {
        grid-template-columns: 1fr;
        max-width: 600px;
    }

    .contact-card {
        min-height: 120px;
    }

    .footer {
        padding: 60px 20px 25px;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {

    .nav {
        display: none;
    }

    .header-action {
        display: none;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .phone-card {
        width: 90%;
        height: 65vh;
    }


    .carousel-track {
        padding: 1rem;
    }

    .prev,
    .next {
        display: none;
    }

    .hero {
        min-height: 80vh;
    }

    .hero-overlay {

        background:
            linear-gradient(90deg,
                rgba(5, 15, 28, .92),
                rgba(5, 15, 28, .65));
    }

    .hero-title {

        font-size: 2.5rem;

        letter-spacing: -1px;
    }

    .hero-text {

        font-size: 1.1rem;
    }

    .hero-buttons {

        flex-direction: column;

        align-items: flex-start;
    }

    .hero-buttons .btn {

        width: 100%;
    }

    .como-funciona {
        padding: 70px 0;
    }

    .process {
        margin-top: 40px;
    }

    .process-step {
        grid-template-columns: 55px 1fr;
        gap: 18px;
    }

    .process-icon {
        width: 55px;
        height: 55px;

        font-size: 19px;

        box-shadow:
            0 0 0 6px rgba(46, 168, 255, .08),
            0 6px 18px rgba(46, 168, 255, .18);
    }

    .process-label {
        font-size: 15px;
    }

    .process-content p {
        font-size: 14px;
    }

    .process-line {
        height: 40px;
        margin-left: 26px;
    }

    .cta-final {
        padding: 75px 20px;
    }

    .cta-content h2 {
        font-size: 36px;
    }

    .cta-content p {
        font-size: 14px;
    }

    .cta-badges {
        grid-template-columns: 1fr;

        gap: 20px;

        margin-top: 50px;
    }

    .cta-badge {
        justify-content: flex-start;

        padding: 0;
    }

    .cta-badge+.cta-badge {
        border-left: none;
    }

    .contato {
        padding: 70px 20px;
    }

    .contato-header {
        margin-bottom: 40px;
    }

    .contato-header p {
        font-size: 14px;
    }

    .contact-card {
        padding: 20px;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 35px 25px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .footer-legal {
        flex-wrap: wrap;
    }

}