/* ==========================================================================
   Aura SEO — Main Stylesheet
   Paleta creme/champagne com dourado
   ========================================================================== */

:root {
    --gold: #B8945A;
    --gold-light: #D4B584;
    --gold-dark: #9A7A47;
    --cream: #FAF7F2;
    --cream-2: #F3EDE3;
    --cream-3: #EDE4D6;
    --dark: #1C1714;
    --text: #2A2320;
    --text-dim: #7A6E65;
    --border: rgba(184, 148, 90, 0.2);
    --border-strong: rgba(184, 148, 90, 0.4);
    --shadow-sm: 0 2px 8px rgba(28, 23, 20, 0.04);
    --shadow-md: 0 8px 24px rgba(28, 23, 20, 0.08);
    --shadow-lg: 0 16px 48px rgba(28, 23, 20, 0.12);
    --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--sans);
    font-weight: 300;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition);
}

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--serif);
    font-weight: 300;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: var(--dark);
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h4 { font-size: clamp(1.125rem, 2vw, 1.375rem); }

p { color: var(--text); }

::selection {
    background: var(--gold);
    color: var(--cream);
}

/* Navbar
   ========================================================================== */
nav#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 4rem;
    background: rgba(250, 247, 242, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: padding var(--transition), background var(--transition);
}

nav#navbar.scrolled {
    padding: 1rem 4rem;
    background: rgba(250, 247, 242, 0.95);
}

nav#navbar .logo {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    color: var(--dark);
}

nav#navbar .logo span {
    color: var(--gold);
    font-style: italic;
}

nav#navbar ul {
    display: flex;
    gap: 2.5rem;
}

nav#navbar ul a {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--text);
    letter-spacing: 0.02em;
    position: relative;
    padding: 0.25rem 0;
}

nav#navbar ul a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width var(--transition);
}

nav#navbar ul a:hover {
    color: var(--gold);
}

nav#navbar ul a:hover::after {
    width: 100%;
}

nav#navbar .nav-btn {
    padding: 0.75rem 1.75rem;
    background: var(--dark);
    color: var(--cream);
    border: 1px solid var(--dark);
    border-radius: 999px;
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    transition: all var(--transition);
}

nav#navbar .nav-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--cream);
    transform: translateY(-1px);
}

@media (max-width: 968px) {
    nav#navbar { padding: 1.25rem 1.5rem; }
    nav#navbar ul { display: none; }
}

/* Hero
   ========================================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 4rem;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(184, 148, 90, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(184, 148, 90, 0.06) 0%, transparent 50%),
        linear-gradient(180deg, rgba(250, 247, 242, 0.4) 0%, rgba(243, 237, 227, 0.6) 100%);
    pointer-events: none;
    z-index: 1;
}

.hero > * {
    position: relative;
    z-index: 1;
}

.hero .eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2rem;
    font-weight: 500;
}

.hero h1 {
    max-width: 900px;
    margin: 0 auto 2rem;
    font-size: clamp(2.75rem, 7vw, 5.5rem);
}

.hero h1 em {
    font-style: italic;
    color: var(--gold);
    font-weight: 300;
}

.hero p {
    max-width: 640px;
    margin: 0 auto 3rem;
    font-size: 1.125rem;
    color: var(--text-dim);
    line-height: 1.7;
}

.hero .cta-group {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.125rem 2.5rem;
    border-radius: 999px;
    font-size: 0.9375rem;
    font-weight: 400;
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: all var(--transition);
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--dark);
    color: var(--cream);
}

.btn-primary:hover {
    background: var(--gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-ghost {
    background: transparent;
    color: var(--dark);
    border-color: var(--border-strong);
}

.btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* Gold divider
   ========================================================================== */
.gold-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0 auto;
    width: fit-content;
    padding: 3rem 0;
}

.gold-divider::before,
.gold-divider::after {
    content: '';
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.gold-divider span,
.gold-divider .dot {
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    transform: rotate(45deg);
}

/* Section base
   ========================================================================== */
section {
    padding: 7rem 2rem;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
}

.section-eyebrow {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.25rem;
    font-weight: 500;
}

.section-title {
    margin-bottom: 1.5rem;
}

.section-lead {
    max-width: 640px;
    color: var(--text-dim);
    font-size: 1.0625rem;
    line-height: 1.75;
}

/* Problema (Grid 2 colunas)
   ========================================================================== */
.problema {
    background: var(--cream);
    border-top: 1px solid var(--border);
}

.problema .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.problema-text h2 {
    margin-bottom: 2rem;
}

.problema-text h2 em {
    font-style: italic;
    color: var(--gold);
}

.problema-text p + p {
    margin-top: 1.25rem;
}

.problema-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.problema-list li {
    padding: 1.75rem 2rem;
    background: var(--cream-2);
    border-left: 2px solid var(--gold);
    border-radius: 0 4px 4px 0;
    font-size: 0.9375rem;
    color: var(--text);
    transition: transform var(--transition), box-shadow var(--transition);
}

.problema-list li:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-sm);
}

.problema-list strong {
    display: block;
    font-family: var(--serif);
    font-size: 1.25rem;
    color: var(--dark);
    margin-bottom: 0.35rem;
    font-weight: 400;
}

@media (max-width: 968px) {
    .problema .container { grid-template-columns: 1fr; gap: 3rem; }
}

/* Serviços
   ========================================================================== */
.servicos {
    background: var(--cream-2);
    position: relative;
}

.servicos .section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.servicos .section-lead {
    margin: 0 auto;
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.servico {
    position: relative;
    padding: 3rem 2.5rem;
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 4px;
    transition: all var(--transition);
    overflow: hidden;
}

.servico::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.servico:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: var(--shadow-lg);
    background: var(--cream);
}

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

.servico .servico-num {
    font-family: var(--serif);
    font-size: 0.875rem;
    color: var(--gold);
    letter-spacing: 0.2em;
    margin-bottom: 1.5rem;
    display: block;
    font-style: italic;
}

.servico h3 {
    margin-bottom: 1.25rem;
    font-size: 1.625rem;
}

.servico p {
    color: var(--text-dim);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.servico .servico-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
}

.servico .servico-link::after {
    content: '→';
    transition: transform var(--transition);
}

.servico:hover .servico-link::after {
    transform: translateX(6px);
}

/* Quote section (com overlay escuro)
   ========================================================================== */
.quote-section {
    position: relative;
    padding: 9rem 2rem;
    background:
        linear-gradient(135deg, rgba(28, 23, 20, 0.92) 0%, rgba(42, 35, 32, 0.88) 100%),
        linear-gradient(135deg, var(--dark) 0%, #2a2320 100%);
    color: var(--cream);
    overflow: hidden;
    text-align: center;
}

.quote-section::before {
    content: '"';
    position: absolute;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--serif);
    font-size: 12rem;
    line-height: 1;
    color: var(--gold);
    opacity: 0.15;
    font-style: italic;
}

.quote-section blockquote {
    position: relative;
    max-width: 880px;
    margin: 0 auto;
    font-family: var(--serif);
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    font-style: italic;
    font-weight: 300;
    line-height: 1.4;
    color: var(--cream);
    letter-spacing: -0.01em;
}

.quote-section blockquote em {
    color: var(--gold);
    font-style: italic;
}

.quote-section cite {
    display: block;
    margin-top: 2.5rem;
    font-family: var(--sans);
    font-size: 0.8125rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    font-style: normal;
    font-weight: 500;
}

.quote-section cite::before {
    content: '— ';
}

/* Números
   ========================================================================== */
.numeros {
    background: var(--cream);
    text-align: center;
}

.numeros .section-header {
    margin-bottom: 5rem;
}

.numeros-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.numero {
    padding: 2rem 1.5rem;
    border-left: 1px solid var(--border);
    text-align: left;
}

.numero:first-child {
    border-left: none;
}

.numero .numero-value {
    display: block;
    font-family: var(--serif);
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 300;
    line-height: 1;
    color: var(--gold);
    margin-bottom: 1rem;
}

.numero .numero-label {
    display: block;
    font-size: 0.9375rem;
    color: var(--text-dim);
    line-height: 1.6;
}

@media (max-width: 720px) {
    .numero { border-left: none; border-top: 1px solid var(--border); padding-top: 2rem; text-align: center; }
    .numero:first-child { border-top: none; padding-top: 0; }
}

/* Nichos
   ========================================================================== */
.nichos {
    background: var(--cream-3);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 7rem 5rem;
}

.nichos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.nicho {
    padding: 1.5rem 1.75rem;
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 4px;
    font-family: var(--serif);
    font-size: 1.125rem;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 0.875rem;
    transition: all var(--transition);
}

.nicho::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    transform: rotate(45deg);
    flex-shrink: 0;
}

.nicho:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

@media (max-width: 968px) {
    .nichos {
        padding: 4.5rem 1.5rem;
    }
    .nichos-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* AEO
   ========================================================================== */
.aeo {
    background: var(--cream);
    padding: 7rem 5rem;
}

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

.aeo-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.aeo-visual {
    background: var(--cream-2);
    border: 1px solid var(--border);
    padding: 2rem;
    border-radius: 4px;
    width: 100%;
}

.aeo-chat {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.aeo-chat-q {
    background: var(--cream-3);
    padding: 1rem 1.2rem;
    border-radius: 4px;
}

.aeo-chat-a {
    background: white;
    border-left: 3px solid var(--gold);
    padding: 1rem 1.2rem;
    border-radius: 0 4px 4px 0;
}

.aeo-chat-label {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-dark);
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 500;
}

.aeo-chat-q p, .aeo-chat-a p {
    font-size: 0.88rem;
    line-height: 1.6;
    margin: 0;
    color: var(--text);
}

.aeo-chat-a p strong {
    color: var(--gold-dark);
}

.ai-logos {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.ai-logo {
    border: 1px solid var(--border);
    padding: 0.35rem 0.9rem;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-dim);
}

.aeo-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.aeo-content h2 {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    margin-bottom: 1.5rem;
}

.aeo-content p {
    font-size: 0.92rem;
    color: var(--text-dim);
    line-height: 1.9;
    margin-bottom: 1rem;
}

@media (max-width: 968px) {
    .aeo {
        padding: 4.5rem 1.5rem;
    }
    .aeo-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* Reputação
   ========================================================================== */
.reputacao {
    background: var(--cream-2);
    text-align: center;
}

.reputacao .section-header {
    max-width: 720px;
    margin: 0 auto 5rem;
}

.reputacao .section-lead {
    margin: 0 auto;
}

.reputacao-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.reputacao-card {
    padding: 3rem 2rem;
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 4px;
    text-align: left;
    transition: all var(--transition);
}

.reputacao-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.reputacao-card .icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--cream-3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.75rem;
    font-family: var(--serif);
    font-style: italic;
    color: var(--gold);
    font-size: 1.25rem;
}

.reputacao-card h3 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
}

.reputacao-card p {
    color: var(--text-dim);
    font-size: 0.9375rem;
    line-height: 1.7;
}

@media (max-width: 968px) {
    .reputacao-grid { grid-template-columns: 1fr; }
}

/* Processo
   ========================================================================== */
.processo {
    background: var(--cream);
    position: relative;
}

.processo .section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.processo-steps {
    max-width: 880px;
    margin: 0 auto;
    position: relative;
}

.processo-steps::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 39px;
    width: 1px;
    background: linear-gradient(180deg, transparent, var(--gold), transparent);
}

.processo-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 2.5rem;
    padding: 2rem 0;
    align-items: start;
    position: relative;
}

.processo-step .step-num {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--cream);
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--serif);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--gold);
    position: relative;
    z-index: 1;
}

.processo-step h3 {
    margin-bottom: 0.75rem;
    font-size: 1.625rem;
}

.processo-step p {
    color: var(--text-dim);
    font-size: 1rem;
    line-height: 1.7;
}

/* CTA Final
   ========================================================================== */
.cta-final {
    position: relative;
    padding: 9rem 2rem;
    background: linear-gradient(135deg, var(--cream-2) 0%, var(--cream-3) 100%);
    text-align: center;
    overflow: hidden;
    border-top: 1px solid var(--border);
}

.cta-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 50%, rgba(184, 148, 90, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 70% 50%, rgba(184, 148, 90, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.cta-final > * {
    position: relative;
    z-index: 1;
}

.cta-final .eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.75rem;
    font-weight: 500;
}

.cta-final h2 {
    max-width: 720px;
    margin: 0 auto 1.75rem;
    font-size: clamp(2.25rem, 5.5vw, 4rem);
}

.cta-final h2 em {
    font-style: italic;
    color: var(--gold);
}

.cta-final p {
    max-width: 560px;
    margin: 0 auto 3rem;
    color: var(--text-dim);
    font-size: 1.0625rem;
}

.cta-final .btn-primary {
    padding: 1.25rem 3rem;
    font-size: 1rem;
}

/* Footer
   ========================================================================== */
footer {
    background: var(--dark);
    color: var(--cream);
    padding: 5rem 4rem 2.5rem;
}

footer .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 5rem;
    max-width: 1280px;
    margin: 0 auto 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(184, 148, 90, 0.15);
}

footer .footer-brand .logo {
    font-family: var(--serif);
    font-size: 1.75rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    color: var(--cream);
    display: inline-block;
    margin-bottom: 1.5rem;
}

footer .footer-brand .logo span {
    color: var(--gold);
    font-style: italic;
}

footer .footer-brand p {
    color: rgba(250, 247, 242, 0.6);
    font-size: 0.9375rem;
    line-height: 1.7;
    max-width: 380px;
}

footer .footer-col h4 {
    color: var(--gold);
    font-family: var(--sans);
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

footer .footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

footer .footer-col a {
    color: rgba(250, 247, 242, 0.7);
    font-size: 0.9375rem;
    transition: color var(--transition);
}

footer .footer-col a:hover {
    color: var(--gold);
}

footer .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 1rem;
}

footer .footer-bottom p {
    color: rgba(250, 247, 242, 0.45);
    font-size: 0.8125rem;
    letter-spacing: 0.02em;
}

@media (max-width: 968px) {
    footer { padding: 4rem 1.5rem 2rem; }
    footer .footer-top { grid-template-columns: 1fr; gap: 3rem; }
    footer .footer-bottom { flex-direction: column; text-align: center; }
}

/* Reveal animations (scroll)
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, transform;
}

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

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    .reveal, .reveal-left, .reveal-right {
        opacity: 1;
        transform: none;
    }
}

/* Utilities
   ========================================================================== */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.italic { font-style: italic; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* Responsive
   ========================================================================== */
@media (max-width: 720px) {
    section { padding: 4.5rem 1.25rem; }
    .quote-section { padding: 6rem 1.25rem; }
    .cta-final { padding: 6rem 1.25rem; }
    .hero { padding: 7rem 1.25rem 3rem; }
    .hero .cta-group { flex-direction: column; align-items: stretch; }
    .btn { justify-content: center; }
}

/* ==========================================================================
   Additional Component Styles for Index Template
   ========================================================================== */

/* Hero Extended
   ========================================================================== */
.hero-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(250, 247, 242, 0.92) 0%,
        rgba(243, 237, 227, 0.85) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    margin: 0 auto;
}

.hero-label {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero-sub {
    max-width: 640px;
    margin: 0 auto 3rem;
    font-size: 1.125rem;
    color: var(--text-dim);
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons Extended
   ========================================================================== */
.btn-dark {
    background: var(--dark);
    color: var(--cream);
    border: 1px solid var(--dark);
}

.btn-dark:hover {
    background: var(--gold);
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--dark);
    border: 1px solid var(--border-strong);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-outline-light {
    background: transparent;
    color: var(--cream);
    border: 1px solid rgba(250, 247, 242, 0.4);
}

.btn-outline-light:hover {
    background: var(--cream);
    color: var(--dark);
    border-color: var(--cream);
}

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

/* Problema Extended
   ========================================================================== */
.problema .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.problema-visual {
    position: relative;
}

.problema-visual img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: var(--shadow-lg);
}

.problema-stat {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: var(--cream);
    padding: 2rem 2.5rem;
    border-radius: 4px;
    border: 1px solid var(--gold);
    box-shadow: var(--shadow-lg);
    text-align: center;
    min-width: 200px;
}

.problema-stat-num {
    display: block;
    font-family: var(--serif);
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.problema-stat-text {
    display: block;
    font-size: 0.8125rem;
    color: var(--text);
    line-height: 1.4;
}

.problema-content {
    padding: 2rem 0;
}

.insight-box {
    margin-top: 2.5rem;
    padding: 2rem 2.5rem;
    background: var(--cream-2);
    border-left: 3px solid var(--gold);
    border-radius: 0 4px 4px 0;
}

.insight-box p {
    font-family: var(--serif);
    font-size: 1.125rem;
    font-style: italic;
    color: var(--dark);
    line-height: 1.6;
    margin: 0;
}

h2.display {
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    line-height: 1.1;
}

/* Servicos Extended
   ========================================================================== */
.servicos-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.servicos-header h2 {
    margin-bottom: 1.5rem;
}

.servicos-header h2 em {
    font-style: italic;
    color: var(--gold);
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.servico {
    position: relative;
}

.servico-tag {
    display: inline-block;
    font-size: 0.6875rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 1rem;
}

.servico-num-bg {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-family: var(--serif);
    font-size: 5rem;
    font-style: italic;
    color: var(--cream-3);
    line-height: 1;
    z-index: 0;
    opacity: 0.5;
}

.servico h3 {
    position: relative;
    z-index: 1;
}

.servico-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    letter-spacing: 0.1em;
    color: var(--gold);
    font-weight: 500;
    margin-top: 1.5rem;
    transition: transform var(--transition);
}

.servico:hover .servico-link {
    transform: translateX(6px);
}

/* Quote Extended
   ========================================================================== */
.quote-section {
    position: relative;
}

.quote-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.quote-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(28, 23, 20, 0.92) 0%, 
        rgba(42, 35, 32, 0.88) 100%);
    z-index: 1;
}

.quote-content {
    position: relative;
    z-index: 2;
    max-width: 880px;
    margin: 0 auto;
}

.quote-mark {
    display: block;
    font-family: var(--serif);
    font-size: 8rem;
    line-height: 1;
    color: var(--gold);
    opacity: 0.3;
    font-style: italic;
    margin-bottom: -3rem;
    text-align: center;
}

.quote-content blockquote {
    font-family: var(--serif);
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    font-style: italic;
    font-weight: 300;
    line-height: 1.4;
    color: var(--cream);
    text-align: center;
    margin-bottom: 2.5rem;
}

.quote-content blockquote em {
    color: var(--gold);
}

.quote-attr {
    display: block;
    text-align: center;
    font-family: var(--sans);
    font-size: 0.8125rem;
    letter-spacing: 0.15em;
    color: var(--gold);
    font-style: normal;
    font-weight: 500;
}

/* Numeros Extended
   ========================================================================== */
.numeros-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: start;
    margin-top: 4rem;
}

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

.numeros-text {
    padding: 2rem 0;
}

.numeros-text p {
    margin-bottom: 1.5rem;
    color: var(--text-dim);
    font-size: 1rem;
    line-height: 1.7;
}

.numeros-text .btn {
    margin-top: 1rem;
}

@media (max-width: 968px) {
    .numeros-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .numeros-grid {
        grid-template-columns: 1fr;
    }
}

/* Nichos Extended
   ========================================================================== */
.nichos-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.nichos-left h2 {
    margin-bottom: 1.5rem;
}

.nichos-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2.5rem;
}

.ntag {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 0.875rem;
    color: var(--text);
    transition: all var(--transition);
}

.ntag:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.nichos-right {
    display: flex;
    align-items: stretch;
}

.nichos-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 550px;
    border-radius: 4px;
    box-shadow: var(--shadow-lg);
}

/* Reputacao Extended
   ========================================================================== */
.reputacao {
    position: relative;
    padding: 9rem 2rem;
    text-align: center;
}

.reputacao-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.reputacao-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(28, 23, 20, 0.85) 0%, 
        rgba(42, 35, 32, 0.90) 100%);
    z-index: 1;
}

.reputacao-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    margin: 0 auto;
}

.reputacao-content h2 {
    color: var(--cream);
    margin-bottom: 2rem;
}

.reputacao-content p {
    color: rgba(250, 247, 242, 0.85);
    font-size: 1.0625rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.reputacao-content .btn {
    margin-top: 1.5rem;
}

/* Processo Extended
   ========================================================================== */
.processo-steps {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 4rem;
}

.proc-step {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 2.5rem;
    align-items: start;
}

.proc-step-num {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--cream-2);
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--serif);
    font-size: 2rem;
    font-style: italic;
    color: var(--gold);
    flex-shrink: 0;
}

.proc-step-content h3 {
    margin-bottom: 0.75rem;
    font-size: 1.75rem;
}

.proc-step-content p {
    color: var(--text-dim);
    font-size: 1rem;
    line-height: 1.7;
}

@media (max-width: 720px) {
    .proc-step {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    .proc-step-num {
        margin: 0 auto;
    }
}

/* CTA Final Extended
   ========================================================================== */
.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.cta-left h2 {
    margin-bottom: 1.5rem;
}

.cta-left p {
    color: var(--text-dim);
    font-size: 1.0625rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.cta-form {
    background: var(--cream);
    padding: 3rem 2.5rem;
    border-radius: 4px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
}

.form-group input {
    width: 100%;
    padding: 0.875rem 1.25rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-family: var(--sans);
    font-size: 0.9375rem;
    color: var(--text);
    background: var(--cream);
    transition: border-color var(--transition);
}

.form-group input:focus {
    outline: none;
    border-color: var(--gold);
}

.form-group input::placeholder {
    color: var(--text-dim);
    opacity: 0.6;
}

.form-note {
    font-size: 0.75rem;
    color: var(--text-dim);
    line-height: 1.5;
    margin-top: 1rem;
    text-align: center;
}

.form-note a {
    color: var(--gold);
    text-decoration: underline;
}

@media (max-width: 968px) {
    .cta-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* Section Label
   ========================================================================== */
.section-label {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.25rem;
    font-weight: 500;
}
