/* =========================================
   RESET
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #050505;
    color: #ffffff;
    min-height: 100vh;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}


/* =========================================
   CONTAINER
========================================= */

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


/* =========================================
   HEADER
========================================= */

.header {
    position: relative;

    width: 100%;

    padding: 28px 0;

    background: #050505;

    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-content {
    display: flex;

    align-items: center;

    justify-content: center;
}

.logo-analytics {
    width: 220px;

    height: auto;
}


/* =========================================
   MÓDULO 01 — HERO
========================================= */

.hero {
    position: relative;

    overflow: hidden;

    min-height: calc(100vh - 100px);

    display: flex;

    align-items: center;

    padding: 80px 0 100px;

    background:
        radial-gradient(
            circle at 85% 50%,
            rgba(255, 102, 0, 0.10),
            transparent 35%
        ),
        #050505;
}

.hero-content {
    display: grid;

    grid-template-columns: 1.05fr 1fr;

    align-items: center;

    gap: 60px;
}


/* =========================================
   HERO — TEXTO
========================================= */

.hero-text {
    position: relative;

    z-index: 2;
}


/* =========================================
   LOGO ELEVATE BARBER
========================================= */

.product-logo {
    margin-bottom: 24px;
}

.product-logo img {
    width: 190px;

    height: auto;

    display: block;
}


/* =========================================
   HERO — TÍTULO
========================================= */

h1 {
    max-width: 720px;

    font-size: clamp(42px, 3.7vw, 60px);

    line-height: 1.03;

    font-weight: 700;

    letter-spacing: -2px;

    margin-bottom: 28px;
}


/* =========================================
   HERO — DESCRIÇÃO
========================================= */

.hero-description {
    max-width: 600px;

    color: #bdbdbd;

    font-size: 19px;

    line-height: 1.65;

    margin-bottom: 28px;
}

.hero-description strong {
    color: #ffffff;
}


/* =========================================
   HERO — INDICADORES
========================================= */

.indicators {
    display: flex;

    flex-wrap: wrap;

    gap: 10px;

    margin-bottom: 35px;
}

.indicators span {
    padding: 9px 14px;

    border: 1px solid rgba(255, 114, 0, 0.35);

    border-radius: 50px;

    color: #e7e7e7;

    font-size: 13px;

    background: rgba(255, 114, 0, 0.04);

    transition:
        border-color 0.25s ease,
        background 0.25s ease,
        transform 0.25s ease;
}

.indicators span:hover {
    border-color: rgba(255, 114, 0, 0.75);

    background: rgba(255, 114, 0, 0.08);

    transform: translateY(-2px);
}


/* =========================================
   HERO — CTA
========================================= */

.cta-button {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 15px;

    padding: 17px 26px;

    border-radius: 8px;

    color: #ffffff;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 0.5px;

    background:
        linear-gradient(
            135deg,
            #ff7200,
            #ff5100
        );

    box-shadow:
        0 10px 30px rgba(255, 102, 0, 0.18);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.cta-button span {
    font-size: 20px;
}

.cta-button:hover {
    transform: translateY(-3px);

    box-shadow:
        0 15px 40px rgba(255, 102, 0, 0.30);
}


/* =========================================
   HERO — VÍDEO
========================================= */

.hero-video {
    position: relative;

    z-index: 2;
}

.video-container {
    position: relative;

    overflow: hidden;

    border-radius: 16px;

    border: 1px solid rgba(255, 255, 255, 0.12);

    background: #000;

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.65),
        0 0 50px rgba(255, 102, 0, 0.08);
}

.video-container video {
    display: block;

    width: 100%;

    height: auto;

    aspect-ratio: 1886 / 752;

    object-fit: cover;
}


/* =========================================
   HERO — BRILHO DO VÍDEO
========================================= */

.video-glow {
    position: absolute;

    inset: 15% -10% -15% 10%;

    background: rgba(255, 102, 0, 0.15);

    filter: blur(100px);

    z-index: -1;
}


/* =========================================
   HERO — LEGENDA
========================================= */

.video-caption {
    margin-top: 14px;

    color: #777777;

    font-size: 13px;

    text-align: center;
}


/* =========================================
   MÓDULO 02 — A DOR
========================================= */

.pain-section {
    position: relative;

    padding: 120px 0 130px;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(255, 102, 0, 0.06),
            transparent 40%
        ),
        #080808;

    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.pain-content {
    position: relative;
}

.pain-header {
    max-width: 850px;

    margin: 0 auto 65px;

    text-align: center;
}

.section-label {
    display: inline-block;

    margin-bottom: 20px;

    color: #ff7200;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2px;
}

.pain-header h2 {
    margin-bottom: 25px;

    color: #ffffff;

    font-size: clamp(36px, 4vw, 56px);

    line-height: 1.08;

    font-weight: 700;

    letter-spacing: -1.8px;
}

.pain-header h2 strong {
    color: #ff7200;

    font-weight: 700;
}

.pain-header p {
    max-width: 700px;

    margin: 0 auto;

    color: #999999;

    font-size: 17px;

    line-height: 1.7;
}


/* =========================================
   MÓDULO 02 — CARDS
========================================= */

.pain-cards {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}

.pain-card {
    position: relative;

    min-height: 245px;

    padding: 32px;

    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 14px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.035),
            rgba(255, 255, 255, 0.015)
        );

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;
}

.pain-card::after {
    content: "";

    position: absolute;

    width: 120px;

    height: 120px;

    right: -60px;

    bottom: -60px;

    border-radius: 50%;

    background: rgba(255, 102, 0, 0.12);

    filter: blur(35px);

    pointer-events: none;
}

.pain-card:hover {
    transform: translateY(-6px);

    border-color: rgba(255, 114, 0, 0.35);

    background:
        linear-gradient(
            145deg,
            rgba(255, 114, 0, 0.07),
            rgba(255, 255, 255, 0.02)
        );
}

.pain-card-number {
    margin-bottom: 35px;

    color: #ff7200;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 1px;
}

.pain-card-content {
    position: relative;

    z-index: 2;
}

.pain-card h3 {
    margin-bottom: 14px;

    color: #ffffff;

    font-size: 21px;

    line-height: 1.25;

    font-weight: 700;
}

.pain-card p {
    color: #8d8d8d;

    font-size: 15px;

    line-height: 1.65;
}


/* =========================================
   MÓDULO 02 — TRANSIÇÃO
========================================= */

.pain-transition {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 25px;

    margin-top: 75px;
}

.pain-transition span {
    width: 70px;

    height: 1px;

    background: rgba(255, 255, 255, 0.10);
}

.pain-transition p {
    max-width: 650px;

    color: #a0a0a0;

    font-size: 16px;

    line-height: 1.6;

    text-align: center;
}

.pain-transition strong {
    color: #ffffff;
}


/* =========================================
   MÓDULO 03 — A SOLUÇÃO
========================================= */

.solution-section {
    position: relative;

    padding: 130px 0 140px;

    background:
        radial-gradient(
            circle at 50% 35%,
            rgba(255, 102, 0, 0.07),
            transparent 38%
        ),
        #050505;

    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.solution-content {
    position: relative;
}

.solution-header {
    max-width: 850px;

    margin: 0 auto 75px;

    text-align: center;
}

.solution-header h2 {
    margin-bottom: 28px;

    color: #ffffff;

    font-size: clamp(36px, 4vw, 56px);

    line-height: 1.08;

    font-weight: 700;

    letter-spacing: -1.8px;
}

.solution-header h2 strong {
    color: #ff7200;

    font-weight: 700;
}

.solution-header p {
    max-width: 720px;

    margin: 0 auto 12px;

    color: #999999;

    font-size: 17px;

    line-height: 1.7;
}

.solution-header p:last-child {
    margin-bottom: 0;
}

.solution-header p strong {
    color: #ffffff;
}


/* =========================================
   MÓDULO 03 — FLUXO
========================================= */

.solution-flow {
    display: grid;

    grid-template-columns: 1fr auto 1fr auto 1fr;

    align-items: center;

    gap: 18px;

    max-width: 1120px;

    margin: 0 auto;
}

.solution-box {
    position: relative;

    min-height: 300px;

    padding: 30px;

    border: 1px solid rgba(255, 255, 255, 0.09);

    border-radius: 16px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.035),
            rgba(255, 255, 255, 0.012)
        );

    overflow: hidden;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;
}

.solution-box:hover {
    transform: translateY(-5px);

    border-color: rgba(255, 114, 0, 0.30);
}

.solution-box-highlight {
    border-color: rgba(255, 114, 0, 0.40);

    background:
        linear-gradient(
            145deg,
            rgba(255, 114, 0, 0.10),
            rgba(255, 255, 255, 0.025)
        );

    box-shadow:
        0 20px 60px rgba(255, 102, 0, 0.08);
}

.solution-box-highlight:hover {
    border-color: rgba(255, 114, 0, 0.65);
}

.solution-box::after {
    content: "";

    position: absolute;

    width: 150px;

    height: 150px;

    right: -80px;

    bottom: -80px;

    border-radius: 50%;

    background: rgba(255, 102, 0, 0.10);

    filter: blur(40px);

    pointer-events: none;
}

.solution-box-icon {
    position: relative;

    z-index: 2;

    margin-bottom: 28px;

    color: #ff7200;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1px;
}

.solution-box-label {
    position: relative;

    z-index: 2;

    display: block;

    margin-bottom: 12px;

    color: #777777;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.8px;
}

.solution-box h3 {
    position: relative;

    z-index: 2;

    margin-bottom: 25px;

    color: #ffffff;

    font-size: 20px;

    line-height: 1.3;

    font-weight: 700;
}

.solution-data-list {
    position: relative;

    z-index: 2;

    display: flex;

    flex-wrap: wrap;

    gap: 7px;
}

.solution-data-list span {
    padding: 7px 10px;

    border: 1px solid rgba(255, 255, 255, 0.07);

    border-radius: 5px;

    color: #999999;

    font-size: 11px;

    background: rgba(255, 255, 255, 0.025);
}

.solution-box-highlight .solution-data-list span {
    border-color: rgba(255, 114, 0, 0.18);

    color: #c7c7c7;

    background: rgba(255, 114, 0, 0.04);
}


/* =========================================
   MÓDULO 03 — SETAS
========================================= */

.solution-arrow {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 45px;

    height: 45px;

    border: 1px solid rgba(255, 114, 0, 0.20);

    border-radius: 50%;

    background: rgba(255, 114, 0, 0.04);
}

.solution-arrow span {
    color: #ff7200;

    font-size: 20px;

    line-height: 1;
}


/* =========================================
   MÓDULO 03 — DESTAQUE
========================================= */

.solution-highlight {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 25px;

    margin-top: 80px;
}

.solution-highlight-line {
    width: 90px;

    height: 1px;

    background: rgba(255, 255, 255, 0.10);
}

.solution-highlight p {
    color: #999999;

    font-size: 18px;

    line-height: 1.5;

    text-align: center;
}

.solution-highlight strong {
    color: #ffffff;
}


/* =========================================
   MÓDULO 03 — BENEFÍCIOS
========================================= */

.solution-benefits {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;

    max-width: 1050px;

    margin: 80px auto 0;
}

.solution-benefit {
    display: flex;

    gap: 18px;

    padding: 25px;

    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.solution-benefit-number {
    flex-shrink: 0;

    color: #ff7200;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1px;
}

.solution-benefit h3 {
    margin-bottom: 8px;

    color: #ffffff;

    font-size: 17px;

    font-weight: 700;
}

.solution-benefit p {
    color: #777777;

    font-size: 13px;

    line-height: 1.6;
}


/* =========================================
   MÓDULO 04 — DASHBOARD
========================================= */

.dashboard-section {
    position: relative;

    padding: 130px 0 140px;

    background:
        radial-gradient(
            circle at 50% 15%,
            rgba(255, 102, 0, 0.08),
            transparent 38%
        ),
        #080808;

    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.dashboard-content {
    position: relative;
}

.dashboard-header {
    max-width: 850px;

    margin: 0 auto 80px;

    text-align: center;
}

.dashboard-header h2 {
    margin-bottom: 28px;

    color: #ffffff;

    font-size: clamp(36px, 4vw, 56px);

    line-height: 1.08;

    font-weight: 700;

    letter-spacing: -1.8px;
}

.dashboard-header h2 strong {
    color: #ff7200;
}

.dashboard-header p {
    max-width: 720px;

    margin: 0 auto;

    color: #999999;

    font-size: 17px;

    line-height: 1.7;
}


/* =========================================
   MÓDULO 04 — SHOWCASE
========================================= */

.dashboard-showcase {
    position: relative;

    padding: 35px;

    margin-bottom: 70px;

    border: 1px solid rgba(255, 255, 255, 0.09);

    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.035),
            rgba(255, 255, 255, 0.012)
        );

    box-shadow:
        0 25px 80px rgba(0, 0, 0, 0.35);
}

.dashboard-showcase-secondary {
    margin-top: 70px;
}

.dashboard-showcase-header {
    display: flex;

    align-items: flex-start;

    justify-content: space-between;

    gap: 30px;

    margin-bottom: 30px;
}

.dashboard-showcase-header > div {
    flex: 1;
}

.dashboard-number {
    display: block;

    margin-bottom: 12px;

    color: #ff7200;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1.5px;
}

.dashboard-showcase-header h3 {
    margin-bottom: 10px;

    color: #ffffff;

    font-size: 26px;

    line-height: 1.25;

    font-weight: 700;
}

.dashboard-showcase-header p {
    max-width: 650px;

    color: #888888;

    font-size: 15px;

    line-height: 1.6;
}


/* =========================================
   MÓDULO 04 — TAG
========================================= */

.dashboard-tag {
    flex-shrink: 0;

    padding: 9px 14px;

    border: 1px solid rgba(255, 114, 0, 0.30);

    border-radius: 50px;

    color: #ff7200;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.3px;

    background: rgba(255, 114, 0, 0.05);
}


/* =========================================
   MÓDULO 04 — IMAGENS
========================================= */

.dashboard-images {
    display: grid;

    gap: 18px;
}

.dashboard-images-main {
    grid-template-columns: 1fr 1fr;
}

.dashboard-image {
    position: relative;

    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.10);

    border-radius: 12px;

    background: #000;

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.45);
}

.dashboard-image img {
    display: block;

    width: 100%;

    height: auto;

    transition: transform 0.5s ease;
}

.dashboard-image:hover img {
    transform: scale(1.015);
}

.dashboard-image-ranking {
    width: 100%;
}


/* =========================================
   MÓDULO 04 — FECHAMENTO
========================================= */

.dashboard-closing {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 25px;

    margin-top: 90px;
}

.dashboard-closing-line {
    width: 90px;

    height: 1px;

    background: rgba(255, 255, 255, 0.10);
}

.dashboard-closing p {
    color: #999999;

    font-size: 18px;

    line-height: 1.5;

    text-align: center;
}

.dashboard-closing strong {
    color: #ffffff;
}


/* =========================================
   MÓDULO 05 — BENEFÍCIOS
========================================= */

.benefits-section {
    position: relative;

    padding: 130px 0 140px;

    background:
        radial-gradient(
            circle at 50% 45%,
            rgba(255, 102, 0, 0.06),
            transparent 40%
        ),
        #050505;

    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.benefits-content {
    position: relative;
}

.benefits-header {
    max-width: 850px;

    margin: 0 auto 75px;

    text-align: center;
}

.benefits-header h2 {
    margin-bottom: 28px;

    color: #ffffff;

    font-size: clamp(36px, 4vw, 56px);

    line-height: 1.08;

    font-weight: 700;

    letter-spacing: -1.8px;
}

.benefits-header h2 strong {
    color: #ff7200;

    font-weight: 700;
}

.benefits-header p {
    max-width: 700px;

    margin: 0 auto;

    color: #999999;

    font-size: 17px;

    line-height: 1.7;
}


/* =========================================
   MÓDULO 05 — GRID
========================================= */

.benefits-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 20px;

    max-width: 1000px;

    margin: 0 auto;
}

.benefit-card {
    position: relative;

    min-height: 260px;

    padding: 32px;

    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 16px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.035),
            rgba(255, 255, 255, 0.012)
        );

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;
}

.benefit-card::after {
    content: "";

    position: absolute;

    width: 180px;

    height: 180px;

    right: -100px;

    bottom: -100px;

    border-radius: 50%;

    background: rgba(255, 102, 0, 0.10);

    filter: blur(45px);

    pointer-events: none;
}

.benefit-card:hover {
    transform: translateY(-6px);

    border-color: rgba(255, 114, 0, 0.32);

    background:
        linear-gradient(
            145deg,
            rgba(255, 114, 0, 0.065),
            rgba(255, 255, 255, 0.018)
        );
}

.benefit-top {
    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 55px;
}

.benefit-number {
    color: #ff7200;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1.5px;
}

.benefit-icon {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 42px;

    height: 42px;

    border: 1px solid rgba(255, 114, 0, 0.25);

    border-radius: 10px;

    color: #ff7200;

    font-size: 19px;

    background: rgba(255, 114, 0, 0.05);
}

.benefit-card-content {
    position: relative;

    z-index: 2;
}

.benefit-card h3 {
    margin-bottom: 12px;

    color: #ffffff;

    font-size: 23px;

    line-height: 1.25;

    font-weight: 700;
}

.benefit-card p {
    max-width: 420px;

    color: #858585;

    font-size: 15px;

    line-height: 1.65;
}


/* =========================================
   MÓDULO 05 — DESTAQUE
========================================= */

.benefits-highlight {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 25px;

    margin-top: 85px;
}

.benefits-highlight-line {
    width: 90px;

    height: 1px;

    background: rgba(255, 255, 255, 0.10);
}

.benefits-highlight p {
    color: #999999;

    font-size: 18px;

    line-height: 1.5;

    text-align: center;
}

.benefits-highlight strong {
    color: #ffffff;
}


/* =========================================
   MÓDULO 06 — CONVERSÃO
========================================= */

.conversion-section {
    position: relative;

    overflow: hidden;

    padding: 150px 0 155px;

    background:
        radial-gradient(
            circle at 50% 45%,
            rgba(255, 102, 0, 0.14),
            transparent 32%
        ),
        radial-gradient(
            circle at 50% 100%,
            rgba(255, 102, 0, 0.05),
            transparent 35%
        ),
        #050505;

    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.conversion-section::before {
    content: "";

    position: absolute;

    width: 500px;

    height: 500px;

    top: 50%;

    left: 50%;

    transform: translate(-50%, -50%);

    border-radius: 50%;

    background: rgba(255, 102, 0, 0.06);

    filter: blur(100px);

    pointer-events: none;
}

.conversion-content {
    position: relative;

    z-index: 2;

    display: flex;

    flex-direction: column;

    align-items: center;

    text-align: center;
}


/* =========================================
   MÓDULO 06 — LOGO
========================================= */

.conversion-logo {
    margin-bottom: 35px;
}

.conversion-logo img {
    display: block;

    width: 190px;

    height: auto;
}


/* =========================================
   MÓDULO 06 — LABEL
========================================= */

.conversion-label {
    display: inline-block;

    margin-bottom: 22px;

    color: #ff7200;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;
}


/* =========================================
   MÓDULO 06 — TÍTULO
========================================= */

.conversion-content h2 {
    max-width: 950px;

    margin-bottom: 30px;

    color: #ffffff;

    font-size: clamp(38px, 4.5vw, 62px);

    line-height: 1.05;

    font-weight: 700;

    letter-spacing: -2px;
}

.conversion-content h2 strong {
    color: #ff7200;

    font-weight: 700;
}


/* =========================================
   MÓDULO 06 — DESCRIÇÃO
========================================= */

.conversion-description {
    max-width: 680px;

    margin-bottom: 38px;

    color: #999999;

    font-size: 17px;

    line-height: 1.7;
}

.conversion-description strong {
    color: #ffffff;
}


/* =========================================
   MÓDULO 06 — BOTÃO
========================================= */

.conversion-button {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 16px;

    min-width: 300px;

    padding: 19px 30px;

    border-radius: 8px;

    color: #ffffff;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 0.5px;

    background:
        linear-gradient(
            135deg,
            #ff7200,
            #ff5100
        );

    box-shadow:
        0 15px 45px rgba(255, 102, 0, 0.22);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.conversion-button span {
    font-size: 21px;

    line-height: 1;
}

.conversion-button:hover {
    transform: translateY(-4px);

    box-shadow:
        0 20px 55px rgba(255, 102, 0, 0.35);
}


/* =========================================
   MÓDULO 06 — APOIO
========================================= */

.conversion-support {
    margin-top: 18px;

    color: #666666;

    font-size: 12px;

    line-height: 1.5;
}


/* =========================================
   MÓDULO 06 — LINHA
========================================= */

.conversion-line {
    width: 120px;

    height: 1px;

    margin-top: 70px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 114, 0, 0.45),
            transparent
        );
}


/* =========================================
   FOOTER
========================================= */

.footer {
    padding: 35px 0;

    background: #030303;

    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-content {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}

.footer-brand img {
    display: block;

    width: 145px;

    height: auto;

    opacity: 0.85;
}

.footer p {
    color: #555555;

    font-size: 12px;

    line-height: 1.5;

    text-align: right;
}


/* =========================================
   RESPONSIVO — TABLET
========================================= */

@media (max-width: 900px) {


    /* =====================================
       HERO
    ====================================== */

    .hero {
        padding: 60px 0 80px;
    }

    .hero-content {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .hero-text {
        text-align: center;
    }

    .product-logo {
        display: flex;

        justify-content: center;
    }

    h1 {
        margin-left: auto;

        margin-right: auto;
    }

    .hero-description {
        margin-left: auto;

        margin-right: auto;
    }

    .indicators {
        justify-content: center;
    }

    .cta-button {
        width: 100%;

        max-width: 420px;
    }

    .hero-video {
        width: 100%;
    }


    /* =====================================
       MÓDULO 02
    ====================================== */

    .pain-section {
        padding: 90px 0 100px;
    }

    .pain-cards {
        grid-template-columns: 1fr;

        max-width: 600px;

        margin: 0 auto;
    }

    .pain-card {
        min-height: auto;

        padding: 28px;
    }

    .pain-card-number {
        margin-bottom: 25px;
    }


    /* =====================================
       MÓDULO 03
    ====================================== */

    .solution-section {
        padding: 95px 0 110px;
    }

    .solution-header {
        margin-bottom: 55px;
    }

    .solution-flow {
        grid-template-columns: 1fr;

        max-width: 600px;

        gap: 12px;
    }

    .solution-box {
        min-height: auto;

        padding: 28px;
    }

    .solution-arrow {
        margin: 0 auto;

        transform: rotate(90deg);
    }

    .solution-benefits {
        grid-template-columns: 1fr;

        max-width: 600px;

        margin-top: 60px;
    }


    /* =====================================
       MÓDULO 04
    ====================================== */

    .dashboard-section {
        padding: 95px 0 110px;
    }

    .dashboard-header {
        margin-bottom: 55px;
    }

    .dashboard-showcase {
        padding: 28px;

        margin-bottom: 50px;
    }

    .dashboard-showcase-secondary {
        margin-top: 50px;
    }

    .dashboard-images-main {
        grid-template-columns: 1fr;
    }

    .dashboard-showcase-header {
        flex-direction: column;

        gap: 18px;
    }

    .dashboard-tag {
        align-self: flex-start;
    }


    /* =====================================
       MÓDULO 05
    ====================================== */

    .benefits-section {
        padding: 95px 0 110px;
    }

    .benefits-header {
        margin-bottom: 55px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;

        max-width: 600px;
    }

    .benefit-card {
        min-height: auto;
    }


    /* =====================================
       MÓDULO 06
    ====================================== */

    .conversion-section {
        padding: 110px 0 120px;
    }

    .conversion-logo {
        margin-bottom: 28px;
    }

    .conversion-logo img {
        width: 170px;
    }

    .conversion-content h2 {
        font-size: 46px;
    }


    /* =====================================
       FOOTER
    ====================================== */

    .footer-content {
        flex-direction: column;

        justify-content: center;

        text-align: center;
    }

    .footer p {
        text-align: center;
    }

}


/* =========================================
   RESPONSIVO — CELULAR
========================================= */

@media (max-width: 500px) {

    .container {
        width: min(100% - 28px, 1180px);
    }


    /* =====================================
       HEADER
    ====================================== */

    .header {
        padding: 20px 0;
    }

    .logo-analytics {
        width: 155px;
    }


    /* =====================================
       HERO
    ====================================== */

    .hero {
        padding: 45px 0 65px;
    }

    .product-logo {
        margin-bottom: 20px;
    }

    .product-logo img {
        width: 160px;
    }

    h1 {
        font-size: 38px;

        letter-spacing: -1.2px;
    }

    .hero-description {
        font-size: 16px;

        line-height: 1.55;
    }

    .indicators {
        gap: 7px;
    }

    .indicators span {
        font-size: 12px;

        padding: 8px 11px;
    }

    .cta-button {
        padding: 16px 18px;

        font-size: 12px;
    }

    .video-container {
        border-radius: 12px;
    }


    /* =====================================
       MÓDULO 02
    ====================================== */

    .pain-section {
        padding: 75px 0 85px;
    }

    .pain-header {
        margin-bottom: 45px;
    }

    .section-label {
        font-size: 11px;

        letter-spacing: 1.7px;
    }

    .pain-header h2 {
        font-size: 34px;

        letter-spacing: -1.2px;
    }

    .pain-header p {
        font-size: 15px;

        line-height: 1.6;
    }

    .pain-card {
        padding: 25px;

        border-radius: 12px;
    }

    .pain-card h3 {
        font-size: 19px;
    }

    .pain-card p {
        font-size: 14px;
    }

    .pain-transition {
        gap: 12px;

        margin-top: 55px;
    }

    .pain-transition span {
        width: 30px;
    }

    .pain-transition p {
        max-width: 100%;

        font-size: 13px;

        line-height: 1.5;
    }


    /* =====================================
       MÓDULO 03
    ====================================== */

    .solution-section {
        padding: 75px 0 85px;
    }

    .solution-header {
        margin-bottom: 45px;
    }

    .solution-header h2 {
        font-size: 34px;

        letter-spacing: -1.2px;
    }

    .solution-header p {
        font-size: 15px;

        line-height: 1.6;
    }

    .solution-box {
        padding: 24px;

        border-radius: 12px;
    }

    .solution-box-icon {
        margin-bottom: 22px;
    }

    .solution-box h3 {
        font-size: 18px;

        margin-bottom: 20px;
    }

    .solution-data-list span {
        font-size: 10px;

        padding: 6px 9px;
    }

    .solution-highlight {
        gap: 12px;

        margin-top: 55px;
    }

    .solution-highlight-line {
        width: 30px;
    }

    .solution-highlight p {
        font-size: 14px;
    }

    .solution-benefits {
        gap: 10px;

        margin-top: 50px;
    }

    .solution-benefit {
        padding: 20px 0;
    }


    /* =====================================
       MÓDULO 04
    ====================================== */

    .dashboard-section {
        padding: 75px 0 85px;
    }

    .dashboard-header {
        margin-bottom: 45px;
    }

    .dashboard-header h2 {
        font-size: 34px;

        letter-spacing: -1.2px;
    }

    .dashboard-header p {
        font-size: 15px;

        line-height: 1.6;
    }

    .dashboard-showcase {
        padding: 20px;

        margin-bottom: 40px;

        border-radius: 12px;
    }

    .dashboard-showcase-secondary {
        margin-top: 40px;
    }

    .dashboard-showcase-header {
        margin-bottom: 22px;
    }

    .dashboard-showcase-header h3 {
        font-size: 20px;
    }

    .dashboard-showcase-header p {
        font-size: 14px;
    }

    .dashboard-images {
        gap: 12px;
    }

    .dashboard-image {
        border-radius: 9px;
    }

    .dashboard-closing {
        gap: 12px;

        margin-top: 55px;
    }

    .dashboard-closing-line {
        width: 30px;
    }

    .dashboard-closing p {
        font-size: 14px;
    }


    /* =====================================
       MÓDULO 05
    ====================================== */

    .benefits-section {
        padding: 75px 0 85px;
    }

    .benefits-header {
        margin-bottom: 45px;
    }

    .benefits-header h2 {
        font-size: 34px;

        letter-spacing: -1.2px;
    }

    .benefits-header p {
        font-size: 15px;

        line-height: 1.6;
    }

    .benefit-card {
        padding: 25px;

        border-radius: 12px;
    }

    .benefit-top {
        margin-bottom: 40px;
    }

    .benefit-card h3 {
        font-size: 20px;
    }

    .benefit-card p {
        font-size: 14px;
    }

    .benefit-icon {
        width: 38px;

        height: 38px;

        font-size: 17px;
    }

    .benefits-highlight {
        gap: 12px;

        margin-top: 55px;
    }

    .benefits-highlight-line {
        width: 30px;
    }

    .benefits-highlight p {
        font-size: 14px;
    }


    /* =====================================
       MÓDULO 06
    ====================================== */

    .conversion-section {
        padding: 85px 0 95px;
    }

    .conversion-logo {
        margin-bottom: 25px;
    }

    .conversion-logo img {
        width: 155px;
    }

    .conversion-label {
        max-width: 300px;

        margin-bottom: 18px;

        font-size: 10px;

        line-height: 1.5;

        letter-spacing: 1.5px;
    }

    .conversion-content h2 {
        font-size: 36px;

        letter-spacing: -1.2px;
    }

    .conversion-description {
        font-size: 15px;

        line-height: 1.6;

        margin-bottom: 30px;
    }

    .conversion-button {
        width: 100%;

        min-width: 0;

        padding: 17px 18px;

        font-size: 12px;
    }

    .conversion-support {
        font-size: 11px;
    }

    .conversion-line {
        margin-top: 55px;

        width: 80px;
    }


    /* =====================================
       FOOTER
    ====================================== */

    .footer {
        padding: 28px 0;
    }

    .footer-brand img {
        width: 125px;
    }

    .footer p {
        max-width: 280px;

        font-size: 11px;
    }

}