/* ========================================
   GRUPO ELABORE - STYLE.CSS
   Light Mode Premium | Paleta: Branco · Preto · Roxo
   ======================================== */

/* CSS Variables - Paleta Light Mode Elabore */
:root {
    /* Roxo - Cor de Destaque */
    --purple-primary: #7130E6;
    --purple-light: #9B6AF0;
    --purple-dark: #5A1EB8;
    --purple-glow: rgba(113, 48, 230, 0.12);

    /* Fundos */
    --bg-base: #EFEFEF;
    --bg-card: #FFFFFF;
    --bg-alt: #F5F5F5;
    --bg-dark: #1B1B1B;
    --bg-dark-pure: #000000;

    /* Textos */
    --text-primary: #1B1B1B;
    --text-secondary: #4D4C4C;
    --text-tertiary: #727272;
    --text-muted: #989595;
    --text-inverse: #FFFFFF;

    /* Bordas */
    --border-light: #E8E8E8;
    --border-medium: #D9D9D9;
    --border-dark: #272727;

    /* Tipografia */
    --font-family: 'Archivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Espaçamento */
    --section-padding: 140px;
    --container-max: 1200px;
    --container-padding: 24px;

    /* Transições */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.6s cubic-bezier(0.16, 1, 0.3, 1);

    /* Bordas */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-base);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

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

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ========================================
   NAVIGATION
   ======================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-base);
    transform: translateY(0) !important;
}

.navbar.scrolled {
    background: rgba(239, 239, 239, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(113, 48, 230, 0.08);
    padding: 16px 0;
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0px;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: -0.02em;
    transition: var(--transition-fast);
}

.logo-img {
    width: 52px;
    height: 52px;
    object-fit: contain;
    transition: var(--transition-base);
}

.nav-logo:hover .logo-img {
    transform: rotate(8deg) scale(1.05);
}

.logo-text {
    position: relative;
}

.logo-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--purple-primary);
    transition: var(--transition-base);
}

.nav-logo:hover .logo-text::after {
    width: 100%;
}

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

.nav-link {
    padding: 10px 18px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-tertiary);
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
    position: relative;
}

.nav-link:hover {
    color: var(--text-primary);
    background: rgba(0, 0, 0, 0.04);
}

.nav-link.active {
    color: var(--purple-primary);
    background: rgba(113, 48, 230, 0.08);
    font-weight: 600;
}

.nav-cta {
    background: var(--purple-primary);
    color: var(--text-inverse) !important;
    font-weight: 600;
    margin-left: 8px;
}

.nav-cta:hover {
    background: var(--purple-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(113, 48, 230, 0.3);
}

.nav-cta.active {
    background: var(--purple-dark);
    color: var(--text-inverse) !important;
}

/* Mobile Menu Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition-base);
    transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

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

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 0 80px;
    background: var(--bg-base);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 60% at 50% 120%, rgba(113, 48, 230, 0.10) 0%, transparent 70%),
        radial-gradient(ellipse 50% 40% at 80% 20%, rgba(113, 48, 230, 0.05) 0%, transparent 60%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(113, 48, 230, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(113, 48, 230, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 40%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 40%, transparent 80%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero-text {
    text-align: left;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--text-primary);
    margin-bottom: 28px;
}

/* Desktop: 2 line groups, inline words */
.hero-line-group {
    display: block;
}

.hero-title .line {
    display: inline;
    margin-right: 0.3em;
}

.hero-title .line:last-child {
    margin-right: 0;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 540px;
    line-height: 1.7;
    font-weight: 400;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 0;
}

/* Hero Visual / Image */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-wrap {
    position: relative;
    width: 100%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(113, 48, 230, 0.15), 0 8px 24px rgba(0, 0, 0, 0.08);
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-xl);
    transition: var(--transition-slow);
}

.hero-image-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle at 50% 50%, rgba(113, 48, 230, 0.2) 0%, transparent 70%);
    z-index: -1;
    filter: blur(40px);
    opacity: 0.6;
}

.hero-visual:hover .hero-image {
    transform: scale(1.02);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: var(--font-family);
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--purple-primary);
    color: var(--text-inverse);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--purple-light), var(--purple-primary));
    opacity: 0;
    transition: var(--transition-base);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(113, 48, 230, 0.3);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary span,
.btn-primary svg {
    position: relative;
    z-index: 1;
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
    border: 1.5px solid var(--border-light);
}

.btn-ghost:hover {
    border-color: var(--purple-primary);
    color: var(--purple-primary);
    background: rgba(113, 48, 230, 0.04);
}

.btn-ghost-light {
    color: rgba(255, 255, 255, 0.85);
    border-color: rgba(255, 255, 255, 0.25);
}

.btn-ghost-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--text-inverse);
}

.btn-large {
    padding: 18px 36px;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Hero Stats */
.hero-stats {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 48px;
    padding-top: 48px;
    border-top: 1px solid var(--border-light);
}

.stat {
    text-align: left;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.stat-suffix {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--purple-primary);
}

.stat-label {
    display: block;
    font-size: 0.8125rem;
    color: var(--text-tertiary);
    margin-top: 8px;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-medium);
}

/* ========================================
   LEAD FORM SECTION
   ======================================== */

.lead-form {
    padding: 48px 0;
    background: var(--bg-base);
    position: relative;
    z-index: 2;
}

.lead-form-header {
    text-align: center;
    margin-bottom: 40px;
}

.lead-form-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.lead-form-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.lead-form-wrapper {
    max-width: 520px;
    margin: 0 auto;
    border-radius: 24px;
    padding: 0;
}

.lead-form-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-field {
    position: relative;
}

.form-field--full {
    width: 100%;
}

.form-field input,
.form-field select {
    width: 100%;
    padding: 18px 18px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    font-family: var(--font-family);
    font-size: 1rem;
    color: var(--text-primary);
    outline: none;
    transition: var(--transition-fast);
    appearance: none;
    -webkit-appearance: none;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.form-field input::placeholder {
    color: var(--text-muted);
}

.form-field input:focus,
.form-field select:focus {
    border-color: var(--purple-primary);
    box-shadow: 0 0 0 3px rgba(113, 48, 230, 0.1);
}

.form-field select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23989595' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
    color: var(--text-muted);
}

.form-field select:valid {
    color: var(--text-primary);
}

.form-field select option {
    color: var(--text-primary);
    background: var(--bg-card);
}

.form-field--phone {
    display: flex;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 0 18px;
    transition: var(--transition-fast);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.form-field--phone:focus-within {
    border-color: var(--purple-primary);
    box-shadow: 0 0 0 3px rgba(113, 48, 230, 0.1);
}

.phone-flag {
    font-size: 1.25rem;
    margin-right: 10px;
    line-height: 1;
    user-select: none;
}

.form-field--phone input {
    border: none;
    background: transparent;
    padding: 18px 0;
    box-shadow: none;
    flex: 1;
}

.form-field--phone input:focus {
    box-shadow: none;
}

.btn-lead {
    width: 100%;
    padding: 20px 28px;
    background: #16a34a;
    color: #FFFFFF;
    font-family: var(--font-family);
    font-size: 1.0625rem;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    letter-spacing: -0.01em;
    box-shadow: 0 2px 8px rgba(22, 163, 74, 0.15);
}

.btn-lead:hover {
    background: #15803d;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(22, 163, 74, 0.3);
}

.btn-lead:active {
    transform: translateY(0);
}

/* ========================================
   SECTIONS COMMON
   ======================================== */

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--purple-primary);
}

.eyebrow-line {
    display: block;
    width: 32px;
    height: 1px;
    background: var(--purple-primary);
}

.section-title {
    font-size: clamp(1.875rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.section-title .highlight {
    color: var(--purple-primary);
}

.section-body {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.section-header {
    margin-bottom: 64px;
}

.section-header.center {
    text-align: center;
}

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

.about {
    padding: var(--section-padding) 0;
    background: var(--bg-base);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-light), transparent);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 60px;
    align-items: start;
}

.about-text {
    position: static;
}

.about-title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    line-height: 1.25;
    margin-bottom: 32px;
}

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

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

.pillar-card {
    background: linear-gradient(135deg, rgba(113, 48, 230, 0.04), rgba(255, 255, 255, 0.9));
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--purple-primary);
    transform: scaleY(0);
    transition: var(--transition-base);
}

.pillar-card:hover {
    border-color: rgba(113, 48, 230, 0.2);
    transform: translateX(8px);
    background: linear-gradient(135deg, rgba(113, 48, 230, 0.06), rgba(255, 255, 255, 1));
    box-shadow: 0 8px 32px rgba(113, 48, 230, 0.08);
}

.pillar-card:hover::before {
    transform: scaleY(1);
}

.pillar-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(113, 48, 230, 0.08);
    border-radius: var(--radius-md);
    color: var(--purple-primary);
    margin-bottom: 16px;
}

.pillar-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.pillar-card p {
    font-size: 0.9375rem;
    color: var(--text-tertiary);
    line-height: 1.6;
}

/* ========================================
   SERVICES SECTION
   ======================================== */

.services {
    padding: var(--section-padding) 0;
    background: var(--bg-alt);
    position: relative;
}

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

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--purple-primary), transparent);
    opacity: 0;
    transition: var(--transition-base);
}

.service-card:hover {
    border-color: rgba(113, 48, 230, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.service-card:hover::after {
    opacity: 1;
}

.service-number {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--purple-primary);
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    opacity: 0.7;
}

.service-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(113, 48, 230, 0.06);
    border-radius: var(--radius-sm);
    color: var(--purple-primary);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.3;
}

.service-card > p {
    font-size: 0.9375rem;
    color: var(--text-tertiary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-list li {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
    position: relative;
    padding-left: 20px;
}

.service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 8px;
    height: 8px;
    background: var(--purple-primary);
    border-radius: 50%;
    opacity: 0.8;
}

/* ========================================
   METHODOLOGY SECTION
   ======================================== */

.methodology {
    padding: var(--section-padding) 0;
    background: var(--bg-base);
    position: relative;
}

.methodology-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, var(--border-light), var(--purple-primary), var(--border-light));
    transform: translateX(-50%);
}

.timeline-steps {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.timeline-step {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    position: relative;
}

.timeline-step:nth-child(odd) {
    flex-direction: row;
    padding-right: calc(50% + 40px);
    text-align: right;
}

.timeline-step:nth-child(even) {
    flex-direction: row-reverse;
    padding-left: calc(50% + 40px);
    text-align: left;
}

.step-number {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 2px solid var(--purple-primary);
    border-radius: 50%;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--purple-primary);
    z-index: 2;
    box-shadow: 0 0 20px rgba(113, 48, 230, 0.1);
}

.step-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.step-content p {
    font-size: 0.9375rem;
    color: var(--text-tertiary);
    line-height: 1.6;
}

/* ========================================
   DIFFERENTIATORS SECTION
   ======================================== */

.differentiators {
    padding: var(--section-padding) 0;
    background: var(--bg-alt);
}

.diff-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.diff-left {
    position: sticky;
    top: 120px;
}

.diff-right {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.diff-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px;
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
    border: 1px solid transparent;
    background: var(--bg-card);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
}

.diff-item:hover {
    background: rgba(113, 48, 230, 0.03);
    border-color: rgba(113, 48, 230, 0.12);
    box-shadow: 0 8px 32px rgba(113, 48, 230, 0.06);
}

.diff-check {
    width: 36px;
    height: 36px;
    min-width: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(113, 48, 230, 0.1);
    border-radius: 50%;
    color: var(--purple-primary);
    margin-top: 2px;
}

.diff-text h4 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.diff-text p {
    font-size: 0.9375rem;
    color: var(--text-tertiary);
    line-height: 1.6;
}

/* ========================================
   RESULTS / TESTIMONIALS
   ======================================== */

.results {
    padding: var(--section-padding) 0;
    background: var(--bg-base);
    position: relative;
}

.results::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-light), transparent);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(245,245,245,0.95));
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: var(--transition-base);
    position: relative;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
}

.testimonial-card:hover {
    border-color: rgba(113, 48, 230, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

.testimonial-quote {
    color: var(--purple-primary);
    opacity: 0.3;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 28px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    border: 2px solid rgba(113, 48, 230, 0.15);
}

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

.author-name {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-primary);
}

.author-role {
    font-size: 0.8125rem;
    color: var(--text-tertiary);
}

/* ========================================
   CLIENTS SECTION - CAROUSEL
   ======================================== */

.clients {
    padding: var(--section-padding) 0;
    background: var(--bg-alt);
    position: relative;
}

/* Carousel Container */
.clients-carousel {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}

.carousel-viewport {
    overflow: hidden;
    border-radius: var(--radius-lg);
    padding: 8px 0;
}

.carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

/* Client Cards - Fundo Roxo Escuro */
.client-card {
    background: #1a0a2e;
    border: 1px solid rgba(113, 48, 230, 0.25);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
    min-width: 220px;
    flex: 0 0 calc(25% - 15px);
    transition: var(--transition-base);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
}

.client-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--purple-primary), transparent);
    opacity: 0;
    transition: var(--transition-base);
}

.client-card:hover {
    border-color: var(--purple-primary);
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(113, 48, 230, 0.25);
}

.client-card:hover::before {
    opacity: 1;
}

.client-logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.client-logo-wrap img {
    max-width: 100%;
    max-height: 110px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(0.85) opacity(0.95);
    transition: var(--transition-base);
}

.client-card:hover .client-logo-wrap img {
    filter: brightness(1.15) opacity(1);
}

/* Logo Daniela Vianello - destaque ampliado */
.logo-daniela img {
    transform: scale(2.4);
    filter: brightness(0.95) opacity(1);
    max-height: 160px;
}

.client-card:hover .logo-daniela img {
    transform: scale(2.6);
    filter: brightness(1.25) opacity(1);
}

/* Carousel Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 50%;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-base);
    z-index: 10;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.carousel-btn:hover {
    background: var(--purple-primary);
    border-color: var(--purple-primary);
    color: var(--text-inverse);
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 8px 24px rgba(113, 48, 230, 0.3);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.96);
}

.carousel-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    background: var(--bg-card);
    border-color: var(--border-light);
    color: var(--text-muted);
    transform: translateY(-50%);
    box-shadow: none;
}

.carousel-prev {
    left: -24px;
}

.carousel-next {
    right: -24px;
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 32px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-medium);
    border: none;
    cursor: pointer;
    transition: var(--transition-base);
    padding: 0;
}

.carousel-dot.active {
    background: var(--purple-primary);
    transform: scale(1.2);
    box-shadow: 0 0 0 4px rgba(113, 48, 230, 0.15);
}

.carousel-dot:hover {
    background: var(--purple-light);
}

/* ========================================
   CTA SECTION
   ======================================== */

.cta {
    position: relative;
    padding: var(--section-padding) 0;
    overflow: hidden;
    background: var(--bg-dark);
    color: var(--text-inverse);
}

.cta-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.cta-gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 60% 80% at 50% 50%, rgba(113, 48, 230, 0.15) 0%, transparent 70%),
        radial-gradient(ellipse 40% 50% at 20% 80%, rgba(113, 48, 230, 0.08) 0%, transparent 60%);
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--purple-light);
}

.cta-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--text-inverse);
    margin-bottom: 20px;
}

.cta-title .highlight {
    color: var(--purple-light);
}

.cta-subtitle {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 40px;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.cta-note {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ========================================
   TEAM SECTION
   ======================================== */

.team {
    padding: var(--section-padding) 0;
    background: var(--bg-base);
    position: relative;
}

.team::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-light), transparent);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.team-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-base);
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
    position: relative;
}

.team-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--purple-primary), transparent);
    opacity: 0;
    transition: var(--transition-base);
}

.team-card:hover {
    border-color: rgba(113, 48, 230, 0.2);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.team-card:hover::after {
    opacity: 1;
}

.team-photo-wrap {
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    position: relative;
    background: var(--bg-alt);
}

.team-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: var(--transition-slow);
    filter: grayscale(20%);
}

.team-card:hover .team-photo {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.team-info {
    padding: 28px 20px;
}

.team-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.team-role {
    display: block;
    font-size: 0.8125rem;
    color: var(--purple-primary);
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 12px;
}

.team-bio {
    font-size: 0.875rem;
    color: var(--text-tertiary);
    line-height: 1.6;
}

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

.footer {
    padding: 80px 0 32px;
    background: var(--bg-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-inverse);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--text-inverse);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.footer-logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    transition: var(--transition-base);
}

.footer-logo:hover .footer-logo-img {
    transform: rotate(8deg) scale(1.05);
}

.footer-tagline {
    font-size: 0.8125rem;
    color: var(--purple-light);
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.footer-desc {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-inverse);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition-fast);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--purple-light);
    transform: translateX(4px);
}

.footer-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--purple-primary);
    color: var(--text-inverse);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.9375rem;
    transition: var(--transition-base);
    margin-bottom: 16px;
}

.footer-cta:hover {
    background: var(--purple-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(113, 48, 230, 0.3);
}

.footer-hours {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-legal {
    color: rgba(255, 255, 255, 0.3) !important;
}

/* ========================================
   MODAL
   ======================================== */

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 40px;
    max-width: 480px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(20px) scale(0.98);
    transition: var(--transition-smooth);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
}

.modal-overlay.active .modal {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-alt);
    border: none;
    border-radius: 50%;
    color: var(--text-tertiary);
    cursor: pointer;
    transition: var(--transition-fast);
}

.modal-close:hover {
    background: var(--border-light);
    color: var(--text-primary);
}

.modal-header {
    margin-bottom: 32px;
}

.modal-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.modal-header p {
    font-size: 0.9375rem;
    color: var(--text-tertiary);
}

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

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

.form-group label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group select {
    padding: 14px 16px;
    background: var(--bg-alt);
    border: 1.5px solid var(--border-light);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-family: var(--font-family);
    font-size: 0.9375rem;
    transition: var(--transition-fast);
    outline: none;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--purple-primary);
    box-shadow: 0 0 0 3px rgba(113, 48, 230, 0.08);
}

.form-group input::placeholder {
    color: var(--text-muted);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23727272' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

.form-group select option {
    background: var(--bg-card);
    color: var(--text-primary);
}

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

[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Stagger delays */
[data-reveal]:nth-child(1) { transition-delay: 0s; }
[data-reveal]:nth-child(2) { transition-delay: 0.08s; }
[data-reveal]:nth-child(3) { transition-delay: 0.16s; }
[data-reveal]:nth-child(4) { transition-delay: 0.24s; }
[data-reveal]:nth-child(5) { transition-delay: 0.32s; }
[data-reveal]:nth-child(6) { transition-delay: 0.40s; }


/* ========================================
   AJUSTES CLIENTE - Títulos Centralizados
   ======================================== */

/* Remover traços/linhas do eyebrow */
.eyebrow-line {
    display: none;
}

/* Centralizar todos os títulos de seção */
.about-text,
.diff-left {
    text-align: center;
}

.section-eyebrow {
    justify-content: center;
}

/* Garantir centralização no mobile */
@media (max-width: 768px) {
    .section-title,
    .about-title,
    .section-eyebrow,
    .cta-title,
    .diff-left .section-title {
        text-align: center !important;
    }

    .about-text,
    .diff-left {
        text-align: center;
    }

    .section-eyebrow {
        justify-content: center;
    }
}

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

@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-text {
        position: static;
        max-width: 100%;
    }

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

    .diff-left {
        position: static;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .timeline-step:nth-child(odd),
    .timeline-step:nth-child(even) {
        padding: 0 0 0 80px;
        text-align: left;
        flex-direction: row;
    }

    .step-number {
        left: 0;
        transform: none;
    }

    .timeline-line {
        left: 24px;
    }

    /* Carousel: 3 cards no tablet */
    .client-card {
        flex: 0 0 calc(33.333% - 14px);
        min-width: 180px;
        min-height: 140px;
    }

    .carousel-prev {
        left: -12px;
    }

    .carousel-next {
        right: -12px;
    }

    /* Hero: stack on tablet */
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 48px;
    }

    .hero-text {
        text-align: center;
    }

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

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

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

    /* Services: 2 cols on tablet */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 320px;
        height: 100vh;
        background: var(--bg-card);
        flex-direction: column;
        align-items: stretch;
        padding: 100px 32px 32px;
        gap: 4px;
        transition: var(--transition-smooth);
        border-left: 1px solid var(--border-light);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        padding: 14px 0;
        font-size: 1rem;
        border-radius: 0;
        border-bottom: 1px solid var(--border-light);
        color: var(--text-secondary);
    }

    .nav-link:hover {
        background: transparent;
        color: var(--text-primary);
    }

    .nav-link.active {
        color: var(--purple-primary);
        background: transparent;
    }

    .nav-cta {
        margin-left: 0;
        margin-top: 16px;
        text-align: center;
        justify-content: center;
        border: none;
    }

    .hero-stats {
        gap: 24px;
    }

    .stat-divider {
        display: none;
    }

    .stat {
        flex: 1;
        min-width: 120px;
        text-align: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .team-info {
        padding: 20px 16px;
    }

    .team-name {
        font-size: 1rem;
    }

    .team-bio {
        font-size: 0.8125rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .cta-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-large {
        justify-content: center;
    }

    .modal {
        padding: 32px 24px;
    }

    .lead-form-wrapper {
        padding: 0 8px;
    }

    /* Carousel: 2 cards no mobile */
    .client-card {
        flex: 0 0 calc(50% - 10px);
        min-width: 140px;
        min-height: 120px;
        padding: 24px 16px;
    }

    .client-logo-wrap img {
        max-height: 80px;
    }

    .carousel-prev {
        left: -8px;
        width: 40px;
        height: 40px;
    }

    .carousel-next {
        right: -8px;
        width: 40px;
        height: 40px;
    }

    .logo-daniela img {
        transform: scale(2.0);
        max-height: 120px;
    }

    .client-card:hover .logo-daniela img {
        transform: scale(2.2);
    }

    /* Mobile hero title: stacked words */
    .hero-line-group {
        display: contents;
    }

    .hero-title .line {
        display: block;
        margin-right: 0;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 2.75rem);
    }

    .hero-visual {
        max-width: 280px;
        margin: 32px auto 0;
    }

    .hero-image-wrap {
        box-shadow: 0 12px 40px rgba(113, 48, 230, 0.12), 0 4px 16px rgba(0, 0, 0, 0.06);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

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

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        justify-content: center;
    }

    .pillar-card,
    .service-card,
    .testimonial-card {
        padding: 24px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 0 auto;
    }

    .diff-item {
        padding: 16px;
    }

    /* Carousel: 1 card no mobile pequeno */
    .client-card {
        flex: 0 0 100%;
        min-width: auto;
        min-height: 140px;
    }

    .carousel-prev,
    .carousel-next {
        display: none;
    }

    .logo-daniela img {
        transform: scale(1.8);
        max-height: 100px;
    }

    .client-card:hover .logo-daniela img {
        transform: scale(2.0);
    }

    .logo-img {
        width: 44px;
        height: 44px;
    }

    .nav-logo .logo-text {
        font-size: 1.25rem;
    }
}

/* ========================================
   ACCESSIBILITY
   ======================================== */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
    }

    html {
        scroll-behavior: auto;
    }

    .carousel-track {
        transition: none;
    }
}

/* Focus styles */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
    outline: 2px solid var(--purple-primary);
    outline-offset: 2px;
}

/* Selection */
::selection {
    background: rgba(113, 48, 230, 0.2);
    color: var(--text-primary);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-base);
}

::-webkit-scrollbar-thumb {
    background: var(--border-medium);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}
/* ========================================
   AJUSTES CLIENTE - Centralização Completa
   ======================================== */

/* Garantir centralização de todos os headers */
.section-header.center,
.section-header.center .section-eyebrow,
.section-header.center .section-title {
    text-align: center;
    justify-content: center;
}

/* Garantir que eyebrow não tenha traços e fique alinhado */
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0;
}

.section-eyebrow::before,
.section-eyebrow::after {
    display: none !important;
    content: none !important;
}

/* Alinhar textos menores (eyebrow) aos títulos maiores em todas as seções */
.about-text .section-eyebrow,
.about-text .section-title,
.about-text .section-body,
.diff-left .section-eyebrow,
.diff-left .section-title,
.section-header.center .section-eyebrow,
.section-header.center .section-title {
    text-align: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

/* Ajuste específico para mobile */
@media (max-width: 768px) {
    .section-header.center,
    .section-header.center .section-eyebrow,
    .section-header.center .section-title,
    .about-text,
    .diff-left,
    .about-text .section-eyebrow,
    .diff-left .section-eyebrow {
        text-align: center !important;
        justify-content: center !important;
    }
}

/* ========================================
   COOKIE BANNER LGPD
   ======================================== */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--bg-card);
    border-top: 1px solid var(--border-light);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.08);
    padding: 20px 0;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.active {
    transform: translateY(0);
}

.cookie-content {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 280px;
}

.cookie-text p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.cookie-text a {
    color: var(--purple-primary);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-text a:hover {
    color: var(--purple-dark);
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.cookie-btn {
    padding: 10px 20px;
    border-radius: var(--radius-md);
    font-family: var(--font-family);
    font-size: 0.8125rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-base);
    border: none;
    white-space: nowrap;
}

.cookie-btn-accept {
    background: var(--purple-primary);
    color: var(--text-inverse);
}

.cookie-btn-accept:hover {
    background: var(--purple-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(113, 48, 230, 0.3);
}

.cookie-btn-reject {
    background: transparent;
    color: var(--text-secondary);
    border: 1.5px solid var(--border-light);
}

.cookie-btn-reject:hover {
    border-color: var(--text-muted);
    color: var(--text-primary);
}

.cookie-btn-config {
    background: var(--bg-alt);
    color: var(--text-secondary);
    border: 1.5px solid var(--border-light);
}

.cookie-btn-config:hover {
    background: var(--border-light);
    color: var(--text-primary);
}

/* Cookie Modal */
.cookie-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
}

.cookie-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cookie-modal {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 40px;
    max-width: 520px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(20px) scale(0.98);
    transition: var(--transition-smooth);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
}

.cookie-modal-overlay.active .cookie-modal {
    transform: translateY(0) scale(1);
}

.cookie-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-alt);
    border: none;
    border-radius: 50%;
    color: var(--text-tertiary);
    cursor: pointer;
    transition: var(--transition-fast);
}

.cookie-modal-close:hover {
    background: var(--border-light);
    color: var(--text-primary);
}

.cookie-modal-header {
    margin-bottom: 32px;
}

.cookie-modal-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.cookie-modal-header p {
    font-size: 0.9375rem;
    color: var(--text-tertiary);
}

.cookie-categories {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.cookie-category {
    background: var(--bg-alt);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 20px;
}

.cookie-category-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.cookie-category-header h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.cookie-category-header p {
    font-size: 0.8125rem;
    color: var(--text-tertiary);
    line-height: 1.5;
}

/* Toggle Switch */
.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 26px;
    flex-shrink: 0;
    margin-top: 2px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: var(--border-medium);
    border-radius: 26px;
    transition: var(--transition-base);
}

.cookie-toggle-slider::before {
    content: '';
    position: absolute;
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background: var(--text-inverse);
    border-radius: 50%;
    transition: var(--transition-base);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.cookie-toggle input:checked + .cookie-toggle-slider {
    background: var(--purple-primary);
}

.cookie-toggle input:checked + .cookie-toggle-slider::before {
    transform: translateX(22px);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-modal-actions {
    display: flex;
    gap: 12px;
}

/* ========================================
   FORM CONSENT CHECKBOXES (LGPD)
   ======================================== */

.form-consent,
.form-consent-sensitive,
.form-consent-modal {
    padding: 0 !important;
}

.consent-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    position: relative;
}

.consent-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    width: 0;
    height: 0;
}

.checkmark {
    width: 20px;
    height: 20px;
    min-width: 20px;
    background: var(--bg-card);
    border: 2px solid var(--border-medium);
    border-radius: 4px;
    margin-top: 2px;
    transition: var(--transition-fast);
    position: relative;
}

.consent-checkbox:hover .checkmark {
    border-color: var(--purple-primary);
}

.consent-checkbox input:checked + .checkmark {
    background: var(--purple-primary);
    border-color: var(--purple-primary);
}

.consent-checkbox input:checked + .checkmark::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 1px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.consent-checkbox input:focus + .checkmark {
    box-shadow: 0 0 0 3px rgba(113, 48, 230, 0.15);
}

.consent-text {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.consent-text a {
    color: var(--purple-primary);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.consent-text a:hover {
    color: var(--purple-dark);
}

.form-consent-sensitive .consent-text {
    color: var(--text-tertiary);
}

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

.footer-email {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    font-weight: 500;
    transition: var(--transition-fast);
    margin-bottom: 8px;
}

.footer-email:hover {
    color: var(--purple-light);
}

.footer-email svg {
    flex-shrink: 0;
}

.footer-address {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
}

.footer-legal-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8125rem;
    transition: var(--transition-fast);
}

.footer-legal-links a:hover {
    color: var(--purple-light);
}

/* ========================================
   RESPONSIVE - Cookie Banner & Consent
   ======================================== */

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }

    .cookie-text {
        min-width: auto;
    }

    .cookie-actions {
        justify-content: center;
    }

    .cookie-btn {
        flex: 1;
        justify-content: center;
    }

    .cookie-modal {
        padding: 32px 24px;
        margin: 16px;
    }

    .cookie-category-header {
        flex-direction: column;
        gap: 12px;
    }

    .cookie-toggle {
        align-self: flex-start;
    }

    .footer-legal-links {
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .cookie-banner {
        padding: 16px 0;
    }

    .cookie-actions {
        flex-direction: column;
        width: 100%;
    }

    .cookie-btn {
        width: 100%;
    }
}