/* ══════════════════════════════════════════════════════════════
   ASPIX – Soluções em Comércio e Representação
   Stylesheet Premium | Paleta: Preto · Branco · Dourado
══════════════════════════════════════════════════════════════ */

/* ── VARIÁVEIS ────────────────────────────────────────────── */
:root {
    --gold:           #C9A84C;
    --gold-light:     #D4A843;
    --gold-pale:      #E2B96F;
    --gold-dark:      #9A7A2E;
    --gold-gradient:  linear-gradient(135deg, #B8860B 0%, #C9A84C 40%, #E2B96F 70%, #C9A84C 100%);
    --gold-gradient2: linear-gradient(90deg, #9A7A2E 0%, #C9A84C 35%, #E2B96F 65%, #9A7A2E 100%);

    --black:          #0A0A0A;
    --black-soft:     #111111;
    --black-card:     #161616;
    --dark:           #1A1A1A;
    --dark-mid:       #222222;
    --dark-light:     #2A2A2A;
    --border:         rgba(201, 168, 76, 0.2);
    --border-hover:   rgba(201, 168, 76, 0.5);

    --white:          #FFFFFF;
    --white-90:       rgba(255,255,255,0.9);
    --white-70:       rgba(255,255,255,0.7);
    --white-40:       rgba(255,255,255,0.4);
    --white-10:       rgba(255,255,255,0.06);

    --font-display:   'Playfair Display', Georgia, serif;
    --font-body:      'Inter', -apple-system, sans-serif;
    --font-elegant:   'Cormorant Garamond', Georgia, serif;

    --shadow-gold:    0 0 30px rgba(201, 168, 76, 0.15);
    --shadow-card:    0 8px 40px rgba(0,0,0,0.5);
    --radius-sm:      6px;
    --radius:         12px;
    --radius-lg:      20px;
    --radius-xl:      32px;

    --transition:     0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow:0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    background: #0A0A0A;
    color: #FFFFFF;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: #C9A84C;
    color: #0A0A0A;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── CANVAS DE PARTÍCULAS ──────────────────────────────────── */
#particles-canvas {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
}

/* ── SCROLLBAR ─────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #0A0A0A; }
::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #B8860B 0%, #C9A84C 40%, #E2B96F 70%, #C9A84C 100%);
    border-radius: 3px;
}

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

/* ── TIPOGRAFIA GLOBAL ─────────────────────────────────────── */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #C9A84C;
    margin-bottom: 16px;
}

.section-tag::before {
    content: '';
    width: 28px;
    height: 1px;
    background: linear-gradient(135deg, #B8860B 0%, #C9A84C 40%, #E2B96F 70%, #C9A84C 100%);
}

.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.section-title em {
    font-style: italic;
    background: linear-gradient(135deg, #B8860B 0%, #C9A84C 40%, #E2B96F 70%, #C9A84C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #C9A84C; /* fallback para navegadores sem suporte */
}

.section-desc {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    margin: 0 auto;
}

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

.section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.desktop-br { display: none; }
@media (min-width: 768px) { .desktop-br { display: block; } }

/* ── BOTÕES ─────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    border: none;
    text-decoration: none;
}

.btn-gold {
    background: linear-gradient(135deg, #B8860B 0%, #C9A84C 40%, #E2B96F 70%, #C9A84C 100%);
    color: #0A0A0A;
    box-shadow: 0 4px 24px rgba(201, 168, 76, 0.35);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 40px rgba(201, 168, 76, 0.5);
    background: linear-gradient(90deg, #9A7A2E 0%, #C9A84C 35%, #E2B96F 65%, #9A7A2E 100%);
    color: #0A0A0A;
}

.btn-outline {
    background: transparent;
    color: #FFFFFF;
    border: 1.5px solid rgba(255,255,255,0.25);
}

.btn-outline:hover {
    border-color: #C9A84C;
    color: #C9A84C;
    background: rgba(201, 168, 76, 0.08);
    transform: translateY(-2px);
}

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

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

/* ══════════════════════════════════════════════════════════════
   NAVEGAÇÃO
══════════════════════════════════════════════════════════════ */
#header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 0;
    transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

#header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
    box-shadow: 0 4px 40px rgba(0,0,0,0.6);
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 32px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

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

.logo-img {
    width: 52px;
    height: 52px;
    object-fit: contain;
    border-radius: 50%;
    transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-logo:hover .logo-img {
    transform: scale(1.05);
    filter: drop-shadow(0 0 12px rgba(201, 168, 76, 0.5));
}

.nav-brand {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #FFFFFF;
}

.brand-tagline {
    font-size: 0.65rem;
    font-weight: 500;
    color: #C9A84C;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
}

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

.nav-link {
    font-size: 0.88rem;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    padding: 8px 14px;
    border-radius: 6px;
    transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.02em;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px; left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 16px; height: 1px;
    background: #C9A84C;
    transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
    color: #FFFFFF;
}

.nav-link:hover::after { transform: translateX(-50%) scaleX(1); }

.nav-link.nav-cta {
    background: linear-gradient(135deg, #B8860B 0%, #C9A84C 40%, #E2B96F 70%, #C9A84C 100%);
    color: #0A0A0A !important;
    padding: 9px 22px;
    font-weight: 600;
    border-radius: 50px;
}

.nav-link.nav-cta::after { display: none; }

.nav-link.nav-cta:hover {
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.4);
    transform: translateY(-1px);
    color: #0A0A0A !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: #FFFFFF;
    border-radius: 2px;
    transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── SELETOR DE IDIOMA ───────────────────────────────────────── */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: 12px;
    flex-shrink: 0;
}

.lang-btn {
    background: none;
    border: none;
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.45);
    cursor: pointer;
    padding: 4px 6px;
    border-radius: 4px;
    transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.lang-btn:hover {
    color: rgba(255,255,255,0.85);
}

.lang-btn.active {
    color: #C9A84C;
}

.lang-sep {
    color: rgba(255,255,255,0.2);
    font-size: 0.7rem;
    user-select: none;
}

/* ══════════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 40%, rgba(201, 168, 76, 0.07) 0%, transparent 70%),
        radial-gradient(ellipse 60% 80% at 80% 80%, rgba(201, 168, 76, 0.04) 0%, transparent 60%),
        linear-gradient(180deg, rgba(10,10,10,0.3) 0%, #0A0A0A 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 120px 24px 80px;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #C9A84C;
    background: rgba(201, 168, 76, 0.06);
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
}

.badge-dot {
    width: 8px; height: 8px;
    background: #C9A84C;
    border-radius: 50%;
    box-shadow: 0 0 10px #C9A84C;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; box-shadow: 0 0 8px #C9A84C; }
    50% { opacity: 0.6; box-shadow: 0 0 16px #C9A84C; }
}

.hero-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.8rem, 7vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #FFFFFF;
    margin-bottom: 24px;
}

.hero-title em {
    font-style: normal;
    background: linear-gradient(135deg, #B8860B 0%, #C9A84C 40%, #E2B96F 70%, #C9A84C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: shimmer 5s ease-in-out infinite;
    color: #C9A84C; /* fallback */
}

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

.hero-subtitle {
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    color: rgba(255,255,255,0.7);
    margin-bottom: 44px;
    line-height: 1.8;
    font-weight: 300;
}

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

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 28px 40px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-wrap: wrap;
    gap: 20px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex: 1;
    min-width: 100px;
}

.stat-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #C9A84C;
    line-height: 1;
}

.stat-suffix {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #C9A84C;
    line-height: 1;
}

.stat-label {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.05em;
    text-align: center;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(201, 168, 76, 0.2);
    align-self: center;
    flex-shrink: 0;
}

.hero-scroll {
    position: absolute;
    bottom: 40px; left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.4);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, #C9A84C, transparent);
    animation: scroll-down 2s ease-in-out infinite;
}

@keyframes scroll-down {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ══════════════════════════════════════════════════════════════
   FAIXA DE CONFIANÇA
══════════════════════════════════════════════════════════════ */
.trust-bar {
    position: relative;
    z-index: 1;
    background: rgba(201, 168, 76, 0.06);
    border-top: 1px solid rgba(201, 168, 76, 0.2);
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
    padding: 20px 0;
}

.trust-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 28px;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
}

.trust-item i {
    color: #C9A84C;
    font-size: 1.1rem;
}

.trust-separator {
    width: 1px;
    height: 30px;
    background: rgba(201, 168, 76, 0.2);
}

/* ══════════════════════════════════════════════════════════════
   SOBRE
══════════════════════════════════════════════════════════════ */
.sobre {
    background: #111111;
}

.sobre-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: center;
}

.sobre-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    position: relative;
}

.sobre-logo-wrapper {
    position: relative;
    width: 280px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-glow-ring {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.12) 0%, transparent 70%);
    animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

.sobre-logo {
    width: 220px;
    height: 220px;
    object-fit: contain;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 30px rgba(201, 168, 76, 0.3));
}

.logo-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(201, 168, 76, 0.2);
    animation: rotate-ring 20s linear infinite;
}

.logo-ring.ring-1 {
    width: 260px; height: 260px;
    border-color: rgba(201, 168, 76, 0.15);
    animation-duration: 15s;
}

.logo-ring.ring-2 {
    width: 310px; height: 310px;
    border-color: rgba(201, 168, 76, 0.08);
    animation-duration: 25s;
    animation-direction: reverse;
}

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

.sobre-card-destaque {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 24px;
    background: #161616;
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 12px;
    width: 100%;
    max-width: 280px;
}

.destaque-icon {
    width: 42px; height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #B8860B 0%, #C9A84C 40%, #E2B96F 70%, #C9A84C 100%);
    border-radius: 10px;
    color: #0A0A0A;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.sobre-card-destaque div { display: flex; flex-direction: column; gap: 2px; }
.sobre-card-destaque strong { font-size: 0.95rem; color: #FFFFFF; }
.sobre-card-destaque span { font-size: 0.78rem; color: #C9A84C; }

.sobre-content {}

.sobre-text {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 20px;
    line-height: 1.85;
}

.sobre-text strong { color: #FFFFFF; }

.sobre-valores {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}

.valor-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 20px;
    background: #161616;
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 12px;
    transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.valor-item:hover {
    border-color: rgba(201, 168, 76, 0.5);
    background: rgba(201, 168, 76, 0.04);
    transform: translateX(4px);
}

.valor-icon {
    width: 40px; height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 168, 76, 0.1);
    border-radius: 10px;
    color: #C9A84C;
    font-size: 1rem;
    flex-shrink: 0;
}

.valor-item div { display: flex; flex-direction: column; gap: 2px; }
.valor-item strong { font-size: 0.92rem; color: #FFFFFF; }
.valor-item span { font-size: 0.82rem; color: rgba(255,255,255,0.7); }

/* ══════════════════════════════════════════════════════════════
   SERVIÇOS
══════════════════════════════════════════════════════════════ */
.servicos {
    background: #0A0A0A;
}

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

/* Último card centralizado quando sobra sozinho */
.servicos-grid .servico-card:last-child:nth-child(3n+1) {
    grid-column: 1 / -1;
    max-width: calc(33.333% - 16px);
    margin: 0 auto;
}

.servico-card {
    padding: 36px 28px;
    background: #161616;
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 20px;
    transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation-delay: var(--delay, 0s);
}

.servico-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(135deg, #B8860B 0%, #C9A84C 40%, #E2B96F 70%, #C9A84C 100%);
    transform: scaleX(0);
    transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.servico-card:hover {
    border-color: rgba(201, 168, 76, 0.5);
    transform: translateY(-6px);
    box-shadow: 0 0 30px rgba(201, 168, 76, 0.15), 0 8px 40px rgba(0,0,0,0.5);
    background: #1A1A1A;
}

.servico-card:hover::before {
    transform: scaleX(1);
}

.servico-icon-wrapper {
    position: relative;
    width: 64px; height: 64px;
    margin-bottom: 24px;
}

.servico-icon-bg {
    position: absolute;
    inset: 0;
    background: rgba(201, 168, 76, 0.1);
    border-radius: 16px;
    transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.servico-card:hover .servico-icon-bg {
    background: linear-gradient(135deg, #B8860B 0%, #C9A84C 40%, #E2B96F 70%, #C9A84C 100%);
}

.servico-icon {
    position: relative;
    z-index: 1;
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #C9A84C;
    transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    /* Override Font Awesome positioning */
    line-height: 64px;
    text-align: center;
}

.servico-card:hover .servico-icon {
    color: #0A0A0A;
}

.servico-card h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 12px;
}

.servico-card p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.75;
    margin-bottom: 20px;
}

.servico-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #C9A84C;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.servico-link i { font-size: 0.75rem; transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1); }

.servico-link:hover { color: #E2B96F; }
.servico-link:hover i { transform: translateX(4px); }

/* ══════════════════════════════════════════════════════════════
   DIFERENCIAIS
══════════════════════════════════════════════════════════════ */
.diferenciais {
    background: #111111;
    overflow: hidden;
}

.diferenciais-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 50% at 0% 50%, rgba(201, 168, 76, 0.04) 0%, transparent 60%),
        radial-gradient(ellipse 70% 50% at 100% 50%, rgba(201, 168, 76, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

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

.diferencial-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 28px;
    background: #161616;
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 12px;
    transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.diferencial-item:hover {
    border-color: rgba(201, 168, 76, 0.5);
    background: rgba(201, 168, 76, 0.03);
}

.diferencial-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(201, 168, 76, 0.15);
    line-height: 1;
    flex-shrink: 0;
    width: 50px;
    transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.diferencial-item:hover .diferencial-number {
    color: rgba(201, 168, 76, 0.35);
}

.diferencial-content { flex: 1; }
.diferencial-content h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.diferencial-content p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.75;
}

.diferencial-icon {
    width: 44px; height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 168, 76, 0.08);
    border-radius: 12px;
    color: #C9A84C;
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.diferencial-item:hover .diferencial-icon {
    background: linear-gradient(135deg, #B8860B 0%, #C9A84C 40%, #E2B96F 70%, #C9A84C 100%);
    color: #0A0A0A;
}

/* ══════════════════════════════════════════════════════════════
   NÚMEROS
══════════════════════════════════════════════════════════════ */
.numeros {
    background: #0A0A0A;
}

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

.numero-card {
    text-align: center;
    padding: 40px 24px;
    background: #161616;
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 20px;
    transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation-delay: var(--delay, 0s);
}

.numero-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(135deg, #B8860B 0%, #C9A84C 40%, #E2B96F 70%, #C9A84C 100%);
    transform: scaleX(0);
    transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.numero-card:hover {
    border-color: rgba(201, 168, 76, 0.5);
    transform: translateY(-6px);
    box-shadow: 0 0 30px rgba(201, 168, 76, 0.15);
}

.numero-card:hover::after { transform: scaleX(1); }

.numero-icon {
    width: 56px; height: 56px;
    background: rgba(201, 168, 76, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #C9A84C;
    margin: 0 auto 20px;
    transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.numero-card:hover .numero-icon {
    background: linear-gradient(135deg, #B8860B 0%, #C9A84C 40%, #E2B96F 70%, #C9A84C 100%);
    color: #0A0A0A;
}

.numero-value {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 2px;
    margin-bottom: 8px;
}

.counter {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3rem;
    font-weight: 700;
    color: #C9A84C;
    line-height: 1;
}

.numero-plus {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #C9A84C;
    line-height: 1.1;
}

.numero-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.numero-desc {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

/* ══════════════════════════════════════════════════════════════
   PROCESSO
══════════════════════════════════════════════════════════════ */
.processo {
    background: #111111;
    overflow: hidden;
}

.processo-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(201, 168, 76, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.processo-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

.processo-timeline::before {
    content: '';
    position: absolute;
    top: 52px; left: calc(12.5% + 28px); right: calc(12.5% + 28px);
    height: 1px;
    background: linear-gradient(135deg, #B8860B 0%, #C9A84C 40%, #E2B96F 70%, #C9A84C 100%);
    z-index: 0;
}

.processo-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    position: relative;
    z-index: 1;
    animation-delay: var(--delay, 0s);
}

.step-number {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #B8860B 0%, #C9A84C 40%, #E2B96F 70%, #C9A84C 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #0A0A0A;
    margin-bottom: 24px;
    flex-shrink: 0;
    box-shadow: 0 0 20px rgba(201, 168, 76, 0.3);
}

.step-connector { display: none; }

.step-content {}

.step-icon {
    width: 48px; height: 48px;
    background: rgba(201, 168, 76, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #C9A84C;
    margin: 0 auto 16px;
}

.step-content h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.step-content p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
}

/* ══════════════════════════════════════════════════════════════
   DEPOIMENTOS
══════════════════════════════════════════════════════════════ */
.depoimentos { background: #0A0A0A; }

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

.depoimento-card {
    padding: 36px;
    background: #161616;
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 20px;
    transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    animation-delay: var(--delay, 0s);
}

.depoimento-card:hover {
    border-color: rgba(201, 168, 76, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 0 30px rgba(201, 168, 76, 0.15);
}

.depo-quote {
    font-size: 2rem;
    color: #C9A84C;
    opacity: 0.4;
    margin-bottom: 16px;
}

.depoimento-card > p {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 28px;
    font-style: italic;
}

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

.depo-avatar {
    width: 44px; height: 44px;
    background: rgba(201, 168, 76, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #C9A84C;
    flex-shrink: 0;
}

.depo-info { flex: 1; }
.depo-info strong {
    display: block;
    font-size: 0.9rem;
    color: #FFFFFF;
    font-weight: 600;
}
.depo-info span {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.7);
}

.depo-stars {
    display: flex;
    gap: 2px;
    color: #C9A84C;
    font-size: 0.8rem;
    width: 100%;
    margin-top: 8px;
}

/* ══════════════════════════════════════════════════════════════
   CTA BANNER
══════════════════════════════════════════════════════════════ */
.cta-banner {
    position: relative;
    z-index: 1;
    padding: 100px 0;
    background: #111111;
    border-top: 1px solid rgba(201, 168, 76, 0.2);
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(201, 168, 76, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

.cta-particles {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(201, 168, 76, 0.08) 1px, transparent 1px),
        radial-gradient(circle at 80% 70%, rgba(201, 168, 76, 0.06) 1px, transparent 1px),
        radial-gradient(circle at 50% 50%, rgba(245, 197, 24, 0.05) 1px, transparent 1px);
    background-size: 60px 60px, 80px 80px, 40px 40px;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-logo {
    margin: 0 auto 24px;
    width: 90px;
    filter: drop-shadow(0 0 20px rgba(201, 168, 76, 0.4));
}

.cta-content h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.2;
    margin-bottom: 20px;
}

.cta-content h2 em {
    font-style: italic;
    background: linear-gradient(135deg, #B8860B 0%, #C9A84C 40%, #E2B96F 70%, #C9A84C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #C9A84C;
}

.cta-content p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 40px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

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

/* ══════════════════════════════════════════════════════════════
   CONTATO
══════════════════════════════════════════════════════════════ */
.contato { background: #0A0A0A; }

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

.contato-intro {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 36px;
}

.contato-dados {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 36px;
}

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

.contato-icon {
    width: 44px; height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 168, 76, 0.1);
    border-radius: 12px;
    color: #C9A84C;
    font-size: 1rem;
    flex-shrink: 0;
}

.contato-item div {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding-top: 4px;
}

.contato-item strong {
    font-size: 0.82rem;
    color: #C9A84C;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.contato-item span,
.contato-item a {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.contato-item a:hover { color: #C9A84C; }

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

.social-btn {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: #161616;
    border: 1px solid rgba(201, 168, 76, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-btn:hover {
    background: linear-gradient(135deg, #B8860B 0%, #C9A84C 40%, #E2B96F 70%, #C9A84C 100%);
    color: #0A0A0A;
    border-color: transparent;
    transform: translateY(-2px);
}

/* Formulário */
.contato-form-wrapper {
    background: #161616;
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 32px;
    padding: 48px 40px;
}

.contato-form h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 32px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.form-group label {
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: #2A2A2A;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 14px 18px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.95rem;
    color: #FFFFFF;
    outline: none;
    transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    appearance: none;
    -webkit-appearance: none;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A84C' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 44px;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #C9A84C;
    background: rgba(201, 168, 76, 0.04);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-success {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    padding: 16px 20px;
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 12px;
    font-size: 0.9rem;
    color: #C9A84C;
}

.form-success i { font-size: 1.2rem; }

/* ══════════════════════════════════════════════════════════════
   RODAPÉ
══════════════════════════════════════════════════════════════ */
.footer { background: #111111; }

.footer-top { padding: 80px 0 60px; border-top: 1px solid rgba(201, 168, 76, 0.2); }

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

.footer-logo {
    width: 80px;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 12px;
}

.footer-cnpj {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    font-family: monospace;
    letter-spacing: 0.05em;
}

.footer-links h4,
.footer-contato h4 {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #C9A84C;
    margin-bottom: 20px;
}

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

.footer-links ul li a {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.7);
    transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-links ul li a:hover {
    color: #C9A84C;
    padding-left: 6px;
}

.footer-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.7);
}

.footer-info-item i {
    color: #C9A84C;
    width: 16px;
    flex-shrink: 0;
}

.footer-info-item a {
    color: rgba(255,255,255,0.7);
    transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-info-item a:hover { color: #C9A84C; }

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-social a {
    width: 38px; height: 38px;
    border-radius: 10px;
    background: #2A2A2A;
    border: 1px solid rgba(201, 168, 76, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-social a:hover {
    background: linear-gradient(135deg, #B8860B 0%, #C9A84C 40%, #E2B96F 70%, #C9A84C 100%);
    color: #0A0A0A;
    border-color: transparent;
}

.footer-bottom {
    padding: 24px 0;
    border-top: 1px solid rgba(201, 168, 76, 0.2);
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

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

.footer-dev { color: #C9A84C !important; opacity: 0.6; }

/* ══════════════════════════════════════════════════════════════
   ELEMENTOS FLUTUANTES
══════════════════════════════════════════════════════════════ */
/* WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 28px; right: 28px;
    z-index: 900;
    width: 58px; height: 58px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: white;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
    color: white;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateY(0);
}

.whatsapp-tooltip {
    position: absolute;
    right: calc(100% + 12px);
    white-space: nowrap;
    background: #1A1A1A;
    border: 1px solid rgba(201, 168, 76, 0.2);
    color: #FFFFFF;
    font-size: 0.8rem;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 8px;
    opacity: 0;
    transform: translateY(4px);
    transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

/* Scroll to top */
.scroll-top-btn {
    position: fixed;
    bottom: 100px; right: 28px;
    z-index: 900;
    width: 44px; height: 44px;
    border-radius: 12px;
    background: #161616;
    border: 1px solid rgba(201, 168, 76, 0.2);
    color: #C9A84C;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    background: linear-gradient(135deg, #B8860B 0%, #C9A84C 40%, #E2B96F 70%, #C9A84C 100%);
    color: #0A0A0A;
    border-color: transparent;
    transform: translateY(-2px);
}

/* ══════════════════════════════════════════════════════════════
   ANIMAÇÕES DE REVEAL
══════════════════════════════════════════════════════════════ */
.reveal-up,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: opacity 0.7s ease, transform 0.7s ease;
    transition-delay: var(--delay, 0s);
}

.reveal-up { transform: translateY(40px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }

.revealed {
    opacity: 1 !important;
    transform: translate(0) !important;
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
    .numeros-grid { grid-template-columns: repeat(2, 1fr); }
    .servicos-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .processo-timeline { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .processo-timeline::before { display: none; }
    .sobre-grid { gap: 48px; }
}

@media (max-width: 900px) {
    .sobre-grid { grid-template-columns: 1fr; }
    .sobre-visual { order: -1; }
    .diferenciais-grid { grid-template-columns: 1fr; }
    .contato-grid { grid-template-columns: 1fr; gap: 48px; }
    .depoimentos-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px; left: 0; right: 0;
        background: rgba(10,10,10,0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 24px 32px;
        gap: 8px;
        border-bottom: 1px solid rgba(201, 168, 76, 0.2);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-menu.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-link {
        width: 100%;
        padding: 12px 16px;
        font-size: 1rem;
    }

    .nav-cta {
        text-align: center;
        margin-top: 8px;
    }

    .nav-toggle { display: flex; }

    .lang-switcher {
        margin-left: 0;
        margin-right: 8px;
    }

    .hero-stats {
        padding: 20px;
        gap: 12px;
    }

    .stat-divider { display: none; }

    .hero-actions { gap: 12px; }

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

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

    .trust-container { gap: 0; }
    .trust-item { padding: 8px 16px; }
    .trust-separator { display: none; }

    .contato-form-wrapper { padding: 32px 24px; }
    .form-row { grid-template-columns: 1fr; }

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

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

    .section { padding: 72px 0; }

    .processo-timeline { grid-template-columns: 1fr; }

    .nav-container { padding: 0 20px; }

    .brand-tagline { font-size: 0.55rem; letter-spacing: 0.04em; }
}

@media (max-width: 480px) {
    .numeros-grid { grid-template-columns: 1fr 1fr; }
    .hero-stats { flex-direction: column; }
    .cta-actions { flex-direction: column; align-items: center; }
    .hero-actions { flex-direction: column; align-items: center; }
    .btn { width: 100%; justify-content: center; }

    .sobre-logo-wrapper {
        width: 220px; height: 220px;
    }

    .sobre-logo { width: 170px; height: 170px; }
    .logo-ring.ring-1 { width: 210px; height: 210px; }
    .logo-ring.ring-2 { width: 250px; height: 250px; }
    .logo-glow-ring { width: 260px; height: 260px; }
}
