/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
@font-face {
    font-family: 'XPN Helvetica';
    src: url('assets/fonts/Helvetica.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: 'XPN Helvetica';
    src: url('assets/fonts/Helvetica-Bold.ttf') format('truetype');
    font-weight: 600 800;
    font-style: normal;
    font-display: swap;
}



@font-face {
    font-family: 'XPN Freight';
    src: url('assets/fonts/fonnts.com-Freight-Big-Pro-Semibold-.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'XPN Freight';
    src: url('assets/fonts/fonnts.com-Freight-Big-Pro-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'XPN Freight';
    src: url('assets/fonts/fonnts.com-Freight-Big-Pro-Black.otf') format('opentype');
    font-weight: 800 900;
    font-style: normal;
    font-display: swap;
}

:root {
    --xpn-dark-blue: #091621;
    --xpn-dark: #070D10;
    --xpn-dark-gray: #647680;
    --xpn-gray: #7E8C9A;
    --xpn-light-gray: #E9F0F7;
    --xpn-white: #FFFFFF;
    --xpn-accent: #1565D8;
    --bg-dark: var(--xpn-dark-blue);
    --bg-card: rgba(7, 13, 16, 0.72);
    --neon-green: var(--xpn-accent);
    --accent: var(--xpn-accent);
    --text-white: var(--xpn-light-gray);
    --text-gray: var(--xpn-gray);
    --border-color: rgba(255, 255, 255, 0.08);
    --font-title: 'XPN Freight', Georgia, serif;
    --font-body: 'XPN Helvetica', Arial, sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   BASE STYLES
   ========================================================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    scroll-padding-top: 66px;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.5;
    position: relative;
}

/* Scrollbar customization */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--neon-green);
}

/* ==========================================================================
   AMBIENT BACKGROUNDS & EFFECTS
   ========================================================================== */
.ambient-glow-green {
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(21, 101, 216, 0.08) 0%, rgba(0,0,0,0) 70%);
    pointer-events: none;
    z-index: 1;
}

/* Giant Left Circular Arc */
.left-giant-arc {
    position: absolute;
    top: -100px;
    left: -150px;
    width: 500px;
    height: 500px;
    pointer-events: none;
    z-index: 1;
}


/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 150px;
    padding-bottom: 60px;
    z-index: 10;
    overflow: hidden;
}


.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

/* HERO LEFT CONTENT */
.hero-content {
    display: flex;
    flex-direction: column;
    z-index: 20;
}

/* Removes micro badge completely as logo replaces it */

.hero-title {
    font-family: var(--font-title);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -1.5px;
    color: var(--text-white);
    margin-bottom: 24px;
}

.hero-title .gradient-text {
    background: linear-gradient(to right, #FFFFFF, #6BA3FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.05rem;
    color: var(--text-gray);
    max-width: 480px;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Stats Inline (Like Image) */
.stats-grid-inline {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 48px;
}

.stat-item-inline {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
}

.stats-divider {
    width: 1px;
    height: 38px;
    background: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
    align-self: center;
}

.stat-value-inline {
    font-family: var(--font-title);
    font-size: 2rem;
    font-weight: 800;
    color: var(--neon-green);
    line-height: 1;
}

.stat-label-inline {
    font-size: 0.78rem;
    color: var(--text-gray);
    line-height: 1.3;
}

/* CTA Button Styles */
.cta-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    background: var(--xpn-accent);
    color: var(--xpn-white);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    padding: 16px 28px;
    border-radius: 100px;
    width: max-content;
    box-shadow: 0 10px 24px rgba(21, 101, 216, 0.2);
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.16);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

/* Shine overlay animation */
.cta-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 20%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    transition: 0.75s;
}

.cta-button:hover::after {
    left: 120%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(21, 101, 216, 0.32);
}

.cta-text {
    margin-right: 20px;
}

.cta-icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.34);
    color: var(--xpn-white);
    transition: var(--transition-smooth);
}

.cta-button:hover .cta-icon-circle {
    transform: rotate(45deg);
    background: var(--xpn-white);
    color: var(--accent);
}


/* ==========================================================================
   HERO RIGHT VISUAL (SPECIALIST & NOTIFICATIONS)
   ========================================================================== */
.hero-visual {
    position: relative;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    z-index: 10;
}

/* Map background overlay */
.world-map-bg {
    position: absolute;
    top: 5%;
    left: -15%;
    width: 130%;
    height: 90%;
    pointer-events: none;
    z-index: 1;
}

/* Radial Glow behind specialist */
.specialist-glow {
    position: absolute;
    bottom: 15%;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(21, 101, 216, 0.35) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
    filter: blur(10px);
    pointer-events: none;
    z-index: 2;
    animation: pulseGlow 6s infinite alternate ease-in-out;
}

@keyframes pulseGlow {
    0% { transform: scale(0.95); opacity: 0.8; }
    100% { transform: scale(1.08); opacity: 1; }
}

.specialist-image-container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 440px;
    display: flex;
    justify-content: center;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 85%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 85%, rgba(0,0,0,0) 100%);
}

.specialist-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    filter: drop-shadow(0px 15px 30px rgba(0,0,0,0.5));
}

/* Circular Stamp Badge */
.rotating-badge-container {
    position: absolute;
    top: 25%;
    right: 0%;
    z-index: 5;
    pointer-events: none;
    animation: rotateStamp 20s linear infinite;
    will-change: transform;
}

@keyframes rotateStamp {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.circular-badge {
    width: 130px;
    height: 130px;
    filter: drop-shadow(0px 8px 16px rgba(21, 101, 216, 0.2));
}

/* Sales Notifications Overlay */
.notifications-container {
    position: absolute;
    bottom: 12%;
    left: -5%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 10;
}

.sales-notification {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 10px 16px;
    border-radius: 12px;
    width: 250px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.sales-notification.visible {
    opacity: 1;
    transform: translateY(0);
}

.notif-icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--neon-green);
    border: none;
    flex-shrink: 0;
}

.notif-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.notif-title {
    font-size: 0.72rem;
    font-weight: 400;
    color: var(--text-gray);
}

.notif-value {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-white);
    margin-top: 1px;
}

.notif-time {
    font-size: 0.65rem;
    color: var(--text-gray);
    opacity: 0.6;
    align-self: flex-start;
    margin-top: 2px;
}

/* ==========================================================================
   PLATFORMS STRIP
   ========================================================================== */
.platforms-strip {
    background-color: var(--xpn-dark);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 22px 24px;
    position: relative;
    z-index: 10;
}

.platforms-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.platforms-eyebrow {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--xpn-gray);
    white-space: nowrap;
}

.platforms-divider {
    width: 1px;
    height: 28px;
    background: rgba(255,255,255,0.08);
    flex-shrink: 0;
}

.platforms-list {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.platform-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.35);
    transition: color 0.3s ease;
    text-decoration: none;
}

.platform-item:hover {
    color: rgba(255,255,255,0.75);
}

.platform-item svg {
    flex-shrink: 0;
}

.platform-item span {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .platforms-inner {
        gap: 20px;
    }
    .platforms-divider {
        display: none;
    }
    .platforms-list {
        gap: 20px;
    }
    .platform-item span {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .platforms-eyebrow {
        display: none;
    }

    .platform-item span {
        display: none;
    }

    .platforms-list {
        gap: 24px;
    }
}

/* ==========================================================================
   SECTION 2: CREDIBILIDADE / DORES
   ========================================================================== */
.credibilidade-section {
    background-color: var(--xpn-white); /* White background as in reference */
    color: var(--xpn-dark-blue);
    padding: 100px 0;
    position: relative;
    z-index: 10;
    overflow: hidden;
}


.credibilidade-section .section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
    position: relative;
    z-index: 5;
}

/* Unified badge system — single source of truth for all section labels */
.badge {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

/* Plain accent text — dark backgrounds */
.badge--accent {
    color: var(--neon-green);
}

/* Pill style — dark backgrounds */
.badge--pill {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    width: fit-content;
    padding: 5px 14px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    color: var(--text-gray);
}

/* Pill style — light (white) backgrounds */
.badge--pill-light {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    width: fit-content;
    padding: 5px 14px;
    border-radius: 100px;
    background: rgba(7, 13, 16, 0.05);
    border: 1px solid rgba(7, 13, 16, 0.08);
    color: var(--xpn-dark-gray);
    margin-bottom: 20px;
}

.credibilidade-section .section-title {
    font-family: var(--font-title);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -1px;
    color: var(--xpn-dark-blue);
    margin-bottom: 16px;
}

.credibilidade-section .section-subtitle {
    font-size: 1rem;
    color: var(--xpn-dark-gray);
    max-width: 600px;
    margin: 0 auto 60px auto;
    line-height: 1.6;
}

/* Dores Grid Layout */
.dores-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 60px auto 48px auto;
    max-width: 1140px;
    text-align: left;
}

/* Dor Card Styles */
.dor-card {
    background: #F7FAFF;
    border: 1px solid rgba(21, 101, 216, 0.18);
    border-radius: 16px;
    padding: 40px 30px 32px 30px;
    position: relative;
    transition: var(--transition-smooth);
    box-shadow: 0 18px 38px rgba(9, 22, 33, 0.06);
}

.dor-card:hover {
    transform: translateY(-4px);
    border-color: rgba(21, 101, 216, 0.42);
    box-shadow: 0 18px 38px rgba(21, 101, 216, 0.12);
}

/* Green icon box overlay on card */
.dor-icon-box {
    position: absolute;
    top: -20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: var(--xpn-accent);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--xpn-white);
    box-shadow: 0 8px 18px rgba(21, 101, 216, 0.28);
}

.dor-card-title {
    font-family: var(--font-title);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--xpn-dark-blue);
    margin-bottom: 16px;
}

.dor-card-text {
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: var(--xpn-dark-gray);
    line-height: 1.65;
}

/* Dores CTA Wrapper */
.dores-cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 50px;
}

.dores-cta-wrapper .cta-button {
    box-shadow: 0 10px 30px rgba(21, 101, 216, 0.28);
}


/* ==========================================================================
   SECTION 3: SOLUÇÕES
   ========================================================================== */
.solucoes-section {
    background-color: var(--bg-dark);
    color: var(--text-white);
    padding: 120px 0;
    position: relative;
    z-index: 10;
    overflow: hidden;
    border-top: 1px solid var(--border-color);
}

/* Giant Bottom Right Arc */
.right-giant-arc {
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 450px;
    height: 450px;
    pointer-events: none;
    z-index: 1;
}

.solucoes-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 5;
}

.solucoes-content {
    display: flex;
    flex-direction: column;
    text-align: left;
}


.solucoes-title {
    font-family: var(--font-title);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1.5px;
    color: var(--text-white);
    margin-bottom: 20px;
}

.solucoes-subtitle {
    font-size: 1.05rem;
    color: var(--text-gray);
    max-width: 460px;
    line-height: 1.65;
    margin-bottom: 40px;
}

/* Solutions Cards Stack */
.solucoes-cards-stack {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.solucao-card {
    background: var(--xpn-dark-blue);
    border: 1px solid rgba(21, 101, 216, 0.26);
    border-radius: 14px;
    padding: 64px 30px 30px 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    position: relative;
    transition: var(--transition-smooth);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24);
}

.solucao-card:hover {
    transform: translateY(-4px);
    border-color: rgba(21, 101, 216, 0.58);
    box-shadow: 0 18px 38px rgba(21, 101, 216, 0.14);
}

/* Green Icon Box */
.solucao-icon-box {
    position: absolute;
    top: -1px;
    left: -1px;
    width: 48px;
    height: 48px;
    background: var(--xpn-accent);
    border-radius: 14px 0 16px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--xpn-white);
    flex-shrink: 0;
    box-shadow: 0 8px 18px rgba(21, 101, 216, 0.28);
}

.solucao-card-title {
    font-family: var(--font-title);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 8px;
}

.solucao-card-text {
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* ==========================================================================
   SECTION 4: CONHEÇA QUEM FAZ ACONTECER (SOBRE)
   ========================================================================== */
.conheca-section {
    background-color: var(--bg-dark);
    padding: 100px 0 120px 0;
    position: relative;
    z-index: 10;
    overflow: hidden;
    border-top: 1px solid var(--border-color);
}

.conheca-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 5;
}

.about-arc {
    top: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
}

/* Mega Card Layout */
.conheca-mega-card {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    width: 100%;
    max-width: 1060px;
    background: var(--xpn-white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Left Visual Column */
.conheca-visual {
    position: relative;
    background: var(--xpn-dark);
    overflow: hidden;
    min-height: 480px;
    border-right: 3px solid var(--neon-green);
}

.chart-arrow-bg {
    position: absolute;
    top: 5%;
    left: 5%;
    width: 90%;
    height: 90%;
    pointer-events: none;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0px 8px 25px rgba(21, 101, 216, 0.2));
}

.chart-arrow-bg svg {
    width: 100%;
    height: 100%;
}

.conheca-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    z-index: 2;
    display: block;
}

/* Overlay notifications on about image */
.about-notifications {
    position: absolute;
    bottom: 24px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 10;
}

.about-notifications .sales-notification.about-notif {
    width: 210px;
    padding: 8px 12px;
    background: rgba(7, 13, 16, 0.85);
    border: 1px solid rgba(21, 101, 216, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    opacity: 1;
    transform: none;
}

.about-notif .notif-icon-circle {
    width: 26px;
    height: 26px;
}

.about-notif .notif-title {
    font-size: 0.65rem;
}

.about-notif .notif-value {
    font-size: 0.75rem;
}

.about-notif .notif-time {
    font-size: 0.6rem;
}

/* Right Content Column */
.conheca-content {
    background-color: var(--xpn-white);
    padding: 60px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}


.about-title {
    font-family: var(--font-title);
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
    color: var(--xpn-dark-blue);
    margin-bottom: 20px;
}

.about-paragraph {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--xpn-dark-gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.about-paragraph:last-of-type {
    margin-bottom: 28px;
}

.about-cta {
    align-items: flex-start;
}

.about-cta .cta-button {
    box-shadow: 0 10px 25px rgba(21, 101, 216, 0.28);
}


/* ==========================================================================
   SECTION 5: DEPOIMENTOS
   ========================================================================== */
.depoimentos-section {
    background-color: var(--bg-dark);
    padding: 120px 0 100px 0;
    position: relative;
    z-index: 10;
    overflow: hidden;
    border-top: 1px solid var(--border-color);
}

/* Gradient fade masks on left/right edges for the scrolling slider */
.depoimentos-section::before,
.depoimentos-section::after {
    content: '';
    position: absolute;
    top: 0;
    width: 140px;
    height: 100%;
    z-index: 15;
    pointer-events: none;
}

.depoimentos-section::before {
    left: 0;
    background: linear-gradient(to right, var(--xpn-dark-blue) 0%, rgba(7, 13, 16, 0) 100%);
}

.depoimentos-section::after {
    right: 0;
    background: linear-gradient(to left, var(--xpn-dark-blue) 0%, rgba(7, 13, 16, 0) 100%);
}

.depoimentos-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 5; /* acima do ::before da imagem */
}

.depoimentos-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 60px;
    padding: 0 24px;
}

.depoimentos-title {
    font-family: var(--font-title);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1.5px;
    color: var(--text-white);
    margin-top: 20px;
    margin-bottom: 20px;
}

.depoimentos-title .green-text {
    color: var(--neon-green);
}

.depoimentos-subtitle {
    font-size: 1.05rem;
    color: var(--text-gray);
    max-width: 600px;
    line-height: 1.6;
    margin: 0;
}

/* Premium Slider styling with overflow scrolling */
.depoimentos-slider-container {
    width: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 20px 24px 40px 24px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Hide scrollbar for Firefox */
}

.depoimentos-slider-container::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome/Safari */
}

.depoimentos-track {
    display: flex;
    gap: 24px;
    width: max-content;
    padding: 0 40px;
    animation: marquee 30s linear infinite;
    will-change: transform;
}

.depoimentos-slider-container:hover .depoimentos-track {
    animation-play-state: paused;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Testimonial Card */
.depoimento-card {
    background: var(--xpn-dark-blue); /* Rich dark grey-black */
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 32px 28px;
    width: 330px;
    flex-shrink: 0;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    text-align: left;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25);
}

.depoimento-card:hover {
    transform: translateY(-8px);
    border-color: rgba(21, 101, 216, 0.25);
    box-shadow: 0 15px 35px rgba(21, 101, 216, 0.1);
}

.depoimento-user {
    display: flex;
    align-items: center;
    gap: 16px;
}

.depoimento-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--neon-green);
    box-shadow: 0 4px 10px rgba(21, 101, 216, 0.2);
}

.depoimento-info {
    display: flex;
    flex-direction: column;
}

.depoimento-name {
    font-family: var(--font-title);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-white);
}

.depoimento-role {
    font-size: 0.78rem;
    color: var(--text-gray);
    margin-top: 2px;
}

.depoimento-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
    margin: 20px 0;
    width: 100%;
}

.depoimento-text {
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.depoimento-rating {
    display: flex;
    gap: 4px;
    color: #F5A623;
    font-size: 1rem;
}

/* ==========================================================================
   SECTION 6: PROCESSO DE TRABALHO
   ========================================================================== */
.processo-section {
    background-color: #070D10;
    background-image: radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 28px 28px;
    padding: 120px 0;
    position: relative;
    z-index: 10;
    overflow: clip;
    border-top: 1px solid var(--border-color);
}

/* Subtle planet/globe visual in the background */
.globe-bg-overlay {
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 90%;
    height: 100%;
    background: radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.02) 0%, rgba(0, 0, 0, 0) 65%),
                radial-gradient(circle at bottom center, rgba(21, 101, 216, 0.015) 0%, rgba(0, 0, 0, 0) 50%);
    pointer-events: none;
    z-index: 1;
    border-radius: 50%;
    filter: blur(40px);
}

.processo-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 5;
}

/* Sticky Column Left on Desktop */
.processo-content {
    display: flex;
    flex-direction: column;
    text-align: left;
    position: sticky;
    top: 86px;
    z-index: 10;
}

.processo-title {
    font-family: var(--font-title);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1.5px;
    color: var(--text-white);
    margin-top: 20px;
    margin-bottom: 20px;
}

.processo-subtitle {
    font-size: 1.05rem;
    color: var(--text-gray);
    max-width: 420px;
    line-height: 1.65;
    margin-bottom: 40px;
}

/* Timeline Column Right */
.processo-timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding-left: 56px; /* Spaces out for timeline line and number boxes */
}

/* Vertical timeline connecting green line */
.timeline-track-line {
    position: absolute;
    top: 30px;
    bottom: 30px;
    left: 17px;
    width: 2px;
    background: rgba(21, 101, 216, 0.55);
    z-index: 1;
}

/* Individual timeline row item */
.timeline-item {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

/* Green box numbered container */
.timeline-number {
    position: absolute;
    left: -56px;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border: 2px solid var(--neon-green);
    background-color: var(--bg-dark);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neon-green);
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 0.85rem;
    z-index: 5;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.processo-card {
    background: var(--xpn-dark-blue);
    border: 1px solid rgba(21, 101, 216, 0.2);
    border-radius: 16px;
    padding: 26px 30px;
    width: 100%;
    position: relative;
    transition: var(--transition-smooth);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

/* Micro interaction: Card lifts, number box grows and glows */
.timeline-item:hover .processo-card {
    transform: translateY(-4px);
    border-color: rgba(21, 101, 216, 0.55);
    box-shadow: 0 12px 30px rgba(21, 101, 216, 0.15);
}

.timeline-item:hover .timeline-number {
    transform: translateY(calc(-50% - 4px)) scale(1.18);
    background-color: var(--neon-green);
    color: var(--xpn-dark);
    box-shadow: 0 0 15px rgba(21, 101, 216, 0.5);
}

.processo-card-title {
    font-family: var(--font-title);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 8px;
}

.processo-card-text {
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* ==========================================================================
   SECTION 7: AGENDE SUA SESSÃO (FORMULÁRIO DE CONTATO)
   ========================================================================== */
.agende-section {
    background-color: var(--xpn-white); /* White background for Section 7 */
    padding: 0 0 120px 0; /* No top padding due to marquee */
    position: relative;
    z-index: 10;
    overflow: hidden;
}

/* Horizontal Infinite Marquee Letreiro */
.marquee-banner {
    width: 100%;
    height: 46px;
    background-color: var(--neon-green);
    overflow: hidden;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 20;
    margin-bottom: 100px;
    box-shadow: 0 4px 15px rgba(21, 101, 216, 0.2);
}

.marquee-track {
    display: flex;
    width: max-content;
}

.marquee-group {
    display: flex;
    align-items: center;
    gap: 30px;
    padding-right: 30px;
    white-space: nowrap;
    animation: scrollMarquee 15s linear infinite;
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--xpn-white);
    letter-spacing: 1px;
    will-change: transform;
}

.marquee-dot {
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.3rem;
}

@keyframes scrollMarquee {
    from { transform: translateX(0); }
    to { transform: translateX(-100%); }
}

.agende-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 5;
}

/* Mega Card Invertido */
.agende-mega-card {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    width: 100%;
    max-width: 1060px;
    background: var(--xpn-white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Left Column - Form content styling */
.agende-content {
    background-color: var(--xpn-white);
    padding: 48px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}


.agende-title {
    font-family: var(--font-title);
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
    color: var(--xpn-dark-blue);
    margin-bottom: 20px;
}

.agende-subtitle {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--xpn-dark-gray);
    line-height: 1.6;
    margin-bottom: 32px;
}

/* Visually hidden — acessível a leitores de tela, invisível na tela */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Form Styles */
.agende-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.form-group {
    width: 100%;
    position: relative;
}

.agende-input,
.agende-select {
    width: 100%;
    height: 50px;
    border: 1.5px solid rgba(9, 22, 33, 0.12);
    border-radius: 10px;
    padding: 0 16px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--xpn-dark-blue);
    background: rgba(9, 22, 33, 0.025);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    outline: none;
}

.agende-input::placeholder {
    color: rgba(9, 22, 33, 0.38);
}

.agende-input:focus,
.agende-select:focus {
    border-color: var(--xpn-accent);
    box-shadow: 0 0 0 3px rgba(21, 101, 216, 0.1);
    background: #ffffff;
}

.agende-select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    padding-right: 40px;
    color: rgba(9, 22, 33, 0.38);
}

.agende-select.filled {
    color: var(--xpn-dark-blue);
}

.select-group::after {
    content: '';
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23647680' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
}

.agende-select option {
    color: var(--xpn-dark-blue);
    background: #ffffff;
}

.agende-cta-btn {
    margin-top: 6px;
    width: 100%;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(21, 101, 216, 0.28);
}

/* Right Column - Visual portrait styling */
.agende-visual {
    position: relative;
    background: var(--xpn-dark);
    overflow: hidden;
    min-height: 480px;
    border-left: 3px solid var(--neon-green);
}

.agende-map-bg {
    left: -15% !important;
    top: 5% !important;
    width: 130% !important;
    height: 90% !important;
}

.agende-glow {
    bottom: 10% !important;
}

.agende-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    z-index: 2;
    display: block;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 80%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 80%, rgba(0,0,0,0) 100%);
}

.agende-visual-info {
    position: absolute;
    bottom: 32px;
    left: 32px;
    z-index: 10;
    text-align: left;
}

.agende-visual-name {
    font-family: var(--font-title);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--xpn-white);
    margin-bottom: 4px;
}

.agende-visual-sub {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* ==========================================================================
   SECTION 8: FAQ / TIRA DÚVIDAS
   ========================================================================== */
.faq-section {
    position: relative;
    background-color: var(--xpn-dark);
    padding: 100px 0 120px 0;
    overflow: hidden;
    z-index: 10;
}

.faq-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.faq-header {
    text-align: center;
    margin-bottom: 56px;
    max-width: 650px;
}


.faq-title {
    font-family: var(--font-title);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--xpn-white);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.faq-subtitle {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--xpn-gray);
    line-height: 1.6;
}

.faq-list {
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 56px;
}

.faq-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.faq-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.faq-card-question {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    padding: 24px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    cursor: pointer;
    font-family: var(--font-title);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--xpn-white);
    gap: 20px;
    transition: color 0.3s ease;
}

.faq-card-question:hover {
    color: var(--neon-green);
}

.faq-icon-plus {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--neon-green);
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.faq-card-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.3s ease;
}

.answer-content {
    padding: 0 28px 24px 28px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--xpn-gray);
    line-height: 1.6;
}

/* Active State Styles */
.faq-card.active {
    background: rgba(21, 101, 216, 0.02);
    border-color: var(--neon-green);
    box-shadow: 0 8px 30px rgba(21, 101, 216, 0.05);
}

.faq-card.active .faq-card-answer {
    max-height: 400px;
    opacity: 1;
}

.faq-card.active .faq-icon-plus {
    transform: rotate(180deg);
}

.faq-cta-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

/* ==========================================================================
   SECTION 9: FOOTER / RODAPÉ
   ========================================================================== */
.main-footer {
    background-color: var(--xpn-dark-blue);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 80px 0 40px 0;
    position: relative;
    z-index: 10;
}

.footer-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.brand-col {
    gap: 20px;
}

.brand-description {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--xpn-gray);
    line-height: 1.6;
    max-width: 320px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background-color: var(--neon-green);
    color: var(--xpn-white);
    border-radius: 8px;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(21, 101, 216, 0.35);
    background-color: var(--xpn-white);
    color: var(--xpn-dark);
}

.footer-col-title {
    font-family: var(--font-title);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--xpn-white);
    margin-bottom: 24px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li a {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--xpn-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links li a:hover {
    color: var(--neon-green);
}

.contact-col {
    gap: 8px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.contact-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: var(--neon-green);
    color: var(--xpn-white);
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-text {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--xpn-gray);
    word-break: break-all;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    text-align: center;
}

.copyright-text {
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: var(--xpn-gray);
}

/* Legal pages: footer-bottom sem borda superior */
.footer-bottom--borderless {
    border-top: none;
    padding-top: 0;
}

/* Links inline no copyright */
.copyright-link {
    color: inherit;
}

/* ==========================================================================
   NAVBAR
   ========================================================================== */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 66px;
    background: rgba(7, 13, 16, 0.88);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    z-index: 500;
    transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.main-nav.nav-scrolled {
    background: rgba(7, 13, 16, 0.98);
    border-bottom-color: rgba(255, 255, 255, 0.09);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.nav-logo-name {
    font-family: var(--font-title);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--xpn-white);
    letter-spacing: -0.3px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
}

.nav-links a {
    font-family: var(--font-body);
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--text-gray);
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color 0.25s ease;
}

.nav-links a:hover {
    color: var(--xpn-white);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    padding: 9px 20px;
    background: var(--xpn-accent);
    color: var(--xpn-white);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 0.83rem;
    font-weight: 700;
    border-radius: 100px;
    white-space: nowrap;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.nav-cta:hover {
    background: #1255b8;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(21, 101, 216, 0.4);
}

/* ==========================================================================
   SECTION: PARA QUEM É
   ========================================================================== */
.para-quem-section {
    background-color: var(--bg-dark);
    padding: 100px 0;
    position: relative;
    z-index: 10;
    border-top: 1px solid var(--border-color);
    overflow: hidden;
}

/* Background image overlay — arquivo: assets/bg-paraquem.jpg */
.para-quem-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('assets/bg-paraquem.jpg') center center / cover no-repeat;
    opacity: 0.06;
    z-index: 0;
    pointer-events: none;
    mix-blend-mode: luminosity;
}

@media (max-width: 768px) {
    .para-quem-section::before {
        background-image: url('assets/bg-paraquem-mobile.jpg');
        background-position: center center;
    }
}

.para-quem-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.para-quem-header {
    text-align: center;
    margin-bottom: 60px;
}

.para-quem-title {
    font-family: var(--font-title);
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1.2px;
    color: var(--text-white);
    margin-top: 16px;
    margin-bottom: 16px;
}

.para-quem-subtitle {
    font-size: 1.05rem;
    color: var(--text-gray);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
}

.para-quem-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.para-quem-card {
    background: var(--xpn-dark-blue);
    border: 1px solid rgba(21, 101, 216, 0.15);
    border-radius: 16px;
    padding: 36px 26px;
    transition: var(--transition-smooth);
}

.para-quem-card:hover {
    border-color: rgba(21, 101, 216, 0.45);
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(21, 101, 216, 0.1);
}

.pq-icon-box {
    width: 44px;
    height: 44px;
    background: var(--xpn-accent);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 6px 16px rgba(21, 101, 216, 0.25);
}

.para-quem-card h3 {
    font-family: var(--font-title);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 10px;
    line-height: 1.3;
}

.para-quem-card p {
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: var(--text-gray);
    line-height: 1.65;
}

.para-quem-cta-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 56px;
}

/* ==========================================================================
   THANK YOU PAGE (obrigado.html)
   ========================================================================== */
.obrigado-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--xpn-dark);
    padding: 100px 24px 80px;
    position: relative;
    overflow: hidden;
}

.obrigado-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(21, 101, 216, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.obrigado-container {
    max-width: 640px;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.obrigado-check {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--xpn-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    box-shadow: 0 8px 32px rgba(21, 101, 216, 0.4);
}

.obrigado-badge {
    display: inline-block;
    color: var(--xpn-accent);
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.obrigado-title {
    font-family: var(--font-title);
    font-size: 3rem;
    font-weight: 800;
    color: var(--xpn-white);
    letter-spacing: -1.2px;
    line-height: 1.1;
    margin-bottom: 16px;
}

.obrigado-subtitle {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--text-gray);
    line-height: 1.65;
    max-width: 480px;
    margin: 0 auto 48px;
}

.obrigado-steps {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 44px;
    text-align: left;
}

.obrigado-step {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--xpn-dark-blue);
    border: 1px solid rgba(21, 101, 216, 0.15);
    border-radius: 14px;
    padding: 20px 24px;
    transition: var(--transition-smooth);
}

.obrigado-step:hover {
    border-color: rgba(21, 101, 216, 0.4);
}

.step-num {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--xpn-accent);
    color: var(--xpn-white);
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.step-info strong {
    font-family: var(--font-title);
    font-size: 1rem;
    font-weight: 700;
    color: var(--xpn-white);
}

.step-info span {
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: var(--text-gray);
}

.obrigado-ctas {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 48px;
}

.obrigado-back {
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.25s ease;
}

.obrigado-back:hover {
    color: var(--xpn-white);
}

.obrigado-social {
    border-top: 1px solid var(--border-color);
    padding-top: 32px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.obrigado-social p {
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: var(--text-gray);
}

.obrigado-social-links {
    display: flex;
    gap: 12px;
}

.obrigado-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border-color);
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.obrigado-social-links a:hover {
    background: var(--xpn-accent);
    border-color: var(--xpn-accent);
    color: var(--xpn-white);
    transform: translateY(-2px);
}

@media (max-width: 480px) {
    .obrigado-title { font-size: 2.2rem; }
    .obrigado-step { padding: 16px 18px; }
}

/* ==========================================================================
   LEGAL PAGES (privacidade, termos, cookies, lgpd)
   ========================================================================== */
.legal-page {
    min-height: 100vh;
    padding-top: 66px;
    background-color: var(--xpn-white);
    color: var(--xpn-dark-blue);
}

.legal-hero {
    background-color: var(--xpn-dark);
    padding: 80px 24px 60px 24px;
    text-align: center;
}

/* .legal-badge extends the unified badge system */
.legal-badge {
    color: var(--xpn-accent);
}

.legal-hero h1 {
    font-family: var(--font-title);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--xpn-white);
    letter-spacing: -1px;
    margin-bottom: 12px;
}

.legal-hero p {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--xpn-dark-gray);
}

.legal-content {
    max-width: 780px;
    margin: 0 auto;
    padding: 72px 24px 100px 24px;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.legal-section h2 {
    font-family: var(--font-title);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--xpn-dark-blue);
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(9, 22, 33, 0.08);
}

.legal-section h3 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    color: var(--xpn-dark-blue);
    margin-top: 20px;
    margin-bottom: 8px;
}

.legal-section p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--xpn-dark-gray);
    line-height: 1.75;
    margin-bottom: 12px;
}

.legal-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-left: 0;
    margin-top: 8px;
}

.legal-section ul li {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--xpn-dark-gray);
    line-height: 1.65;
    padding-left: 18px;
    position: relative;
}

.legal-section ul li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--xpn-accent);
    font-weight: 700;
}

.legal-section a {
    color: var(--xpn-accent);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity 0.2s ease;
}

.legal-section a:hover {
    opacity: 0.75;
}

@media (max-width: 768px) {
    .legal-hero h1 {
        font-size: 2rem;
    }
    .legal-content {
        padding: 48px 20px 80px 20px;
        gap: 36px;
    }
}

/* ==========================================================================
   FLOATING WHATSAPP BUTTON
   ========================================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 56px;
    height: 56px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: waPulse 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
    animation: none;
}

@keyframes waPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50%       { box-shadow: 0 4px 28px rgba(37, 211, 102, 0.65); }
}

@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
}

/* ==========================================================================
   RESPONSIVENESS (MOBILE FRIENDLY)
   ========================================================================== */
@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }

    .para-quem-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Badge centering inside centered flex parents */
    .solucoes-content .badge--pill,
    .processo-content .badge--pill,
    .para-quem-header .badge--pill,
    .depoimentos-header .badge--pill {
        align-self: center;
    }

    /* Mega cards: wider on tablet */
    .conheca-mega-card,
    .agende-mega-card {
        max-width: 700px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
        padding-top: 40px;
    }

    .hero-content {
        align-items: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .stats-grid-inline {
        justify-content: center;
    }

    .stat-item-inline {
        align-items: center;
    }

    .cta-wrapper {
        align-items: center;
    }

    /* About badge centers alongside centered content */
    .conheca-content .badge--pill-light {
        align-self: center;
    }

    .hero-visual {
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }

    .left-giant-arc {
        width: 350px;
        height: 350px;
    }

    .solucoes-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .solucoes-content {
        align-items: center;
    }

    .solucoes-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .solucoes-cards-stack {
        max-width: 550px;
        margin: 0 auto;
        width: 100%;
    }

    .dores-grid {
        grid-template-columns: 1fr;
        max-width: 560px;
        gap: 26px;
    }

    .right-giant-arc {
        width: 300px;
        height: 300px;
        bottom: -100px;
        right: -100px;
    }

    .conheca-mega-card {
        grid-template-columns: 1fr;
        max-width: 550px;
        margin: 0 auto;
    }

    .conheca-visual {
        border-right: none;
        border-bottom: 3px solid var(--neon-green);
        min-height: 360px;
    }

    .conheca-content {
        padding: 48px 30px;
        align-items: center;
        text-align: center;
    }

    .about-cta {
        align-items: center;
    }

    .processo-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .processo-content {
        position: relative;
        top: 0;
        align-items: center;
    }

    .processo-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .processo-timeline {
        max-width: 550px;
        margin: 0 auto;
        width: 100%;
    }

    .agende-mega-card {
        grid-template-columns: 1fr;
        max-width: 550px;
        margin: 0 auto;
    }

    .agende-visual {
        border-left: none;
        border-top: 3px solid var(--neon-green);
        min-height: 360px;
    }

    .agende-content {
        padding: 48px 30px;
        align-items: center;
        text-align: center;
    }

    .agende-form {
        width: 100%;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    /* Footer 1024px */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .para-quem-section {
        padding: 72px 0;
    }

    .para-quem-header {
        margin-bottom: 36px;
    }

    .para-quem-title {
        font-size: 2.2rem;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .rotating-badge-container {
        top: 15%;
        right: 5%;
    }

    .notifications-container {
        left: 0;
        bottom: 5%;
    }

    .section-title {
        font-size: 2rem;
    }

    .solucoes-title {
        font-size: 2.5rem;
    }

    .solucao-card {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        padding: 58px 24px 26px;
    }

    .solucao-icon-box {
        margin-bottom: 0;
    }

    .about-title {
        font-size: 2rem;
    }

    .depoimentos-title {
        font-size: 2.3rem;
    }

    .depoimentos-section::before,
    .depoimentos-section::after {
        width: 60px;
    }

    .depoimentos-track {
        padding: 0 10px;
    }

    .processo-title {
        font-size: 2.5rem;
    }

    .processo-timeline {
        padding-left: 48px;
    }

    .timeline-number {
        left: -48px;
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }

    .timeline-track-line {
        left: 15px;
    }

    .agende-title {
        font-size: 2rem;
    }

    .agende-visual-name {
        font-size: 1.6rem;
    }

    /* FAQ 768px */
    .faq-section {
        padding: 80px 0;
    }

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

    .faq-title {
        font-size: 2.3rem;
    }

    .faq-card-question {
        padding: 20px 24px;
        font-size: 1rem;
    }

    .answer-content {
        padding: 0 24px 20px 24px;
    }

    /* Footer 768px */
    .main-footer {
        padding: 60px 0 30px 0;
    }

    .footer-grid {
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .nav-cta {
        padding: 8px 14px;
        font-size: 0.78rem;
    }

    /* Hero */
    .hero-section {
        padding-top: 110px;
    }

    .hero-title {
        font-size: 2.1rem;
        letter-spacing: -1px;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    /* Stats: wrap and center on small screens */
    .stats-grid-inline {
        flex-wrap: wrap;
        gap: 16px 20px;
        justify-content: center;
    }

    .stats-divider {
        display: none;
    }

    .stat-item-inline {
        align-items: center;
        gap: 2px;
    }

    .stat-value-inline {
        font-size: 1.6rem;
    }

    .stat-label-inline {
        font-size: 0.65rem;
        text-align: center;
        max-width: 90px;
    }

    /* Para Quem */
    .para-quem-section {
        padding: 60px 0;
    }

    .para-quem-grid {
        grid-template-columns: 1fr;
    }

    .para-quem-title {
        font-size: 1.9rem;
    }

    /* Depoimentos: edge fades narrower */
    .depoimentos-section::before,
    .depoimentos-section::after {
        width: 30px;
    }

    .cta-button {
        width: 100%;
        max-width: 360px;
        padding: 14px 22px;
        font-size: 0.9rem;
    }

    .cta-text {
        margin-right: 14px;
    }

    .dores-grid {
        margin-top: 46px;
    }

    .dor-card {
        padding: 36px 24px 28px;
    }

    .rotating-badge-container {
        width: 90px;
        height: 90px;
    }

    .circular-badge {
        width: 90px;
        height: 90px;
    }

    .sales-notification {
        width: 220px;
        padding: 8px 12px;
    }

    .solucoes-title {
        font-size: 2rem;
    }

    .about-title {
        font-size: 1.8rem;
    }

    .conheca-visual {
        min-height: 280px;
    }

    .about-notifications {
        left: 10px;
        bottom: 15px;
    }

    .about-notif {
        width: 180px !important;
        padding: 6px 10px !important;
    }

    .depoimentos-title {
        font-size: 1.8rem;
    }

    .depoimento-card {
        width: 280px;
        padding: 24px 20px;
    }

    .depoimento-text {
        font-size: 0.88rem;
    }

    .processo-title {
        font-size: 2rem;
    }

    .processo-timeline {
        padding-left: 0;
    }

    .timeline-track-line {
        display: none;
    }

    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .timeline-number {
        position: relative;
        left: 0;
        top: 0;
        transform: none;
        margin-bottom: 12px;
    }

    .timeline-item:hover .timeline-number {
        transform: scale(1.15);
    }

    .agende-title {
        font-size: 1.8rem;
    }

    .agende-visual {
        min-height: 280px;
    }

    .agende-visual-info {
        left: 20px;
        bottom: 20px;
    }

    .agende-visual-name {
        font-size: 1.4rem;
    }

    .agende-visual-sub {
        font-size: 0.8rem;
    }

    /* FAQ 480px */
    .faq-section {
        padding: 60px 0;
    }

    .faq-title {
        font-size: 1.8rem;
    }

    .faq-subtitle {
        font-size: 0.95rem;
    }

    .faq-card-question {
        font-size: 0.95rem;
        padding: 16px 20px;
    }

    .answer-content {
        padding: 0 20px 16px 20px;
        font-size: 0.9rem;
    }

    /* Marquee spacing reduced on small screens */
    .marquee-banner {
        margin-bottom: 60px;
    }

    /* Sections: reduce vertical padding */
    .credibilidade-section {
        padding: 72px 0;
    }

    .solucoes-section,
    .conheca-section,
    .depoimentos-section,
    .processo-section {
        padding: 80px 0;
    }

    /* Solucoes content alignment */
    .solucoes-content {
        align-items: center;
    }

    /* Mega cards: full width on small mobile */
    .conheca-mega-card,
    .agende-mega-card {
        max-width: 100%;
    }

    /* Dores container padding */
    .credibilidade-section .section-container {
        padding: 0 16px;
    }

    /* Footer 480px */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .brand-description {
        max-width: 100%;
    }

    .footer-bottom {
        padding-top: 24px;
    }
}



