/* ========== RESET & BASE ========== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Ecolav Brand */
    --purple: #6B21A8;
    --purple-dark: #581C87;
    --purple-light: #A855F7;
    --teal: #5EEAD4;
    --teal-dark: #14B8A6;
    --teal-light: #99F6E4;

    /* Neutrals */
    --white: #FFFFFF;
    --gray-50: #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E1;
    --gray-400: #94A3B8;
    --gray-500: #64748B;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1E293B;
    --gray-900: #0F172A;

    /* Functional */
    --success: #22C55E;
    --gradient-brand: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
    --gradient-teal: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 100%);

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
    --shadow-glow: 0 0 40px rgba(107, 33, 168, 0.2);

    /* Radii */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--gray-800);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul { list-style: none; }

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 28px;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::after {
    width: 300px;
    height: 300px;
}

.btn--primary {
    background: var(--gradient-brand);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(107, 33, 168, 0.35);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(107, 33, 168, 0.45);
}

.btn--lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn--cta-nav {
    background: var(--gradient-brand);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: var(--radius-md);
    font-size: 0.88rem;
    box-shadow: 0 4px 20px rgba(107, 33, 168, 0.3);
}

.btn--cta-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(107, 33, 168, 0.4);
}

.btn--submit {
    width: 100%;
    background: var(--gradient-brand);
    color: var(--white);
    padding: 16px 36px;
    font-size: 1.05rem;
    box-shadow: 0 4px 20px rgba(107, 33, 168, 0.35);
}

.btn--submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(107, 33, 168, 0.45);
}

/* ========== HEADER ========== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all var(--transition-smooth);
}

.header--scrolled {
    box-shadow: var(--shadow-md);
}

.header--scrolled .header__top-bar {
    transform: translateY(-100%);
    height: 0;
    overflow: hidden;
    padding: 0;
}

.header__top-bar {
    background: var(--gray-900);
    color: var(--gray-300);
    font-size: 0.8rem;
    padding: 8px 0;
    transition: all var(--transition-smooth);
}

.header__top-bar-inner {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.header__nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.header__nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.header__logo {
    display: flex;
    align-items: baseline;
    gap: 2px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo-eco {
    color: var(--teal-dark);
}

.logo-lav {
    color: var(--purple);
}

.logo-sub {
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-left: 6px;
}

.header__menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header__menu a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-700);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.header__menu a:hover {
    color: var(--purple);
    background: rgba(107, 33, 168, 0.06);
}

.header__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.header__hamburger span {
    width: 24px;
    height: 2.5px;
    background: var(--gray-800);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

/* ========== HERO ========== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    max-height: 900px;
    overflow: hidden;
}

.hero__carousel {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero__slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
}

.hero__slide.active {
    opacity: 1;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(88, 28, 135, 0.6) 50%, rgba(15, 23, 42, 0.7) 100%);
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 640px;
    padding-top: 80px;
}

.hero__badge {
    display: inline-block;
    background: rgba(94, 234, 212, 0.2);
    border: 1px solid rgba(94, 234, 212, 0.4);
    color: var(--teal-light);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.hero__content h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 3.4rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero__content p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 500px;
}

.hero__controls {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 16px;
}

.hero__arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.25);
    background: transparent;
    color: rgba(255,255,255,0.8);
    font-size: 0.8rem;
    font-weight: 300;
    cursor: pointer;
    transition: all var(--transition-fast);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__arrow:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.6);
    color: var(--white);
    transform: scale(1.1);
}

.hero__dots {
    display: flex;
    gap: 10px;
}

.hero__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.5);
    background: transparent;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.hero__dot.active {
    background: var(--teal);
    border-color: var(--teal);
    transform: scale(1.2);
}

/* ========== STATS ========== */
.stats {
    background: var(--gradient-brand);
    padding: 40px 0;
    position: relative;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-teal);
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.stats__number {
    font-family: 'Outfit', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--white);
    display: block;
}

.stats__number::after {
    content: '+';
    font-size: 1.8rem;
}

.stats__label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.75);
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* ========== SECTIONS COMMON ========== */
.section__badge {
    display: inline-block;
    background: rgba(107, 33, 168, 0.08);
    color: var(--purple);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: 100px;
    margin-bottom: 16px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.section__badge--light {
    background: rgba(255,255,255,0.15);
    color: var(--teal-light);
}

.section__title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1.15;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.section__title--light {
    color: var(--white);
}

.section__subtitle {
    font-size: 1.1rem;
    color: var(--gray-500);
    max-width: 550px;
    margin: 0 auto 48px;
}

.section__subtitle--light {
    color: rgba(255,255,255,0.75);
}

/* ========== SERVIÇOS V2 (Premium Cards) ========== */
.servicos-v2 {
    padding: 100px 0;
    background: var(--gray-50);
}

.servicos-v2__header {
    text-align: center;
    margin-bottom: 60px;
}

.servicos-v2__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.sv2-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 40px -15px rgba(0,0,0,0.06);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.sv2-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px -15px rgba(107, 33, 168, 0.15);
}

.sv2-card__image {
    height: 260px;
    overflow: hidden;
    position: relative;
}

.sv2-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.2);
    transition: transform 0.7s ease;
}

.sv2-card:hover .sv2-card__image img {
    transform: scale(1.1);
    filter: grayscale(0);
}

.sv2-card__image-overlay {
    position: absolute;
    inset: 0;
    background: rgba(88, 28, 135, 0.12);
    transition: background 0.5s;
}

.sv2-card:hover .sv2-card__image-overlay {
    background: transparent;
}

.sv2-card__body {
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.sv2-card__body h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--purple);
    margin-bottom: 14px;
}

.sv2-card__body p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 24px;
    flex-grow: 1;
}

.sv2-card__cta {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px 0;
    border: 1px solid var(--purple);
    color: var(--purple);
    font-family: 'Outfit', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.sv2-card__cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: 0.5s;
}

.sv2-card__cta:hover {
    background: var(--purple);
    color: var(--white);
}

.sv2-card__cta:hover::before {
    left: 100%;
}

/* ========== JOURNEY TIMELINE (Vantagens V2) ========== */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 48;
}

.journey {
    padding: 100px 0;
    background: #080c14;
    overflow: hidden;
    position: relative;
}

.journey__header {
    text-align: center;
    margin-bottom: 80px;
}

.journey__badge {
    display: inline-block;
    background: linear-gradient(90deg, rgba(107,33,168,0.15), rgba(94,234,212,0.15));
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--teal);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.journey__title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.journey__subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.5);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.journey__timeline {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

.journey__line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    transform: translateX(-50%);
    background: linear-gradient(to bottom, transparent, rgba(107,33,168,0.4) 15%, rgba(94,234,212,0.4) 85%, transparent);
}

/* Step row */
.journey__step {
    display: flex;
    align-items: center;
    margin-bottom: 48px;
    position: relative;
}

.journey__step--left {
    flex-direction: row;
}

.journey__step--right {
    flex-direction: row;
}

.journey__card-wrap {
    flex: 1;
}

.journey__number {
    flex: 1;
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(255,255,255,0.03);
    user-select: none;
}

.journey__step--left .journey__card-wrap { text-align: right; padding-right: 48px; }
.journey__step--left .journey__number { padding-left: 48px; }
.journey__step--right .journey__number { text-align: right; padding-right: 48px; }
.journey__step--right .journey__card-wrap { padding-left: 48px; }

/* Card */
.journey__card {
    display: inline-block;
    text-align: left;
    background: rgba(255,255,255,0.02);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 420px;
}

.journey__step:hover .journey__card {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.15);
}

.journey__step--left .journey__card {
    margin-left: auto;
}

.journey__card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.journey__card p {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
}

/* Marker */
.journey__marker {
    position: relative;
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #0f1629;
    border: 2px solid var(--marker-color, rgba(168,85,247,0.5));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px var(--marker-glow, rgba(168,85,247,0.2));
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.journey__step:hover .journey__marker {
    transform: scale(1.1);
    border-color: rgba(255,255,255,0.4);
}

.journey__marker .material-symbols-outlined {
    font-size: 1.8rem;
}

.journey__label {
    position: absolute;
    top: -28px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    white-space: nowrap;
}

.journey__label--bottom {
    top: auto;
    bottom: -28px;
}

/* ========== SETORES HERO ========== */
.setores-hero {
    padding: 100px 0 60px;
    background: #080c14;
    text-align: center;
}

.setores-hero__inner {
    max-width: 700px;
    margin: 0 auto;
}

.setores-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--purple);
    border: 1px solid rgba(107, 33, 168, 0.3);
    border-radius: 100px;
    background: rgba(107, 33, 168, 0.05);
    margin-bottom: 28px;
}

.setores-hero__pulse {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--purple);
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.setores-hero__title {
    font-family: 'Outfit', sans-serif;
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -2px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.setores-hero__accent {
    background: linear-gradient(135deg, var(--purple), var(--teal));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.setores-hero__subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
    font-weight: 300;
}

/* ========== EDITORIAL BLOCKS (Setores V2) ========== */
.editorial-block {
    position: relative;
    height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.editorial-block__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1) brightness(0.45) contrast(1.1);
    z-index: 0;
}

.editorial-block__watermark {
    position: absolute;
    right: -5%;
    bottom: -10%;
    font-size: 28rem !important;
    opacity: 0.04;
    z-index: 1;
    user-select: none;
    pointer-events: none;
    filter: grayscale(1);
    color: white;
}

.editorial-block__inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    width: 100%;
}

.editorial-block__inner--right {
    justify-content: flex-end;
}

.editorial-block__card {
    max-width: 580px;
    padding: 48px 56px;
    background: rgba(5, 5, 16, 0.45);
    backdrop-filter: blur(20px) saturate(1.5);
    -webkit-backdrop-filter: blur(20px) saturate(1.5);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 32px;
    box-shadow: 0 20px 80px rgba(0,0,0,0.4);
}

.editorial-block__tag {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--tag-color, var(--purple));
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.editorial-block__tag-line {
    display: block;
    width: 48px;
    height: 1px;
    background: var(--tag-color, var(--purple));
}

.editorial-block__card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.editorial-block__card p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 32px;
}

.editorial-block__link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s;
}

.editorial-block__link .material-symbols-outlined {
    font-size: 1.1rem;
    transition: transform 0.3s;
}

.editorial-block__link:hover .material-symbols-outlined {
    transform: translateX(6px);
}

/* ==========/* ========== SOBRE NÓS (Premium Layout) ========== */
.sobre {
    padding: 120px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.sobre__bg-shape {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(94, 234, 212, 0.08) 0%, rgba(255,255,255,0) 70%);
    top: -100px;
    right: -200px;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.sobre__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Coluna Imagem */
.sobre__image-col {
    position: relative;
}

.sobre__image-wrapper {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.sobre__main-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
    transition: transform 0.7s;
}

.sobre__image-wrapper:hover .sobre__main-img {
    transform: scale(1.03);
}

/* Card flutuante glassmorphism */
.sobre__floating-card {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 24px 32px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(107, 33, 168, 0.1);
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 2;
}

.sobre__floating-card .star-icon {
    font-size: 2.5rem;
    color: var(--purple);
    background: rgba(107, 33, 168, 0.1);
    padding: 12px;
    border-radius: 16px;
}

.sobre__floating-card strong {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1;
    margin-bottom: 4px;
}

.sobre__floating-card span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Coluna Texto */
.sobre__text-col .section__badge {
    margin-bottom: 20px;
}

.sobre__text-col .section__title {
    margin-bottom: 24px;
}

.highlight-teal {
    color: var(--teal);
    position: relative;
    display: inline-block;
}

.highlight-teal::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    right: 0;
    height: 8px;
    background: rgba(94, 234, 212, 0.2);
    z-index: -1;
}

.sobre__lead {
    font-size: 1.15rem;
    color: var(--gray-800);
    line-height: 1.6;
    margin-bottom: 20px;
}

.sobre__desc {
    font-size: 0.95rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 32px;
}

.sobre__list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sobre__list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--gray-700);
    font-weight: 500;
}

.sobre__list .check {
    color: var(--teal);
    font-size: 1.4rem;
    flex-shrink: 0;
}

.btn--glow {
    box-shadow: 0 10px 30px rgba(107, 33, 168, 0.3);
}

.btn--glow:hover {
    box-shadow: 0 15px 40px rgba(107, 33, 168, 0.4);
    transform: translateY(-2px);
}

/* ========== CONTATO / FORM ========== */
.contato {
    padding: 100px 0;
    background: var(--gray-900);
    position: relative;
    overflow: hidden;
}

.contato::before {
    content: '';
    position: absolute;
    top: -40%;
    left: -20%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(107, 33, 168, 0.12), transparent 70%);
    border-radius: 50%;
}

.contato__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.contato__details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
}

.contato__detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contato__detail-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.contato__detail strong {
    color: var(--white);
    font-size: 0.95rem;
    display: block;
    margin-bottom: 4px;
}

.contato__detail p {
    color: rgba(255,255,255,0.6);
    font-size: 0.88rem;
    line-height: 1.5;
}

.contato__form-wrapper {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-xl);
    padding: 40px;
    backdrop-filter: blur(12px);
}

.contato__form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-sm);
    padding: 13px 16px;
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    transition: all var(--transition-fast);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.35);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.form-group select option {
    background: var(--gray-800);
    color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--teal);
    background: rgba(255,255,255,0.12);
    box-shadow: 0 0 0 3px rgba(94, 234, 212, 0.15);
}

.form-privacy {
    text-align: center;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.4);
    margin-top: 4px;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--gray-800);
    padding: 60px 0 0;
}

.footer__inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__brand p {
    color: rgba(255,255,255,0.5);
    font-size: 0.88rem;
    line-height: 1.6;
    margin-top: 16px;
    max-width: 300px;
}

.footer__links h4,
.footer__contact h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

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

.footer__links a {
    color: rgba(255,255,255,0.5);
    font-size: 0.88rem;
    transition: color var(--transition-fast);
}

.footer__links a:hover {
    color: var(--teal);
}

.footer__contact p {
    color: rgba(255,255,255,0.5);
    font-size: 0.88rem;
    margin-bottom: 8px;
}

.footer__bottom {
    padding: 20px 0;
}

.footer__bottom p {
    text-align: center;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.3);
}

/* ========== WHATSAPP FAB ========== */
.whatsapp-fab {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all var(--transition-fast);
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-fab:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

@keyframes pulse-whatsapp {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 12px rgba(37, 211, 102, 0.1); }
}

/* ========== ANIMATIONS (scroll reveal) ========== */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .servicos-v2__grid { grid-template-columns: repeat(2, 1fr); }
    .journey__line { display: none; }
    .journey__step { flex-direction: column !important; text-align: center; }
    .journey__step--left .journey__card-wrap,
    .journey__step--right .journey__card-wrap { padding: 24px 0 0; text-align: center; }
    .journey__step--left .journey__number,
    .journey__step--right .journey__number { display: none; }
    .journey__number { display: none; }
    .journey__card { max-width: 100%; margin: 0 auto; }
    .journey__title { font-size: 2.2rem; }
    .editorial-block { height: 500px; }
    .editorial-block__card h3 { font-size: 2rem; }
    .editorial-block__card { padding: 36px 40px; }
    .setores-hero__title { font-size: 2.4rem; }
    .sobre__grid { grid-template-columns: 1fr; gap: 40px; }
    .sobre__bg-shape { display: none; }
    .sobre__floating-card { position: relative; bottom: 0; right: 0; margin-top: -30px; border-radius: 0 0 32px 32px; flex-direction: column; text-align: center; }
    .contato__grid { grid-template-columns: 1fr; gap: 40px; }
    .footer__inner { grid-template-columns: 1fr; gap: 32px; }
    .hero__content h1 { font-size: 2.8rem; }
    .section__title { font-size: 2.2rem; }
}

@media (max-width: 768px) {
    .header__menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 16px;
        z-index: 999;
    }

    .header__menu.open {
        display: flex;
    }

    .header__menu a {
        font-size: 1.2rem;
        padding: 12px 32px;
    }

    .header__hamburger {
        display: flex;
        z-index: 1001;
    }

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

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

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

    .hero { min-height: 500px; max-height: 700px; }
    .hero__content h1 { font-size: 2rem; }
    .hero__content p { font-size: 1rem; }

    .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .stats__number { font-size: 2.2rem; }

    .servicos-v2__grid { grid-template-columns: 1fr; }
    .editorial-block { height: 450px; }
    .editorial-block__inner--right { justify-content: flex-start; }
    .editorial-block__card { max-width: 100%; padding: 28px 24px; border-radius: 20px; }
    .editorial-block__card h3 { font-size: 1.6rem; }
    .editorial-block__card p { font-size: 0.92rem; }
    .editorial-block__watermark { font-size: 16rem !important; }
    .setores-hero__title { font-size: 2rem; }

    .section__title { font-size: 1.8rem; }

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

    .contato__form-wrapper { padding: 28px 20px; }

    .header__top-bar-inner { font-size: 0.72rem; gap: 16px; }
}

@media (max-width: 480px) {
    .hero__content h1 { font-size: 1.7rem; }
    .hero__content { padding-top: 60px; }
    .btn--lg { padding: 14px 28px; font-size: 0.95rem; }
    .section__title { font-size: 1.6rem; }
    .stats__grid { grid-template-columns: 1fr 1fr; }
}
