/* ========================================
   AZA MARKETING - WEBSITE
   ======================================== */

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --color-bg: #000235;
    --color-bg-dark: #01000e;
    --color-white: #ffffff;
    --color-gray: #888888;
    --color-gray-light: #cccccc;
    --color-accent: #5d78ff;
    --color-accent-dark: #000556;
    --gradient-accent: linear-gradient(135deg, #0021ff 0%, #2b46ff 100%);

    /* Typography */
    --font-family: 'Archivo', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --container-max: 1400px;
    --container-padding: 60px;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

/* ========================================
   HEADER
   ======================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.4s ease;
}

.header.visible {
    transform: translateY(0);
    opacity: 1;
}

.header__container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.header__brand {
    flex-shrink: 0;
}

.header__logo {
    height: 36px;
    width: auto;
}

.header__nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.header__link {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.header__link:hover {
    color: var(--color-white);
}

.header__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-accent);
    transition: width 0.3s ease;
}

.header__link:hover::after {
    width: 100%;
}

.header__cta {
    padding: 12px 24px;
    font-size: 0.8125rem;
}

.header__menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 28px;
    height: 28px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.header__menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-white);
    transition: all 0.3s ease;
}

.header__menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.header__menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.header__menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background-color: rgba(0, 0, 0, 0.98);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu__nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.mobile-menu__link {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-menu__link:hover {
    color: var(--color-accent);
}

.mobile-menu__cta {
    margin-top: 20px;
}

body {
    font-family: var(--font-family);
    background-color: var(--color-bg);
    color: var(--color-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ========================================
   ANIMATIONS
   ======================================== */

/* Fade in up */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].animate {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children */
[data-animate-stagger] > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

[data-animate-stagger].animate > *:nth-child(1) { transition-delay: 0s; }
[data-animate-stagger].animate > *:nth-child(2) { transition-delay: 0.1s; }
[data-animate-stagger].animate > *:nth-child(3) { transition-delay: 0.2s; }
[data-animate-stagger].animate > *:nth-child(4) { transition-delay: 0.3s; }
[data-animate-stagger].animate > *:nth-child(5) { transition-delay: 0.4s; }
[data-animate-stagger].animate > *:nth-child(6) { transition-delay: 0.5s; }

[data-animate-stagger].animate > * {
    opacity: 1;
    transform: translateY(0);
}

/* Scale in */
[data-animate="scale"] {
    opacity: 0;
    transform: scale(0.95);
}

[data-animate="scale"].animate {
    opacity: 1;
    transform: scale(1);
}

/* Fade in left */
[data-animate="left"] {
    opacity: 0;
    transform: translateX(-30px);
}

[data-animate="left"].animate {
    opacity: 1;
    transform: translateX(0);
}

/* Fade in right */
[data-animate="right"] {
    opacity: 0;
    transform: translateX(30px);
}

[data-animate="right"].animate {
    opacity: 1;
    transform: translateX(0);
}

/* Scroll reveal - suave individual */
[data-animate-scroll] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-animate-scroll].animate {
    opacity: 1;
    transform: translateY(0);
}

[data-animate-scroll] .stats__number {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
}

[data-animate-scroll].animate .stats__number {
    opacity: 1;
    transform: translateY(0);
}

[data-animate-scroll] .stats__text {
    opacity: 0;
    transition: opacity 0.6s ease 0.4s;
}

[data-animate-scroll].animate .stats__text {
    opacity: 1;
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: url('../assets/img/aza/hero-bg.png') no-repeat center center;
    background-size: cover;
}

/* Overlay escuro pra manter a copy legível sobre o fundo claro */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(8,8,14,0.94) 0%, rgba(8,8,14,0.82) 40%, rgba(10,20,55,0.5) 74%, rgba(20,40,90,0.32) 100%);
    z-index: 0;
    pointer-events: none;
}

/* Scroll Indicator */
.hero__scroll-indicator {
    position: absolute;
    bottom: 140px;
    right: 80px;
    left: auto;
    transform: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    z-index: 2;
    animation: fadeInUp 1s ease 1.5s both;
}

.hero__mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    position: relative;
}

.hero__mouse-wheel {
    width: 4px;
    height: 8px;
    background: var(--gradient-accent);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.5s ease-in-out infinite;
}

.hero__scroll-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
}

@keyframes scrollWheel {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(12px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 300px;
    background: linear-gradient(to bottom, transparent 0%, #000000 100%);
    pointer-events: none;
    z-index: 0;
}


/* Container */
.hero__container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    position: relative;
    z-index: 1;
}

/* Content */
.hero__content {
    display: flex;
    flex-direction: column;
    gap: 32px;
    position: relative;
    z-index: 1;
}

/* Logo */
.hero__logo {
    margin-bottom: 16px;
}

.hero__logo-img {
    height: 56px;
    width: auto;
}

/* Title */
.hero__title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.02em;
    background: linear-gradient(to bottom, #ffffff 0%, #c9cdf0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


/* Description */
.hero__description {
    font-size: 1rem;
    color: var(--color-gray-light);
    max-width: 480px;
    line-height: 1.7;
}

/* CTA Buttons */
.hero__cta {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 8px;
}

.btn {
    font-family: inherit;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn--primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    background: #0021ff;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border-radius: 100px;
    border: none;
    box-shadow: 0 6px 20px rgba(0, 33, 255, 0.25);
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.btn--primary:hover {
    background: #1a3aff;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 33, 255, 0.4);
}

.btn--link {
    color: var(--color-white);
    font-size: 0.8rem;
    position: relative;
}

.btn--link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-white);
    transition: width 0.3s ease;
}

.btn--link:hover::after {
    width: 100%;
}

/* Tags */
.hero__pillars {
    margin-top: auto;
    padding-top: 85px;
}

.hero__pillars-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.hero__pillars-title {
    font-size: 0.9rem;
    color: var(--color-gray);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 4px;
}

.hero__pillars-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-accent);
}

.hero__pillars-arrow {
    color: var(--color-gray);
    animation: bounceDown 1.5s ease-in-out infinite;
}

@keyframes bounceDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(4px); }
}

.hero__tags-marquee {
    overflow: hidden;
    max-width: 400px;
}

.hero__tags-track {
    display: flex;
    gap: 32px;
    animation: marqueeLeft 12s linear infinite;
}

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

.hero__tag {
    font-size: 0.875rem;
    color: var(--color-gray);
    position: relative;
    white-space: nowrap;
}

.hero__tag:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -16px;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    background: var(--gradient-accent);
    border-radius: 50%;
}


/* ========================================
   MARQUEE SECTION
   ======================================== */

.marquee-section {
    position: relative;
    padding: 60px 0;
    background-color: #000000;
    overflow: hidden;
    margin-top: -200px;
    z-index: 2;
}

.marquee {
    width: 100%;
    overflow: hidden;
}

.marquee__track {
    display: flex;
    width: max-content;
    animation: marquee 40s linear infinite;
}

.marquee__inner {
    display: flex;
    gap: 20px;
    padding-right: 20px;
}

.marquee__item {
    position: relative;
    width: 280px;
    height: 360px;
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
}

.marquee__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Card */
.marquee__card {
    width: 320px;
    height: 360px;
    background: linear-gradient(145deg, #1a1a1a 0%, #0d0d0d 100%);
    border-radius: 16px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.marquee__card-top {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.marquee__card-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.48);
}

.marquee__card-title {
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.5;
    color: var(--color-white);
}

.marquee__card-bottom {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.marquee__card-stats {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.marquee__card-number {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--color-white);
}

.marquee__card-text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.64);
}

.marquee__card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-white);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.marquee__card-link:hover {
    color: var(--color-accent);
}

.marquee__card-link svg {
    transition: transform 0.3s ease;
}

.marquee__card-link:hover svg {
    transform: translateX(4px);
}

/* Video Card */
.marquee__card--video {
    position: relative;
    overflow: hidden;
    background: transparent;
}

.marquee__card-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.marquee__card-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(42, 58, 160, 0.85) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.marquee__card--video .marquee__card-top,
.marquee__card--video .marquee__card-bottom {
    position: relative;
    z-index: 2;
}

/* Shadows */
.marquee__shadow {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 2;
    pointer-events: none;
}

.marquee__shadow--left {
    left: 0;
    background: linear-gradient(to right, #000000 0%, transparent 100%);
}

.marquee__shadow--right {
    right: 0;
    background: linear-gradient(to left, #000000 0%, transparent 100%);
}

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

.marquee:hover .marquee__track {
    animation-play-state: paused;
}

/* ========================================
   ABOUT SECTION
   ======================================== */

.about {
    padding: 60px 0 100px 0;
    background-color: #000000;
}

.about__container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about__image img {
    width: 100%;
    height: auto;
}

.about__content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.about__title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--color-white);
}

.about__title--highlight {
    background: linear-gradient(to bottom, #c4c4c4 0%, #626262 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about__text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about__text p {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: #999999;
}

/* ========================================
   SECTION SEPARATOR
   ======================================== */

.section-separator {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 24px;
    padding: 32px 0;
    padding-left: max(var(--container-padding), calc((100vw - var(--container-max)) / 2 + var(--container-padding)));
    padding-right: max(var(--container-padding), calc((100vw - var(--container-max)) / 2 + var(--container-padding)));
    background-color: #000000;
}

.section-separator__line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(93, 120, 255, 0.3) 0%, transparent 100%);
    position: relative;
    overflow: hidden;
}

.section-separator__line:first-child {
    display: none;
}

.section-separator__glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, var(--color-accent) 50%, transparent 100%);
    animation: separatorGlow 3s ease-in-out infinite;
}

.section-separator__line:last-of-type .section-separator__glow {
    animation-direction: reverse;
}

@keyframes separatorGlow {
    0% {
        left: -60%;
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        left: 100%;
        opacity: 0;
    }
}

.section-separator__icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(42, 58, 160, 0.4) 0%, rgba(42, 58, 160, 0.1) 100%);
    border: 1px solid rgba(93, 120, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    animation: separatorPulse 3s ease-in-out infinite;
    flex-shrink: 0;
}

.section-separator__icon img {
    width: 22px;
    height: auto;
    object-fit: contain;
    filter: brightness(1.2);
}

@keyframes separatorPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(93, 120, 255, 0.1);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 0 12px 2px rgba(93, 120, 255, 0.15);
    }
}

/* ========================================
   SERVICES SECTION - Vertical Tabs
   ======================================== */

.services-v2 {
    padding: 120px 0;
    background-color: #000000;
}

.services-v2__container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.services-v2__headline {
    margin-bottom: 60px;
}

.services-v2__label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.48);
    display: block;
    margin-bottom: 24px;
}

.services-v2__title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 600;
    color: var(--color-white);
    line-height: 1.3;
    max-width: 800px;
}

.services-v2__content {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 32px;
    align-items: stretch;
}

.services-v2__tabs {
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: 100%;
}

.services-v2__tab {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 28px;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: left;
    font-family: inherit;
}

.services-v2__tab:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateX(4px);
}

.services-v2__tab.active {
    background: linear-gradient(135deg, #000556 0%, #4a5ae8 50%, #000556 100%);
    background-size: 200% 200%;
    animation: tabGradientMove 3s ease infinite;
    border-color: transparent;
    transform: translateX(0);
    position: relative;
    overflow: hidden;
}

.services-v2__tab.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.1) 50%, transparent 100%);
    animation: tabShine 2s ease-in-out infinite;
}

@keyframes tabGradientMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes tabShine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.services-v2__tab-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.services-v2__tab.active .services-v2__tab-icon {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.services-v2__tab-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.services-v2__tab-title {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--color-white);
    transition: color 0.3s ease;
    line-height: 1.3;
}

.services-v2__tab-subtitle {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.45);
    transition: color 0.3s ease;
}

.services-v2__tab.active .services-v2__tab-subtitle {
    color: rgba(255, 255, 255, 0.75);
}

/* CTA Card */
.services-v2__cta-card {
    margin-top: auto;
    padding: 32px;
    background: linear-gradient(145deg, rgba(42, 58, 160, 0.3) 0%, rgba(42, 58, 160, 0.1) 100%);
    border: 1px solid rgba(93, 120, 255, 0.2);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.services-v2__cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.services-v2__cta-label {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-white);
}

.services-v2__cta-text {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.55);
}

.services-v2__cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    background: var(--gradient-accent);
    color: #ffffff;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.services-v2__cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(42, 58, 160, 0.4);
}

.services-v2__cta-button svg {
    transition: transform 0.3s ease;
}

.services-v2__cta-button:hover svg {
    transform: translateX(4px);
}

.services-v2__panels {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    min-height: 640px;
}

.services-v2__panel {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.services-v2__panel.active {
    opacity: 1;
    visibility: visible;
}

.services-v2__panel-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.services-v2__panel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.6) 40%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
}

.services-v2__panel-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 2;
}

.services-v2__panel-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-white);
    line-height: 1.3;
}

.services-v2__panel-subtitle {
    font-size: 1.0625rem;
    font-weight: 600;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.75rem;
    max-width: 620px;
}

.services-v2__panel-description {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
    max-width: 620px;
}

.services-v2__panel-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--color-white);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    margin-top: 12px;
    transition: all 0.3s ease;
    width: fit-content;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.services-v2__panel-cta:hover {
    color: var(--color-accent);
    border-color: var(--color-accent);
}

.services-v2__panel-cta svg {
    transition: transform 0.3s ease;
}

.services-v2__panel-cta:hover svg {
    transform: translateX(6px);
}

/* ========================================
   STATS SECTION
   ======================================== */

.stats {
    padding: 120px 0;
    background-color: #000000;
}

.stats__container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.stats__left {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: 100px;
}

.stats__label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.48);
}

.stats__title {
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-white);
}

.stats__description {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #888888;
    max-width: 320px;
}

.btn--outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    background-color: transparent;
    color: var(--color-white);
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: fit-content;
}

.btn--outline:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.4);
}

.stats__right {
    display: flex;
    flex-direction: column;
}

.stats__item {
    padding: 32px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stats__item:first-child {
    padding-top: 0;
}

.stats__number {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    background: linear-gradient(to bottom, #c4c4c4 0%, #626262 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.stats__text {
    font-size: 0.9375rem;
    color: #888888;
    line-height: 1.6;
}

/* ========================================
   MEDIA SECTION
   ======================================== */

.media {
    padding: 100px 0;
    background-color: #000000;
}

.media__container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.media__top {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: end;
    margin-bottom: 48px;
}

.media__header {
    max-width: 500px;
}

.media__label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent);
    font-weight: 600;
    display: block;
    margin-bottom: 20px;
}

.media__title {
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: var(--color-white);
}
.media__title-muted { color: rgba(255, 255, 255, 0.4); }
.media__title-hl { background: var(--gradient-accent); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

/* Tabs */
.media__tabs {
    display: flex;
    gap: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0;
}

.media__tab {
    padding: 12px 0;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.media__tab::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-accent);
    transition: width 0.3s ease;
}

.media__tab:hover {
    color: rgba(255, 255, 255, 0.8);
}

.media__tab.active {
    color: var(--color-white);
}

.media__tab.active::after {
    width: 100%;
}

/* Panels */
.media__panel {
    display: none;
    animation: fadeInPanel 0.5s ease;
}

.media__panel.active {
    display: block;
}

@keyframes fadeInPanel {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.media__description {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.5);
    max-width: 600px;
    margin-bottom: 32px;
}

/* Grid */
.media__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.media__grid--books {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

/* Cards */
.media__card {
    background-color: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease;
}

.media__card:hover {
    border-color: rgba(93, 120, 255, 0.2);
    transform: translateY(-4px);
}

.media__card-image {
    width: 100%;
    height: 140px;
    overflow: hidden;
}

.media__card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.media__card:hover .media__card-image img {
    transform: scale(1.05);
}

.media__card-content {
    padding: 20px;
}

.media__card-tag {
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    color: var(--color-accent);
    margin-bottom: 8px;
    display: block;
}

.media__card-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-white);
    line-height: 1.4;
    margin-bottom: 8px;
}

.media__card-excerpt {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Books */
.media__book {
    display: flex;
    gap: 32px;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.media__book-cover {
    flex-shrink: 0;
    width: 150px;
    height: 220px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.media__book-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.media__book-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.media__book-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-white);
    line-height: 1.3;
}

.media__book-author {
    font-size: 0.875rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.media__book-description {
    font-size: 0.9375rem;
    color: #888888;
    line-height: 1.6;
    flex-grow: 1;
}

.btn--small {
    padding: 10px 20px;
    font-size: 0.8125rem;
}

/* ========================================
   CONTACT SECTION
   ======================================== */

.contact {
    padding: 120px 0;
    background-color: #000000;
}

.contact__container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
}

.contact__left {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.contact__header {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact__label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.48);
}

.contact__title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 600;
    line-height: 1.1;
    color: var(--color-white);
}

.contact__description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #888888;
    max-width: 400px;
}

/* Team */
.contact__team {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact__team-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-white);
}

.contact__team-member {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.contact__avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.contact__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact__member-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact__member-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-white);
}

.contact__member-details {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: #888888;
}

.contact__dot {
    color: #555555;
}

.contact__email {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact__email:hover {
    opacity: 0.8;
}

/* Right */
.contact__right {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 500px;
}

.contact__image {
    position: absolute;
    inset: 0;
}

.contact__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact__video {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.contact__video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact__tiles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: calc(100% - 48px);
    max-width: 400px;
}

.contact__tile {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact__tile-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
}

.contact__tile-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact__tile-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.5);
}

.contact__tile-value {
    font-size: 0.9375rem;
    color: var(--color-white);
}

.contact__tile-value a {
    color: var(--color-white);
    text-decoration: none;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background-color: #000000;
}

.footer__container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.footer__main {
    padding: 80px 0;
}

.footer__divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    margin-bottom: 60px;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
}

.footer__left {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.footer__brand {
    display: inline-block;
}

.footer__logo {
    height: 40px;
    width: auto;
}

/* Newsletter */
.footer__newsletter {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__newsletter-top {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__newsletter-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.48);
}

.footer__newsletter-field {
    display: flex;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.footer__newsletter-input {
    flex: 1;
    padding: 14px 16px;
    background: transparent;
    border: none;
    color: var(--color-white);
    font-family: inherit;
    font-size: 0.9375rem;
    outline: none;
}

.footer__newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.footer__newsletter-btn {
    padding: 14px 20px;
    background: var(--gradient-accent);
    border: none;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer__newsletter-btn:hover {
    background: linear-gradient(135deg, #4a5ae8 0%, #b4bcff 100%);
}

.footer__newsletter-disclaimer {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.48);
}

/* Footer Right - Columns */
.footer__right {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer__column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer__column-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.48);
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__link {
    font-size: 0.9375rem;
    color: var(--color-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__link:hover {
    color: var(--color-accent);
}

/* Footer Marquee */
.footer__marquee {
    padding: 60px 0;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__marquee-track {
    display: flex;
    animation: footerMarquee 8s linear infinite;
}

.footer__marquee-item {
    display: flex;
    align-items: center;
    gap: 40px;
    padding-right: 40px;
}

.footer__marquee-logo {
    height: 120px;
    width: auto;
}

.footer__marquee-separator {
    font-size: 1.5rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes footerMarquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-33.333%);
    }
}

/* Footer Bottom */
.footer__bottom {
    padding: 32px 0;
}

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

.footer__social {
    display: flex;
    gap: 12px;
}

.footer__social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
}

.footer__social-link:hover {
    color: var(--color-white);
}

.footer__copy {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.48);
}

.footer__credit {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer__credit:hover {
    opacity: 0.8;
}

/* Footer Legal */
.footer__legal {
    padding: 24px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__legal-text {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.32);
    line-height: 1.7;
    max-width: 900px;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
    :root {
        --container-padding: 40px;
    }

    .header__nav {
        display: none;
    }

    .header__cta {
        display: none;
    }

    .header__menu-toggle {
        display: flex;
    }

    .hero {
        background-position: right center;
    }

    .hero__content {
        max-width: 500px;
    }

    .about__container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about__image {
        max-width: 400px;
        margin: 0 auto;
    }

    .stats__container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .stats__left {
        position: static;
    }

    .marquee-section {
        margin-top: 0;
    }

    /* Services Responsive */
    .services-v2__content {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .services-v2__tabs {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 12px;
        gap: 8px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .services-v2__tabs::-webkit-scrollbar {
        display: none;
    }

    .services-v2__tab {
        flex-shrink: 0;
        min-width: 280px;
        padding: 20px 24px;
    }

    .services-v2__tab:hover {
        transform: none;
    }

    .services-v2__panels {
        min-height: 520px;
    }

    .services-v2__panel-content {
        padding: 28px;
    }

    .services-v2__panel-title {
        font-size: 1.375rem;
    }

    .services-v2__cta-card {
        display: none;
    }

    .section-separator {
        padding: 24px 20px;
        gap: 16px;
    }

    
    .section-separator__icon {
        width: 44px;
        height: 44px;
    }

    .section-separator__icon img {
        width: 18px;
    }

    .media__top {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .media__tabs {
        gap: 24px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .media__tab {
        white-space: nowrap;
        flex-shrink: 0;
    }

    .media__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .media__grid--books {
        grid-template-columns: 1fr;
    }

    .media__book {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 24px;
        gap: 24px;
    }

    .media__book-cover {
        width: 120px;
        height: 180px;
    }

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

    .media__book-title {
        font-size: 1.1rem;
    }

    .media__book-description {
        font-size: 0.875rem;
    }

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

    .contact {
        padding: 80px 0;
    }

    .contact__left {
        gap: 40px;
    }

    .contact__title {
        font-size: 2rem;
    }

    .contact__description {
        font-size: 1rem;
    }

    .contact__team-member {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .contact__member-details {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .contact__dot {
        display: none;
    }

    .contact__right {
        min-height: 350px;
    }

    .contact__tiles {
        width: 90%;
    }

    .contact__tile {
        padding: 14px 16px;
    }

    .contact__tile-value {
        font-size: 0.875rem;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer__right {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer__bottom-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    html, body {
        overflow-x: clip;
        max-width: 100vw;
    }

    .hero__tags-marquee {
        overflow: hidden;
    }

    :root {
        --container-padding: 24px;
    }

    .hero {
        background: url('../assets/img/bgmocile2.png') no-repeat center center;
        background-size: cover;
    }

    .hero__logo-img {
        max-width: 100px;
    }

    .hero__content {
        gap: 14px;
        padding-top: 10px;
    }

    .hero__title {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 0;
    }

    .hero__description {
        font-size: 15px;
        padding-right: 40px;
        line-height: 1.5;
    }

    .hero__cta {
        flex-direction: column;
        gap: 10px;
        margin-top: 5px;
    }

    .hero__cta .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 14px 24px;
    }

    .hero__pillars {
        padding-top: 12px;
    }

    .hero__pillars-header {
        margin-bottom: 10px;
        justify-content: center;
    }

    .hero__pillars-title {
        font-size: 0.7rem;
    }

    .hero__tags-marquee {
        max-width: 100%;
    }

    .hero__tags-track {
        gap: 20px;
    }

    .hero__tag {
        font-size: 0.8rem;
    }

    .hero__tag:not(:last-child)::after {
        display: block;
        right: -12px;
    }

    .hero__scroll-indicator {
        display: none;
    }

    .marquee {
        overflow: hidden;
    }

    .marquee__item {
        width: 220px;
        height: 300px;
    }

    .marquee__card {
        width: 260px;
        height: 300px;
        padding: 20px;
    }

    .marquee__card-title {
        font-size: 0.95rem;
        line-height: 1.4;
    }

    .marquee__card-number {
        font-size: 2rem;
    }

    .marquee__card-stats {
        gap: 2px;
    }

    .marquee__card--video .marquee__card-top,
    .marquee__card--video .marquee__card-bottom {
        position: relative;
        z-index: 3;
    }

    .marquee__card-video-overlay {
        z-index: 2;
    }

    .hero::after {
        height: 75vh;
    }

    .services__tab-expanded {
        height: 220px;
    }

    .services__tab-item.active .services__tab-content {
        max-height: 220px;
    }

    /* Services Mobile */
    .services-v2__tabs {
        flex-direction: column;
        gap: 8px;
    }

    .services-v2__tab {
        min-width: auto;
        padding: 18px 20px;
        gap: 16px;
    }

    .services-v2__tab-icon {
        width: 44px;
        height: 44px;
    }

    .services-v2__tab-title {
        font-size: 0.9375rem;
    }

    .services-v2__tab-subtitle {
        font-size: 0.8125rem;
    }

    .services-v2__panels {
        min-height: 460px;
    }

    .services-v2__panel-content {
        padding: 24px;
        gap: 10px;
    }

    .services-v2__panel-title {
        font-size: 1.125rem;
    }

    .services-v2__panel-description {
        font-size: 0.875rem;
    }

    .section-separator {
        padding: 20px 16px;
        gap: 12px;
    }

    
    .section-separator__icon {
        width: 36px;
        height: 36px;
    }

    .section-separator__icon img {
        width: 14px;
    }

    .footer__marquee-track {
        animation: footerMarquee 4s linear infinite;
    }
}

/* ========================================
   AZA — AJUSTES DE MARCA E FORMULÁRIO
   ======================================== */

/* Logo wordmark (mais largo que o ícone original) */
.header__logo { height: 30px; }
.hero__logo-img { height: 44px; }
.section-separator__icon {
    background: linear-gradient(145deg, rgba(59, 91, 254, 0.18) 0%, rgba(112, 72, 232, 0.06) 100%);
}
.section-separator__icon img { width: 34px; height: auto; filter: none; }
.footer__logo { height: 34px; }
.footer__marquee-logo { height: 34px; }

/* Prova social — screenshots de celular (retrato) */
.marquee__item--phone { background: #0d0d12; }
.marquee__item--phone img { object-fit: contain; padding: 10px; }

/* Cards de diferenciais (sem imagem) */
.media__card-content--solo {
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 190px;
    position: relative;
}
.media__card-content--solo::before {
    content: '';
    position: absolute;
    top: 0; left: 24px; right: 24px;
    height: 2px;
    background: var(--gradient-accent);
    border-radius: 2px;
    opacity: .85;
}

/* Contato — tiles inline na coluna esquerda */
.contact__tiles--inline {
    position: static;
    transform: none;
    width: 100%;
    max-width: none;
    margin-top: 16px;
}
.contact__tiles--inline .contact__tile {
    text-decoration: none;
    color: inherit;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: border-color .3s ease, transform .3s ease;
    cursor: pointer;
}
.contact__tiles--inline .contact__tile:hover {
    border-color: rgba(123, 140, 255, 0.5);
    transform: translateY(-2px);
}

/* Formulário de captura (lead form) */
.contact__right { min-height: auto; overflow: visible; }
.lead-form {
    background: linear-gradient(160deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    backdrop-filter: blur(10px);
}
.lead-form__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.2;
}
.lead-form__subtitle {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: -8px;
    margin-bottom: 6px;
}
.lead-form__field { display: flex; flex-direction: column; gap: 6px; }
.lead-form__label {
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.01em;
}
.lead-form__input {
    width: 100%;
    padding: 14px 16px;
    background-color: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    color: var(--color-white);
    font-family: var(--font-family);
    font-size: 0.9375rem;
    transition: border-color .3s ease, box-shadow .3s ease;
}
.lead-form__input::placeholder { color: rgba(255, 255, 255, 0.35); }
.lead-form__input:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(123, 140, 255, 0.18);
}
.lead-form__submit {
    width: 100%;
    margin-top: 8px;
    font-size: 0.9375rem;
    letter-spacing: 0.03em;
}
.lead-form__disclaimer {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.5;
    text-align: center;
}
.lead-form__success {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 18px 20px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0,33,255,0.15) 0%, rgba(43,70,255,0.1) 100%);
    border: 1px solid rgba(123, 140, 255, 0.4);
    color: var(--color-white);
    font-size: 0.9375rem;
}
.lead-form__success strong { font-size: 1.0625rem; }
.lead-form.is-loading .lead-form__submit { opacity: .6; pointer-events: none; }

@media (max-width: 768px) {
    .lead-form { padding: 28px 22px; }
}

/* ============================================================
   PUXADO DO FIG — re-tematizado para o dark/índigo da AZA
   (brand intro, depoimentos slider, footer, whatsapp float)
   ============================================================ */

/* Tokens auxiliares + utilitários usados pelos componentes portados */
:root {
    --gray-400: #a3a3a3;
    --gray-500: #8a8a95;
    --transition: .4s cubic-bezier(.25,.46,.45,.94);
}
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--container-padding); }

/* Reveal (entrada por scroll dos componentes puxados do Fig) */
.reveal {
    opacity: 0;
    transform: translateY(30px) scale(0.97);
    filter: blur(4px);
    transition: opacity .8s var(--transition), transform .8s var(--transition), filter .8s var(--transition);
}
.reveal.active { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }

/* ---------- DEPOIMENTOS (sidebar + slider, cards dark) ---------- */
.depoimentos { padding: 110px 0; background: var(--color-bg); position: relative; }
.depoimentos__head {
    display: flex; align-items: flex-end; justify-content: space-between;
    gap: 24px; margin-bottom: 56px;
}
.depoimentos__label {
    font-size: .75rem; text-transform: uppercase; letter-spacing: .1em;
    color: var(--color-accent); font-weight: 600;
}
.depoimentos__title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 600; letter-spacing: -.02em; line-height: 1.1; color: var(--color-white); margin-top: 12px; }
.depoimentos__badge { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 700; letter-spacing: -.03em; line-height: 1;
    background: var(--gradient-accent); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; white-space: nowrap; }

.testimonial-layout { display: flex; gap: 32px; align-items: stretch; }
.testimonial-sidebar { min-width: 300px; max-width: 300px; position: relative; overflow: hidden; border-radius: 20px; }
.testimonial-sidebar-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.testimonial-sidebar-overlay { position: absolute; inset: 0; background: linear-gradient(160deg, rgba(0,33,255,.35) 0%, rgba(10,10,10,.85) 100%); }
.testimonial-sidebar-content { position: relative; z-index: 1; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; gap: 26px; padding: 48px 32px; height: 100%; box-sizing: border-box; }
.testimonial-sidebar-logo { height: 30px; width: auto; }
.testimonial-sidebar-divider { width: 44px; height: 1px; background: rgba(255,255,255,.3); }
.testimonial-sidebar-number { font-size: 3rem; font-weight: 700; line-height: 1; letter-spacing: -.03em; color: #fff; }
.testimonial-sidebar-label { font-size: .875rem; color: rgba(255,255,255,.7); margin-top: 6px; }

.testimonial-slider-wrapper { flex: 1; min-width: 0; overflow: hidden; }
.testimonial-slides { display: flex; align-items: stretch; transition: transform .5s ease; }
.testimonial-slide { min-width: 50%; padding: 0 10px; box-sizing: border-box; display: flex; }
.testimonial-card { height: 100%; display: flex; flex: 1; }
.testimonial-content {
    display: flex; flex-direction: column; justify-content: space-between;
    padding: 36px; border: 1px solid rgba(255,255,255,.1); border-radius: 20px; flex: 1;
    background: linear-gradient(160deg, rgba(255,255,255,.05) 0%, rgba(255,255,255,.02) 100%);
}
.testimonial-stars { display: flex; gap: 6px; margin-bottom: 16px; }
.testimonial-stars svg { fill: #f5c451; }
.testimonial-quote { font-size: clamp(1rem, 1.3vw, 1.15rem); font-weight: 500; line-height: 1.5; margin-bottom: 28px; color: rgba(255,255,255,.92); }
.testimonial-author-avatar { width: 48px; height: 48px; border-radius: 50%; overflow: hidden; display: flex; align-items: center; justify-content: center; background: var(--gradient-accent); color: #fff; font-weight: 700; font-size: .95rem; margin-bottom: 12px; }
.testimonial-author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-author h4 { font-size: 1rem; font-weight: 600; color: var(--color-white); }
.testimonial-author p { font-size: .875rem; color: var(--gray-400); }

.testimonial-slider-nav { display: flex; gap: 12px; margin-top: 28px; }
.slider-btn { width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; background: transparent; transition: var(--transition); }
.slider-btn:hover { background: var(--gradient-accent); border-color: transparent; }

@media (max-width: 900px) {
    .testimonial-layout { flex-direction: column; gap: 20px; }
    .testimonial-sidebar { min-width: unset; max-width: unset; min-height: 170px; }
    .testimonial-sidebar-content { flex-direction: row; flex-wrap: wrap; justify-content: center; padding: 24px; gap: 16px; }
    .testimonial-sidebar-divider { display: none; }
    .testimonial-slide { min-width: 100%; padding: 0 4px; }
    .depoimentos__head { flex-direction: column; align-items: flex-start; }
    .testimonial-slider-nav { justify-content: center; }
}

/* ---------- FOOTER (newsletter + grade de links) ---------- */
.ftr { background: var(--color-bg-dark); color: #fff; padding: 110px 0 28px; border-top: 1px solid rgba(255,255,255,.06); position: relative; overflow: hidden; }
.ftr-bg-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; pointer-events: none; }
.ftr-bg-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(1,0,14,.78) 0%, rgba(1,0,14,.88) 100%); -webkit-backdrop-filter: blur(5px) saturate(120%); backdrop-filter: blur(5px) saturate(120%); }
.ftr > .container { position: relative; z-index: 2; }

/* Topo: headline + newsletter */
.ftr-top { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; }
.ftr-title { font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 700; letter-spacing: -.03em; line-height: 1; color: #fff; }
.ftr-sub { font-size: 1rem; line-height: 1.6; color: rgba(255,255,255,.6); margin-top: 16px; max-width: 420px; }
.ftr-news { width: 100%; max-width: 400px; }
.ftr-news-field { position: relative; display: flex; }
.ftr-news-input { width: 100%; height: 68px; border-radius: 100px; border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.05); color: #fff; font-family: var(--font-family); font-size: 1rem; padding: 0 68px 0 26px; outline: none; transition: border-color .3s ease, box-shadow .3s ease; }
.ftr-news-input::placeholder { color: rgba(255,255,255,.4); }
.ftr-news-input:focus { border-color: var(--color-accent); box-shadow: 0 0 0 3px rgba(93,120,255,.18); }
.ftr-news-btn { position: absolute; right: 8px; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; border-radius: 50%; border: none; background: var(--gradient-accent); color: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: transform .3s ease, box-shadow .3s ease; }
.ftr-news-btn:hover { transform: translateY(-50%) scale(1.06); box-shadow: 0 8px 24px rgba(0,33,255,.35); }
.ftr-news-msg { display: block; margin-top: 12px; font-size: .875rem; color: var(--color-accent); padding-left: 8px; }

/* Divisor */
.ftr-divider { height: 1px; background: rgba(255,255,255,.1); margin: 56px 0; }

/* Meio: marca + grade */
.ftr-mid { display: grid; grid-template-columns: auto 1fr; gap: 40px 80px; }
.ftr-brand { display: flex; flex-direction: column; justify-content: space-between; gap: 40px; }
.ftr-logo img { height: 44px; width: auto; }
.ftr-socials { display: flex; gap: 14px; }
.ftr-social { width: 48px; height: 48px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; color: #fff; transition: background .25s ease, color .25s ease, border-color .25s ease; }
.ftr-social:hover { background: var(--gradient-accent); color: #fff; border-color: transparent; }
.ftr-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-left: auto; }
.ftr-col { display: flex; flex-direction: column; gap: 20px; }
.ftr-col-title { font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--color-accent); }
.ftr-links { list-style: none; display: flex; flex-direction: column; gap: 12px; margin: 0; padding: 0; }
.ftr-links a { font-size: 1.0625rem; letter-spacing: -.01em; color: rgba(255,255,255,.7); transition: color .2s ease, padding-left .2s ease; }
.ftr-links a:hover { color: #fff; padding-left: 4px; }

/* Base */
.ftr-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 90px; padding-top: 26px; }
.ftr-bottom-inner { display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.ftr-copy, .ftr-credit { font-size: .8125rem; color: rgba(255,255,255,.5); }
.ftr-credit a { color: var(--color-accent); text-decoration: underline; }

/* Responsivo */
@media (max-width: 991px) {
    .ftr { padding: 80px 0 28px; }
    .ftr-top { grid-template-columns: 1fr; gap: 32px; }
    .ftr-news { max-width: 100%; }
    .ftr-mid { grid-template-columns: 1fr; gap: 56px; }
    .ftr-brand { flex-direction: row; justify-content: space-between; align-items: center; }
    .ftr-grid { margin-left: 0; }
    .ftr-bottom { margin-top: 64px; }
}
@media (max-width: 640px) {
    .ftr-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
    .ftr-divider { margin: 40px 0; }
    .ftr-brand { flex-direction: column; align-items: flex-start; gap: 28px; }
    .ftr-bottom-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
    .ftr-news-input { height: 58px; }
    .ftr-news-btn { width: 44px; height: 44px; }
}

/* ---------- SOBRE (reestruturado: cabeçalho + imagem/pontos) ---------- */
.sobre { padding: 110px 0; background: #000000; }
.sobre-head { display: grid; grid-template-columns: 1.15fr 1fr; gap: 56px; align-items: end; padding-bottom: 52px; margin-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,.1); }
.sobre-eyebrow { display: inline-block; font-size: .8125rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--color-accent); margin-bottom: 20px; }
.sobre-statement-text { font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 600; line-height: 1.15; letter-spacing: -.02em; color: #fff; margin: 0; max-width: 640px; }
.sobre-head-aside { display: flex; flex-direction: column; align-items: flex-start; gap: 26px; }
.sobre-lead { font-size: 1.0625rem; line-height: 1.7; color: rgba(255,255,255,.72); margin: 0; }
.sobre-body { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: center; }
.sobre-media { border-radius: 20px; overflow: hidden; aspect-ratio: 4/5; background: rgba(255,255,255,.04); }
.sobre-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sobre-points { display: flex; flex-direction: column; }
.sobre-point { display: flex; gap: 22px; padding: 26px 0; border-top: 1px solid rgba(255,255,255,.1); }
.sobre-point:last-child { border-bottom: 1px solid rgba(255,255,255,.1); }
.sobre-point-num { font-size: .95rem; font-weight: 700; color: var(--color-accent); flex-shrink: 0; padding-top: 4px; font-variant-numeric: tabular-nums; }
.sobre-point-body h3 { font-size: 1.15rem; font-weight: 600; color: #fff; margin: 0 0 8px; }
.sobre-point-body p { font-size: 1rem; line-height: 1.65; color: rgba(255,255,255,.68); margin: 0; }
@media (max-width: 991px) {
    .sobre { padding: 80px 0; }
    .sobre-head { grid-template-columns: 1fr; gap: 30px; align-items: start; padding-bottom: 44px; margin-bottom: 44px; }
    .sobre-body { grid-template-columns: 1fr; gap: 40px; }
    .sobre-media { order: -1; aspect-ratio: 16/10; }
}
@media (max-width: 479px) {
    .sobre { padding: 64px 0; }
    .sobre-point { gap: 16px; padding: 22px 0; }
    .sobre-point-body p { font-size: .95rem; }
}

/* ---------- HERO: texto claro + scrim escuro leve (alto contraste sobre o vídeo) ---------- */
.hero::before { display: none; } /* sem filtro na frente do vídeo */
.hero::after { display: none; }
.hero__title {
    background: linear-gradient(to bottom, #ffffff 0%, #cdd4ff 120%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 24px rgba(0,0,0,0.5);
}
.hero__description { color: rgba(255,255,255,0.85); text-shadow: 0 1px 16px rgba(0,0,0,0.55); }
.hero__eyebrow {
    color: #cdd4ff;
    border-color: rgba(255,255,255,0.3);
    background: rgba(10,14,30,0.4);
    backdrop-filter: blur(6px);
}
.hero__eyebrow::before { background: #5d78ff; box-shadow: 0 0 0 4px rgba(93,120,255,0.2); }
.hero__proof { border-top-color: rgba(255,255,255,0.18); }
.hero__proof-item span { color: rgba(255,255,255,0.72); text-shadow: 0 1px 12px rgba(0,0,0,0.5); }
.hero .btn--link { color: rgba(255,255,255,0.85); text-shadow: 0 1px 12px rgba(0,0,0,0.5); }
.hero .btn--link:hover { color: #ffffff; }
.hero__scroll-text { color: rgba(255,255,255,0.7); }
.hero__mouse { border-color: rgba(255,255,255,0.5); }

/* Vídeo de fundo do hero */
.hero__video { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero__video video { width: 100%; height: 100%; object-fit: cover; }
.hero__container { z-index: 2; }

/* ---------- BOTÃO FLUTUANTE DE WHATSAPP (vidro elegante) ---------- */
.wa-float {
    position: fixed; bottom: 24px; right: 24px; z-index: 900;
    display: inline-flex; align-items: center; gap: 0;
    padding: 10px; border-radius: 100px;
    background: rgba(37, 211, 102, 0.16);
    -webkit-backdrop-filter: blur(16px) saturate(150%); backdrop-filter: blur(16px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #fff; font-weight: 600; font-size: 0.9rem; line-height: 1;
    box-shadow: 0 10px 30px rgba(0,0,0,0.22), inset 0 1px 0 rgba(255,255,255,0.3);
    transition: transform .3s ease, box-shadow .3s ease, background .3s ease, padding .35s ease;
}
.wa-float:hover {
    transform: translateY(-2px);
    padding: 10px 20px 10px 10px;
    background: rgba(37, 211, 102, 0.26);
    box-shadow: 0 14px 38px rgba(37,211,102,0.28), inset 0 1px 0 rgba(255,255,255,0.4);
}
.wa-float__icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
    background: #25d366; color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.22);
}
.wa-float__icon svg { width: 21px; height: 21px; }
.wa-float__text { color: #000; white-space: nowrap; max-width: 0; opacity: 0; overflow: hidden; transition: max-width .4s ease, opacity .3s ease, margin-left .4s ease; }
.wa-float:hover .wa-float__text { max-width: 220px; opacity: 1; margin-left: 12px; }
.wa-float__status { display: none; }
@media (max-width: 600px) {
    .wa-float__text { display: none; }
    .wa-float { padding: 8px; }
    .wa-float__icon { width: 44px; height: 44px; }
    .wa-float__icon svg { width: 24px; height: 24px; }
}

/* ---------- BARRA FIXA DE CTA NO MOBILE ---------- */
.mobile-cta-bar { display: none; }
@media (max-width: 1024px) {
    .mobile-cta-bar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 899; display: flex; gap: 10px; padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
        background: #000000; border-top: 1px solid rgba(255,255,255,.08);
        transform: translateY(110%); opacity: 0; pointer-events: none;
        transition: transform .4s ease, opacity .4s ease; }
    .mobile-cta-bar.visible { transform: translateY(0); opacity: 1; pointer-events: auto; }
    .mobile-cta-bar .btn { flex: 1; padding: 14px; font-size: .875rem; }
    .wa-float { bottom: 78px; }
    body { padding-bottom: 64px; }
}

/* Lead form — campo opcional + bullets de confiança */
.lead-form__opt { color: rgba(255,255,255,.4); font-weight: 400; }
.lead-form__trust { list-style: none; display: flex; flex-direction: column; gap: 8px; margin: 4px 0 0; padding: 0; }
.lead-form__trust li { position: relative; padding-left: 24px; font-size: .8125rem; color: rgba(255,255,255,.72); line-height: 1.4; }
.lead-form__trust li::before { content: '✓'; position: absolute; left: 0; top: 0; color: var(--color-accent); font-weight: 700; }

/* Hero — selo de autoridade + faixa de prova social */
.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
    padding: 7px 14px;
    border-radius: 100px;
    border: 1px solid rgba(123, 140, 255, 0.35);
    background: rgba(123, 140, 255, 0.08);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--color-accent);
}
.hero__eyebrow::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--color-accent);
    box-shadow: 0 0 0 4px rgba(123, 140, 255, 0.15);
}
.hero__proof {
    display: flex;
    flex-wrap: wrap;
    gap: 36px;
    margin-top: 4px;
    padding-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.hero__proof-item { display: flex; flex-direction: column; gap: 4px; }
.hero__proof-item strong {
    font-size: 1.7rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.02em;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero__proof-item span { font-size: 0.8125rem; color: rgba(255, 255, 255, 0.6); line-height: 1.3; }
@media (max-width: 768px) {
    .hero__proof { gap: 18px 24px; padding-top: 20px; }
    .hero__proof-item strong { font-size: 1.35rem; }
    .hero__proof-item span { font-size: 0.72rem; }
    .hero__eyebrow { font-size: 0.6875rem; padding: 6px 12px; }
}

/* ============================================================
   HERO + MENU estilo Minart (adaptado — claro, índigo AZA)
   ============================================================ */
.topbar-gradient { height: 3px; background: linear-gradient(90deg, #0021ff, #2b46ff, #2b6bff, #2b46ff, #0021ff); background-size: 200% 100%; animation: az-gradient-shift 5s linear infinite; position: relative; z-index: 1001; }
@keyframes az-gradient-shift { 0% { background-position: 0% 50%; } 100% { background-position: 200% 50%; } }

/* ===== HEADER (claro, sticky) ===== */
.header {
    position: sticky; top: 0; right: auto; left: auto;
    z-index: 1000; padding: 0;
    background: #000000;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transform: none; opacity: 1; box-shadow: none;
    transition: box-shadow .4s ease;
}
.header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.4); }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.header__logo { display: inline-flex; align-items: center; height: auto; flex-shrink: 0; }
.header__logo-img { height: 34px; width: auto; }
.header__nav { display: flex; align-items: center; gap: 2rem; }
.header__nav a:not(.header__cta) { font-size: 0.9rem; font-weight: 500; color: rgba(255,255,255,0.85); text-decoration: none; position: relative; padding: 0.4rem 0.2rem; transition: color .3s ease; }
.header__nav a:not(.header__cta)::after { content: ''; position: absolute; bottom: -2px; left: 50%; width: 0; height: 2px; background: linear-gradient(90deg, #4d6bff, #5d78ff); border-radius: 2px; transition: width .35s ease, left .35s ease; }
.header__nav a:not(.header__cta):hover { color: #fff; }
.header__nav a:not(.header__cta):hover::after,
.header__nav a:not(.header__cta).active::after { width: 100%; left: 0; }
.header__nav-logo { display: none; }
.header__cta { display: inline-flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.05); color: #fff; border: 1px solid rgba(255,255,255,0.22); font-size: 0.85rem; font-weight: 500; letter-spacing: 0.01em; padding: 0.62rem 1.5rem; border-radius: 100px; transition: background .3s ease, color .3s ease, border-color .3s ease; }
.header__cta:hover { background: #fff; color: #000; border-color: #fff; }
.header__menu-toggle { display: none; flex-direction: column; justify-content: center; align-items: center; gap: 5px; width: 40px; height: 40px; cursor: pointer; z-index: 10000; position: relative; background: none; border: none; }
.header__menu-toggle span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: transform .3s ease, opacity .3s ease; }
.header__menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__menu-toggle.active span:nth-child(2) { opacity: 0; }
.header__menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO (claro, glows) ===== */
.hero { position: relative; overflow: hidden; min-height: auto; display: block; align-items: initial; background: #ffffff; padding: 3.5rem 0 5rem; }
.hero > .container { position: relative; z-index: 1; }
.hero__glow { position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.22; pointer-events: none; z-index: 0; }
.hero__glow--1 { width: 400px; height: 400px; background: radial-gradient(circle, #0021ff, transparent 70%); top: -5%; left: -5%; animation: az-glow-1 13s ease-in-out infinite; }
.hero__glow--2 { width: 350px; height: 350px; background: radial-gradient(circle, #2b46ff, transparent 70%); top: 8%; right: 4%; animation: az-glow-2 16s ease-in-out infinite; }
.hero__glow--3 { width: 300px; height: 300px; background: radial-gradient(circle, #2b6bff, transparent 70%); bottom: 22%; left: 10%; animation: az-glow-3 18s ease-in-out infinite; }
.hero__glow--4 { width: 340px; height: 340px; background: radial-gradient(circle, #3a56ff, transparent 70%); bottom: 6%; right: -3%; animation: az-glow-4 15s ease-in-out infinite; }
.hero__glow--5 { width: 280px; height: 280px; background: radial-gradient(circle, #4a5cff, transparent 70%); top: 40%; left: 42%; animation: az-glow-5 20s ease-in-out infinite; }
@keyframes az-glow-1 { 0%,100%{transform:translate(0,0) scale(1);} 33%{transform:translate(60px,40px) scale(1.1);} 66%{transform:translate(-30px,60px) scale(.9);} }
@keyframes az-glow-2 { 0%,100%{transform:translate(0,0) scale(1);} 33%{transform:translate(-50px,30px) scale(.9);} 66%{transform:translate(40px,-40px) scale(1.15);} }
@keyframes az-glow-3 { 0%,100%{transform:translate(0,0) scale(1);} 33%{transform:translate(40px,-50px) scale(1.1);} 66%{transform:translate(-60px,20px) scale(.95);} }
@keyframes az-glow-4 { 0%,100%{transform:translate(0,0) scale(1);} 33%{transform:translate(-40px,-30px) scale(1.05);} 66%{transform:translate(30px,50px) scale(.9);} }
@keyframes az-glow-5 { 0%,100%{transform:translate(0,0) scale(1);} 50%{transform:translate(-50px,-40px) scale(1.2);} }

.hero__top { text-align: center; margin-bottom: 2.25rem; display: flex; flex-direction: column; align-items: center; }
.hero__badge { display: inline-flex; align-items: center; gap: 0.6rem; padding: 0.35rem 0.75rem 0.35rem 0.35rem; background: #f3f5fb; border: 1px solid rgba(0,0,0,0.06); border-radius: 100px; margin-bottom: 1.75rem; color: #14161f; transition: background .3s ease; }
.hero__badge:hover { background: #e9edf9; }
.hero__badge-tag { display: inline-block; padding: 0.2rem 0.6rem; background: var(--gradient-accent); color: #fff; border-radius: 100px; font-size: 0.625rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.hero__badge-text { font-size: 0.875rem; font-weight: 500; color: #14161f; }
.hero__badge-arrow { flex-shrink: 0; color: #14161f; }
.hero__title { font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 700; max-width: 820px; margin: 0 auto; line-height: 1.14; letter-spacing: -0.025em; color: #12141c; background: none; -webkit-text-fill-color: #12141c; text-shadow: none; }
.hero__title-subtle { background: linear-gradient(90deg, #0021ff, #2b46ff, #2b6bff, #0021ff); background-size: 200% 100%; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; animation: az-gradient-shift 5s linear infinite; }
.hero__bottom { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 1.75rem; margin-bottom: 2.75rem; }
.hero__description { font-size: 1rem; max-width: 560px; line-height: 1.65; color: #5b5f6e; font-weight: 400; text-shadow: none; }
.hero__description strong { color: #12141c; font-weight: 600; }
.hero__cta-btn { display: inline-flex; align-items: center; gap: 0.65rem; background: linear-gradient(135deg, #0021ff 0%, #2b6bff 100%); color: #fff; border-radius: 100px; padding: 0.95rem 2rem; overflow: visible; transition: background .35s ease, transform .3s ease, box-shadow .35s ease; flex-shrink: 0; box-shadow: 0 8px 24px rgba(0,33,255,0.3); }
.hero__cta-btn:hover { background: linear-gradient(135deg, #1a3aff 0%, #4a8bff 100%); transform: translateY(-2px); box-shadow: 0 14px 34px rgba(0,33,255,0.45); }
.hero__cta-text-wrap { padding-left: 0; font-size: 0.95rem; font-weight: 600; letter-spacing: 0.01em; line-height: 1; display: flex; align-items: center; }
.hero__cta-icon { display: inline-flex; align-items: center; justify-content: center; width: auto; height: auto; margin: 0; background: none; border-radius: 0; flex-shrink: 0; overflow: visible; }
.hero__cta-icon svg { width: 14px; height: 14px; animation: az-arrow-nudge 1.3s ease-in-out infinite; }
@keyframes az-arrow-nudge { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(4px); } }

.hero__banner { position: relative; border-radius: 18px; overflow: hidden; min-height: 380px; box-shadow: 0 30px 70px rgba(20,22,40,0.18); }
.hero__banner-videos { position: absolute; inset: 0; }
.hero__banner-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 1.2s ease; }
.hero__banner-video.active { opacity: 1; }
.hero__banner-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(6,8,20,0.78) 0%, rgba(6,8,20,0.15) 55%, rgba(6,8,20,0.05) 100%); z-index: 1; }
.hero__banner-content { position: relative; z-index: 2; display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; padding: 2.25rem 2.5rem; height: 100%; min-height: 380px; }
.hero__banner-left { display: flex; flex-direction: row; align-items: center; gap: 1rem; }
.hero__banner-cta { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; font-weight: 600; color: #fff; background: rgba(255,255,255,0.12); -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,0.25); border-radius: 100px; padding: 0.65rem 1.4rem; position: relative; overflow: hidden; z-index: 1; transition: border-color .4s ease; }
.hero__banner-cta::before { content: ''; position: absolute; inset: 0; background: var(--gradient-accent); z-index: -1; opacity: 0; transition: opacity .4s ease; }
.hero__banner-cta:hover { border-color: transparent; }
.hero__banner-cta:hover::before { opacity: 1; }
.hero__banner-cta svg { flex-shrink: 0; }
.hero__banner-dots { display: flex; gap: 0.5rem; }
.hero__banner-dot { width: 32px; height: 3px; border-radius: 2px; background: rgba(255,255,255,0.35); border: none; cursor: pointer; transition: background .4s ease, width .4s ease; padding: 0; }
.hero__banner-dot.active { background: #fff; width: 48px; }
.hero__banner-stats { display: flex; align-items: center; gap: 3rem; }
.hero__banner-stat { display: flex; flex-direction: column; align-items: flex-start; gap: 0.35rem; }
.hero__banner-stat-number { font-family: var(--font-family); font-size: clamp(2.4rem, 4vw, 3.6rem); font-weight: 700; color: #fff; letter-spacing: -0.03em; line-height: 1; white-space: nowrap; }
.hero__banner-stat-label { font-size: 0.9rem; color: rgba(255,255,255,0.75); font-weight: 500; letter-spacing: 0.02em; }
.hero__banner-stat-divider { width: 1px; height: 56px; background: rgba(255,255,255,0.2); }

.hero__marquee { position: relative; overflow: hidden; padding: 1rem 0; margin-top: 1.75rem; border-top: 1px solid rgba(0,0,0,0.08); border-bottom: 1px solid rgba(0,0,0,0.08); }
.hero__marquee-track { display: flex; width: max-content; animation: az-hero-marquee 32s linear infinite; }
@keyframes az-hero-marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.hero__marquee-items { display: flex; align-items: center; gap: 2rem; padding-right: 2rem; flex-shrink: 0; }
.hero__marquee-item { font-size: 0.8125rem; font-weight: 600; color: rgba(20,22,32,0.55); white-space: nowrap; text-transform: uppercase; letter-spacing: 0.06em; display: inline-flex; align-items: center; gap: 0.4rem; }
.hero__marquee-check { color: var(--color-accent); font-weight: 700; }
.hero__marquee-dot { width: 4px; height: 4px; background: rgba(20,22,32,0.2); border-radius: 50%; flex-shrink: 0; }
.hero__marquee-fade { position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none; }
.hero__marquee-fade--left { left: 0; background: linear-gradient(to right, #fff, transparent); }
.hero__marquee-fade--right { right: 0; background: linear-gradient(to left, #fff, transparent); }

.scroll-into-view { opacity: 0; transform: translateY(30px); transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1); }
.scroll-into-view.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1024px) {
    .hero__title { font-size: 2.7rem; }
    .hero__banner, .hero__banner-content { min-height: 360px; }
    .hero__banner-content { padding: 2rem; }
}
@media (max-width: 768px) {
    .container { padding: 0 20px; }
    .header__nav { display: none; position: fixed; inset: 0; width: 100vw; height: 100vh; background: #000000; flex-direction: column; justify-content: center; align-items: center; gap: 0; z-index: 9999; padding: 3rem 2rem; }
    .header__nav.active { display: flex; }
    .header__nav a:not(.header__cta) { font-size: 1.5rem; padding: 1rem 0; width: 100%; text-align: center; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .header__nav a:not(.header__cta)::after { display: none; }
    .header__nav a:not(.header__cta):first-of-type { border-top: 1px solid rgba(255,255,255,0.08); }
    .header__nav-logo { display: block; height: 30px; margin-bottom: 2rem; }
    .header__cta { margin-top: 2rem; width: 80%; padding: 1rem; font-size: 1rem; }
    .header__menu-toggle { display: flex; position: fixed; top: 18px; right: 1.25rem; }
    .hero { padding: 2.5rem 0 3rem; }
    .hero__glow { display: none; }
    .hero__top { margin-bottom: 1.5rem; }
    .hero__title { font-size: 1.7rem; }
    .hero__description { font-size: 0.9rem; padding-right: 0; text-align: center; }
    .hero__banner { min-height: 210px; border-radius: 14px; }
    .hero__banner-overlay { background: rgba(6,8,20,0.6); }
    .hero__banner-content { display: grid; grid-template-columns: 1fr 1fr; align-content: end; gap: 0; padding: 0; min-height: 210px; border-top: 1px solid rgba(255,255,255,0.1); }
    .hero__banner-left, .hero__banner-stats { display: contents; }
    .hero__banner-stat { padding: 1.1rem 1.25rem; border-bottom: 1px solid rgba(255,255,255,0.08); border-right: 1px solid rgba(255,255,255,0.08); display: flex; flex-direction: column; justify-content: center; }
    .hero__banner-stat:nth-child(2) { border-right: none; }
    .hero__banner-stat:nth-child(3) { border-bottom: none; }
    .hero__banner-cta { order: 4; align-self: center; justify-self: start; margin-left: 1.25rem; font-size: 0.68rem; font-weight: 500; padding: 0.45rem 0.85rem; gap: 0.3rem; white-space: nowrap; }
    .hero__banner-cta svg { width: 12px; height: 12px; }
    .hero__banner-stat-number { font-size: 1.7rem; }
    .hero__banner-stat-label { font-size: 0.7rem; }
    .hero__banner-stat-divider { display: none; }
    .hero__marquee-item { font-size: 0.7rem; }
}
@media (max-width: 479px) {
    .container { padding: 0 16px; }
    .hero__title { font-size: 1.5rem; }
    .hero__cta-text-wrap { font-size: 0.85rem; }
}

/* Linha azul gradiente na base do menu (igual à do topo) */
.header { border-bottom: none; }
.header::after {
    content: '';
    position: absolute;
    left: 20%; right: 20%; bottom: 0;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, #0021ff, #2b46ff, #2b6bff, #2b46ff, #0021ff);
    background-size: 200% 100%;
    animation: az-gradient-shift 5s linear infinite;
    z-index: 2;
    pointer-events: none;
}

/* Estrutura interna do menu: logo | nav centralizada | ações */
.header__inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; height: 72px; }
.header__logo { justify-self: start; }
.header__nav { justify-self: center; }
.header__actions { justify-self: end; display: flex; align-items: center; gap: 1rem; }
.header__cta--nav { display: none; }
@media (max-width: 768px) {
    .header__inner { display: flex; justify-content: space-between; }
    .header__cta--bar { display: none; }
    .header__cta--nav { display: inline-flex; }
}

/* Divisórias entre os links do menu (desktop) */
.header__nav a:not(.header__cta) + a:not(.header__cta)::before {
    content: '';
    position: absolute;
    left: -1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 14px;
    background: rgba(255,255,255,0.18);
}
@media (max-width: 768px) {
    .header__nav a:not(.header__cta) + a:not(.header__cta)::before { display: none; }
}

/* CTA numa linha abaixo da descrição do hero */
.hero__cta-line { color: #0021ff; font-size: 0.85rem; font-weight: 600; margin-top: -0.9rem; letter-spacing: 0.01em; }

/* Seção Sobre com fundo preto sólido */
.sobre { background: #000000; }

/* Reset: links/botões sem sublinhado padrão do navegador */
a { text-decoration: none; }

/* Offset das âncoras por causa do header fixo (evita esconder o topo da seção) */
html { scroll-padding-top: 84px; }

/* ===== Depoimentos: vídeos verticais + mural de provas (WhatsApp) ===== */
.dep-videos { display: flex; align-items: stretch; justify-content: center; gap: 34px; max-width: 1120px; margin: 0 auto; }
.dep-video-sep { flex: 0 0 1px; align-self: stretch; background: linear-gradient(180deg, transparent 0%, rgba(93,120,255,.35) 50%, transparent 100%); }
.dep-video-card { flex: 1 1 0; min-width: 0; }
.dep-head { display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px; align-items: end; margin-bottom: 52px; }
.dep-eyebrow { display: inline-block; font-size: .8125rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--color-accent); margin-bottom: 18px; }
.dep-title { font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 600; line-height: 1.15; letter-spacing: -.02em; color: #fff; margin: 0; max-width: 620px; }
.dep-head-lead { font-size: 1.0625rem; line-height: 1.7; color: rgba(255,255,255,.7); margin: 0; }
.dep-proof-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin: 0 0 28px; flex-wrap: wrap; }
.dep-proof-title { font-size: 1.35rem; font-weight: 600; color: #fff; margin: 0; }
.dep-proof-head .dep-proof-tag { margin: 0; }
.dep-br-mobile { display: none; }
@media (max-width: 860px) {
    .dep-head { grid-template-columns: 1fr; gap: 18px; margin-bottom: 40px; }
    .dep-proof-head { justify-content: flex-start; }
    .dep-br-mobile { display: inline; }
}
.dep-video-card { position: relative; aspect-ratio: 9 / 16; border-radius: 20px; overflow: hidden; background: #05060f; border: 1px solid rgba(255,255,255,.09); box-shadow: 0 24px 60px rgba(0,0,0,.42); cursor: pointer; }
.dep-video { width: 100%; height: 100%; object-fit: cover; display: block; }
.dep-video-btn { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 60px; height: 60px; border-radius: 50%; background: rgba(255,255,255,.16); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.45); color: #fff; cursor: pointer; z-index: 3; display: flex; align-items: center; justify-content: center; transition: transform .3s ease, background .3s ease, opacity .3s ease; }
.dep-video-btn svg { width: 24px; height: 24px; margin-left: 3px; }
.dep-video-card:hover .dep-video-btn { transform: translate(-50%,-50%) scale(1.08); background: rgba(0,33,255,.75); border-color: transparent; }
.dep-video-info { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 44px 18px 16px; background: linear-gradient(to top, rgba(0,0,0,.88), transparent); pointer-events: none; transition: opacity .3s ease; }
.dep-video-info h4 { margin: 0; font-size: 1.05rem; font-weight: 700; color: #fff; }
.dep-video-info p { margin: 3px 0 0; font-size: .8rem; color: rgba(255,255,255,.72); }
.dep-video-card.playing .dep-video-btn { opacity: 0; pointer-events: none; }
.dep-video-card.playing .dep-video-info { opacity: 0; }

.dep-proof { margin-top: 64px; }
.dep-proof-tag { display: flex; width: fit-content; margin: 0 auto 30px; align-items: center; gap: 8px; font-size: .85rem; font-weight: 600; color: #fff; background: rgba(37,211,102,.13); border: 1px solid rgba(37,211,102,.32); padding: 8px 16px; border-radius: 100px; }
.dep-proof-tag svg { width: 16px; height: 16px; color: #25d366; flex-shrink: 0; }
.dep-proof-marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.dep-proof-track { display: flex; width: max-content; animation: dep-scroll 65s linear infinite; }
.dep-proof-marquee:hover .dep-proof-track { animation-play-state: paused; }
.dep-proof-track img { height: 600px; width: auto; margin-right: 22px; flex-shrink: 0; display: block; border-radius: 16px; border: 1px solid rgba(255,255,255,.1); box-shadow: 0 16px 40px rgba(0,0,0,.35); background: #000; }
@keyframes dep-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

@media (max-width: 860px) {
    .dep-videos { display: flex; justify-content: flex-start; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; padding-bottom: 6px; margin-top: 32px; }
    .dep-videos::-webkit-scrollbar { display: none; }
    .dep-video-sep { display: none; }
    .dep-video-card { flex: 0 0 70%; scroll-snap-align: center; }
    .dep-proof-track img { height: 540px; }
    .dep-proof-track { animation-duration: 45s; }
}

/* Divisor de seção — minimalista (logo centralizado + linhas suaves, sem glow) */
.section-separator { display: flex; align-items: center; justify-content: center; gap: 22px; padding: 10px 24px; background-color: #000000; }
.section-separator__line { flex: 0 0 auto; width: min(200px, 26vw); height: 1px; overflow: hidden; background: linear-gradient(90deg, rgba(93,120,255,.4) 0%, transparent 100%); }
.section-separator__line:first-child { display: block; background: linear-gradient(90deg, transparent 0%, rgba(93,120,255,.4) 100%); }
.section-separator__glow { display: none; }
.section-separator__icon { width: auto; height: auto; border-radius: 0; background: none; border: none; animation: none; opacity: .85; flex-shrink: 0; }
.section-separator__icon img { width: 40px; height: auto; filter: none; }
@media (max-width: 600px) {
    .section-separator__line { width: min(120px, 24vw); }
    .section-separator__icon img { width: 32px; }
}

/* ===== MÉTODO — cards empilhados com efeito sticky ===== */
.metodo { background: #000000; padding: 120px 0; }
.metodo__head { max-width: 640px; margin: 0 auto 72px; text-align: center; }
.metodo__title { font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 600; line-height: 1.25; letter-spacing: -.01em; color: rgba(255,255,255,.5); margin: 0; }
.metodo__title-hl { color: #fff; }
.metodo__cards { display: flex; flex-direction: column; gap: 40px; max-width: 894px; margin: 0 auto; }
.metodo-card { position: sticky; top: 100px; border-radius: 18px; padding: 60px; display: flex; flex-direction: column; gap: 90px; border: 1px solid rgba(93,120,255,.18); box-shadow: 0 30px 60px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.06); -webkit-backdrop-filter: blur(22px) saturate(135%); backdrop-filter: blur(22px) saturate(135%); }
.metodo-card--1 { background: linear-gradient(150deg, rgba(0,33,255,.10) 0%, rgba(8,10,22,.6) 46%, rgba(2,3,10,.66) 100%); }
.metodo-card--2 { background: linear-gradient(150deg, rgba(0,33,255,.14) 0%, rgba(10,13,28,.6) 46%, rgba(3,4,12,.66) 100%); }
.metodo-card--3 { background: linear-gradient(150deg, rgba(0,33,255,.18) 0%, rgba(12,15,32,.6) 46%, rgba(4,5,14,.66) 100%); }
.metodo-card--4 { background: linear-gradient(150deg, rgba(0,33,255,.22) 0%, rgba(14,17,38,.6) 46%, rgba(5,6,16,.66) 100%); }
.metodo-dot { position: absolute; width: 14px; height: 14px; border-radius: 50%; background: rgba(93,120,255,.35); }
.metodo-dot--tl { top: 16px; left: 16px; }
.metodo-dot--tr { top: 16px; right: 16px; }
.metodo-dot--bl { bottom: 16px; left: 16px; }
.metodo-dot--br { bottom: 16px; right: 16px; }
.metodo-card__num { font-family: var(--font-family); font-size: 120px; line-height: 1; font-weight: 600; color: rgba(93,120,255,.22); }
.metodo-card__bottom { display: flex; flex-direction: column; gap: 16px; }
.metodo-card__divider { width: 100%; height: 1px; background: linear-gradient(90deg, #0021ff 0%, #5d78ff 55%, transparent 100%); }
.metodo-card__lead { font-size: .8125rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--color-accent); margin: 0; order: 1; }
.metodo-card__title { font-size: 1.75rem; font-weight: 600; line-height: 1.2; color: #fff; margin: 0; order: 2; }
.metodo-card__body { font-size: 1.05rem; line-height: 1.6; color: rgba(255,255,255,.68); margin: 6px 0 0; max-width: 640px; order: 3; }
.metodo__cta { max-width: 640px; margin: 80px auto 0; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.metodo__cta-title { font-size: 1.5rem; font-weight: 600; color: #fff; margin: 0; }
.metodo__cta-text { font-size: 1.05rem; line-height: 1.6; color: rgba(255,255,255,.65); margin: 0; max-width: 520px; }
.metodo__cta .btn--primary { margin-top: 8px; }
@media (max-width: 991px) {
    .metodo-card { gap: 64px; padding: 52px; }
    .metodo-card__num { font-size: 100px; }
}
@media (max-width: 767px) {
    .metodo { padding: 100px 0; }
}
@media (max-width: 479px) {
    .metodo-card { top: 80px; padding: 40px 28px; gap: 40px; }
    .metodo__cards { gap: 28px; }
    .metodo-card__num { font-size: 84px; }
    .metodo-card__title { font-size: 1.5rem; }
    .metodo-card__body { font-size: 1rem; }
    .metodo__head { margin-bottom: 48px; }
    .metodo__cta { margin-top: 56px; }
}

/* ===== CTA de contato (sem formulário, foco WhatsApp) ===== */
.cta-box { max-width: 820px; margin: 0 auto; text-align: center; display: flex; flex-direction: column; align-items: center; padding: 72px 56px; border-radius: 28px; background: linear-gradient(160deg, rgba(0,33,255,.14) 0%, rgba(8,10,22,.5) 45%, rgba(2,3,10,.55) 100%); -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px); border: 1px solid rgba(93,120,255,.2); box-shadow: 0 40px 90px rgba(0,0,0,.5); }
.cta-eyebrow { font-size: .8125rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--color-accent); margin-bottom: 18px; }
.cta-title { font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 700; line-height: 1.15; letter-spacing: -.02em; color: #fff; margin: 0; max-width: 620px; }
.cta-title-hl { background: var(--gradient-accent); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.cta-desc { font-size: 1.0625rem; line-height: 1.65; color: rgba(255,255,255,.68); margin: 20px 0 0; max-width: 600px; }
.cta-actions { display: flex; flex-direction: column; align-items: center; gap: 16px; margin-top: 36px; }
.cta-wa { display: inline-flex; align-items: center; gap: 12px; background: #25d366; color: #fff; font-weight: 600; font-size: 1.05rem; padding: 16px 34px; border-radius: 100px; box-shadow: 0 12px 30px rgba(37,211,102,.4); transition: transform .3s ease, box-shadow .3s ease, background .3s ease; }
.cta-wa svg { width: 22px; height: 22px; }
.cta-wa:hover { transform: translateY(-2px); background: #1fbe5b; box-shadow: 0 16px 40px rgba(37,211,102,.55); }
.cta-email { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,.6); font-size: .95rem; transition: color .3s ease; }
.cta-email svg { width: 18px; height: 18px; }
.cta-email:hover { color: #fff; }
.cta-trust { list-style: none; padding: 0; margin: 36px 0 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 28px; }
.cta-trust li { position: relative; padding-left: 24px; font-size: .9rem; color: rgba(255,255,255,.6); }
.cta-trust li::before { content: '\2713'; position: absolute; left: 0; color: var(--color-accent); font-weight: 700; }
@media (max-width: 600px) {
    .cta-box { padding: 48px 24px; border-radius: 22px; }
    .cta-trust { flex-direction: column; align-items: center; gap: 10px; }
    .cta-wa { width: 100%; justify-content: center; font-size: 1rem; padding: 15px 22px; }
}

/* ===== CTA simples: heading animado palavra-a-palavra + barra de contatos ===== */
.cta2-top { border-top: 1px solid rgba(255,255,255,.18); padding-top: 56px; }
.cta2-head { display: flex; flex-wrap: wrap; gap: 0 0.32em; max-width: 1000px; margin: 0 0 42px; font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 600; line-height: 1.04; letter-spacing: -0.03em; color: #fff; opacity: 1; transform: none; filter: none; }
.cta2-word { display: inline-block; overflow: hidden; vertical-align: top; padding: 0.06em 0 0.16em; margin: -0.06em 0 -0.16em; }
.cta2-word > span { display: inline-block; transform: translateY(115%); opacity: 0; transition: transform .8s cubic-bezier(.16,1,.3,1), opacity .8s ease; }
.cta2-head.active .cta2-word > span { transform: translateY(0); opacity: 1; }
.cta2-head .cta2-word:nth-child(1) > span { transition-delay: 0s; }
.cta2-head .cta2-word:nth-child(2) > span { transition-delay: .06s; }
.cta2-head .cta2-word:nth-child(3) > span { transition-delay: .12s; }
.cta2-head .cta2-word:nth-child(4) > span { transition-delay: .18s; }
.cta2-head .cta2-word:nth-child(5) > span { transition-delay: .24s; }
.cta2-head .cta2-word:nth-child(6) > span { transition-delay: .30s; }
.cta2-head .cta2-word:nth-child(7) > span { transition-delay: .36s; }
.cta2-head .cta2-word:nth-child(8) > span { transition-delay: .42s; }
.cta2-body { max-width: 720px; font-size: clamp(1.05rem, 1.8vw, 1.4rem); line-height: 1.4; letter-spacing: -0.01em; color: rgba(255,255,255,.72); margin: 0; }
.cta2-details { border-top: 1px solid rgba(255,255,255,.18); border-bottom: 1px solid rgba(255,255,255,.18); margin-top: 64px; padding: 46px 0; }
.cta2-rows { display: flex; flex-direction: column; gap: 4px; }
.cta2-row { display: flex; align-items: center; gap: 14px; width: fit-content; font-family: var(--font-family); font-size: .9rem; text-transform: uppercase; letter-spacing: .02em; color: #fff; padding: 7px 0; transition: color .25s ease; }
.cta2-row-label { color: var(--color-accent); flex-shrink: 0; }
a.cta2-row:hover .cta2-row-value { color: var(--color-accent); }
@media (max-width: 991px) { .cta2-row { font-size: .8rem; } }
@media (max-width: 767px) { .cta2-head { gap: 0 0.2em; } .cta2-details { margin-top: 48px; padding: 32px 0; } .cta2-body { font-size: 1.1rem; } }
