/* ==========================================================================
   DESIGN SYSTEM & CUSTOM STYLING - Ulocal
   ========================================================================== */

/* Variáveis do CSS */
:root {
    --bg-deep: #070708;
    --bg-card: #121214;
    --bg-card-hover: #17171c;
    --gold: #D4AF37;
    --gold-hover: #bda032;
    --gold-light: #C5A880;
    --gold-glow: rgba(212, 175, 55, 0.15);
    --gold-glow-strong: rgba(212, 175, 55, 0.4);
    --white: #FFFFFF;
    --text-primary: #F3F4F6;
    --text-secondary: #9CA3AF;
    --text-muted: #6B7280;
    --border: rgba(255, 255, 255, 0.05);
    --border-gold: rgba(212, 175, 55, 0.15);
    --border-gold-hover: rgba(212, 175, 55, 0.4);
    
    --ff-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --ff-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
}

/* Reset Geral e Acessibilidade */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-deep);
    color: var(--text-primary);
    font-family: var(--ff-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--ff-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

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

button {
    font-family: inherit;
    background: none;
    border: none;
    cursor: pointer;
}

ul {
    list-style: none;
}

/* Utilitários */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.title-bar {
    width: 60px;
    height: 3px;
    background-color: var(--gold);
    margin: 16px auto 32px auto;
}

/* Botões */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 8px;
    font-family: var(--ff-heading);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
    transition: var(--transition-smooth);
    text-transform: uppercase;
}

.btn-gold {
    background-color: var(--gold);
    color: var(--bg-deep);
    box-shadow: 0 4px 20px var(--gold-glow);
}

.btn-gold:hover {
    background-color: var(--gold-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px var(--gold-glow-strong);
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--border-gold);
    transition: var(--transition-smooth);
}

.btn-outline:hover {
    border-color: var(--gold);
    background-color: rgba(212, 175, 55, 0.08);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px var(--gold-glow);
}

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

/* Header / Navegação */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(7, 7, 8, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition-smooth);
}

.header-container {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-link {
    display: flex;
    align-items: center;
}

.header-logo {
    max-height: 50px;
    object-fit: contain;
    border-radius: 4px;
}

.main-nav {
    display: none; /* Mobile First: oculto por padrão */
}

.nav-list {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-family: var(--ff-heading);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    position: relative;
    padding: 8px 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-header {
    padding: 10px 18px;
    font-size: 0.8rem;
}

.icon-wpp {
    transition: var(--transition-fast);
}

.btn-header:hover .icon-wpp {
    transform: rotate(15deg) scale(1.1);
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    z-index: 101;
}

.mobile-menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--white);
    transition: var(--transition-fast);
}

/* Hamburguer 'X' Morphing */
.mobile-menu-toggle.toggle-active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.toggle-active .bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.toggle-active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Nav Overlay */
.main-nav.mobile-active {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(7, 7, 8, 0.98);
    padding: 120px 24px 24px 24px;
    z-index: 100;
    animation: fadeIn 0.3s ease;
}

.main-nav.mobile-active .nav-list {
    flex-direction: column;
    gap: 20px; /* Redução do espaçamento vertical exagerado */
    align-items: center;
    justify-content: center;
}

.main-nav.mobile-active .nav-list li {
    text-align: center;
    width: 100%;
}

.main-nav.mobile-active .nav-link {
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 6px 0;
}

/* Hero Section */
.hero-section {
    padding-top: 140px;
    padding-bottom: 60px;
    background: radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 60%),
                radial-gradient(circle at 10% 80%, rgba(18, 18, 20, 0.8) 0%, transparent 50%);
    position: relative;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-h1 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid var(--border-gold);
    color: var(--gold-light);
    font-family: var(--ff-heading);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.diamond-icon {
    color: var(--gold);
}

.hero-title {
    font-size: 2.2rem;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 24px;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 16px;
    border-left: 2px solid var(--gold);
    padding-left: 16px;
}

.hero-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 36px;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    width: 100%;
}

.hero-ctas .btn {
    width: 100%; /* Botões cheios no mobile */
}

/* Hero Visual (Mockup Card) */
.hero-visual {
    width: 100%;
    display: flex;
    justify-content: center;
}

.glow-container {
    position: relative;
    width: 100%;
    max-width: 480px;
}

.blur-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    background: radial-gradient(circle, var(--gold-glow-strong) 0%, transparent 60%);
    filter: blur(40px);
    z-index: 1;
    pointer-events: none;
    opacity: 0.7;
}

.visual-card {
    position: relative;
    z-index: 2;
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.card-header {
    background-color: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid var(--border);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.dot.red { background-color: #EF4444; }
.dot.yellow { background-color: #F59E0B; }
.dot.green { background-color: #10B981; }

.card-title {
    font-family: var(--ff-heading);
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-left: 8px;
}

.card-body {
    padding: 24px;
}

/* Transição do card rotativo no Hero */
.fade-transition {
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-transition.fade-out {
    opacity: 0;
    transform: translateY(8px);
}

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

.status-indicator.warning {
    color: var(--gold);
}

.warning-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.status-texts h3 {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 6px;
}

.status-texts p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.card-divider {
    border: 0;
    height: 1px;
    background-color: var(--border);
    margin: 20px 0;
}

.metrics-grid-mini {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.metric-item-mini {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.metric-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.metric-val {
    font-size: 1.3rem;
    font-family: var(--ff-heading);
    font-weight: 700;
}

.metric-val.down {
    color: #EF4444;
}

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

.action-text {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-style: italic;
}

.action-btn {
    display: block;
    width: 100%;
    text-align: center;
    background-color: rgba(212, 175, 55, 0.08);
    border: 1px solid var(--border-gold);
    color: var(--gold-light);
    padding: 12px;
    border-radius: 6px;
    font-family: var(--ff-heading);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    transition: var(--transition-smooth);
}

.action-btn:hover {
    background-color: var(--gold);
    color: var(--bg-deep);
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.25);
}

/* Barra de Indicadores */
.indicators-bar {
    margin-top: 60px;
    border-top: 1px solid var(--border);
    padding-top: 40px;
}

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

.indicator-box {
    text-align: center;
    padding: 16px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.indicator-number {
    font-family: var(--ff-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 6px;
}

.indicator-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
}

/* Seções Padrão */
.problem-section,
.solutions-section,
.cases-section,
.method-section,
.about-section,
.ai-section,
.testimonials-section,
.faq-section,
.contact-section {
    padding: 80px 0;
    border-bottom: 1px solid var(--border);
}

.section-header {
    max-width: 760px;
    margin: 0 auto 48px auto;
}

.section-subtitle {
    font-family: var(--ff-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--gold);
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-size: 1.8rem;
    color: var(--white);
    text-transform: uppercase;
}

.section-lead {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* O Problema - Grid */
.problem-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.problem-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 32px;
    transition: var(--transition-smooth);
}

.problem-card:hover {
    border-color: var(--border-gold-hover);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

.problem-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background-color: rgba(212, 175, 55, 0.08);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.problem-card h3 {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 12px;
}

.problem-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Soluções - Cards */
.solutions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.solution-card {
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(20, 20, 24, 0.9) 100%);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), transparent);
    opacity: 0;
    transition: var(--transition-fast);
}

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

.solution-card:hover {
    border-color: var(--border-gold-hover);
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
}

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

.solution-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background-color: rgba(212, 175, 55, 0.06);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.solution-icon-img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: var(--transition-smooth);
}

.solution-card:hover .solution-icon {
    background-color: var(--gold);
    color: var(--bg-deep);
}

.solution-card:hover .solution-icon-img {
    filter: brightness(0);
}

.solution-header h3 {
    font-size: 1.2rem;
    color: var(--white);
}

.solution-description {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    min-height: 60px;
}

.solution-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--ff-heading);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gold-light);
}

.solution-cta svg {
    transition: var(--transition-fast);
}

.solution-card:hover .solution-cta {
    color: var(--gold);
}

.solution-card:hover .solution-cta svg {
    transform: translateX(4px);
}

/* Casos Reais - Tabs & Grid */
.cases-tabs-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
    justify-content: center;
}

.case-tab-btn {
    padding: 10px 18px;
    font-family: var(--ff-heading);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-secondary);
    border: 1px solid var(--border);
    border-radius: 50px;
    transition: var(--transition-fast);
}

.case-tab-btn:hover {
    border-color: var(--gold-light);
    color: var(--white);
}

.case-tab-btn.active {
    background-color: var(--gold);
    border-color: var(--gold);
    color: var(--bg-deep);
}

.cases-panels-wrapper {
    position: relative;
}

.case-panel {
    display: none;
    animation: fadeIn 0.5s ease;
}

.case-panel.active {
    display: block;
}

.case-grid {
    background-color: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: 16px;
    padding: 32px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.case-meta {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 24px;
}

.case-segment {
    font-family: var(--ff-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    border-left: 3px solid var(--gold);
    padding-left: 12px;
}

.case-stat-badge {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
    border: 1px solid var(--border-gold);
    padding: 16px 24px;
    border-radius: 12px;
    display: inline-flex;
    flex-direction: column;
    align-self: flex-start;
}

.case-stat-badge .stat-num {
    font-family: var(--ff-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}

.case-stat-badge .stat-txt {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    margin-top: 4px;
}

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

.detail-block h3 {
    font-size: 0.95rem;
    color: var(--gold-light);
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: 0.05em;
}

.detail-block p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.detail-block.highlight {
    background-color: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border);
    padding: 20px;
    border-radius: 8px;
}

.detail-block.highlight h3 {
    color: var(--gold);
}

.detail-block.highlight p {
    color: var(--white);
    font-weight: 500;
}

/* Método - Timeline */
.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 40px auto 0 auto;
    padding-left: 32px;
}

.timeline-line {
    position: absolute;
    top: 0;
    left: 15px;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, var(--gold) 0%, var(--border) 80%, transparent 100%);
}

.timeline-item {
    position: relative;
    margin-bottom: 48px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -32px;
    top: 4px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--bg-deep);
    border: 2px solid var(--gold);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ff-heading);
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 2;
    transition: var(--transition-smooth);
}

.timeline-item:hover .timeline-dot {
    background-color: var(--gold);
    color: var(--bg-deep);
    box-shadow: 0 0 15px var(--gold-glow-strong);
}

.timeline-content {
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    transition: var(--transition-smooth);
}

.timeline-content:hover {
    border-color: var(--border-gold);
    transform: translateX(4px);
}

.timeline-phase {
    font-family: var(--ff-heading);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    display: block;
    margin-bottom: 4px;
}

.timeline-content h3 {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Sobre Anna */
.about-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
}

.about-image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
    filter: blur(30px);
    z-index: 1;
}

.about-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    border: 1px solid var(--border-gold);
    position: relative;
    z-index: 2;
    box-shadow: 0 16px 32px rgba(0,0,0,0.6);
}

/* Carousel no Sobre */
.about-carousel {
    position: relative;
    width: 100%;
    height: 480px;
    border-radius: 16px;
    border: 1px solid var(--border-gold);
    z-index: 2;
    box-shadow: 0 16px 32px rgba(0,0,0,0.6);
    overflow: hidden;
}

@media (min-width: 768px) {
    .about-carousel {
        height: 540px;
    }
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    z-index: 1;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 2;
}

.carousel-slide .about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
    box-shadow: none;
}

.carousel-caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: auto;
    max-width: calc(100% - 240px); /* Garante espaço livre para o badge à direita */
    background: rgba(18, 18, 20, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--border);
    border-left: 3px solid var(--gold);
    padding: 8px 16px;
    text-align: left;
    color: var(--text-primary);
    font-size: 0.8rem;
    font-weight: 500;
    z-index: 3;
    font-family: var(--ff-body);
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-gold);
    padding: 12px 20px;
    border-radius: 8px;
    z-index: 3;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    display: flex;
    flex-direction: column;
}

.about-badge .badge-role {
    font-family: var(--ff-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--white);
}

.about-badge .badge-title {
    font-size: 0.75rem;
    color: var(--gold);
    text-transform: uppercase;
    font-weight: 600;
}

.about-content {
    display: flex;
    flex-direction: column;
}

.about-content p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.about-lead {
    font-family: var(--ff-heading);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 20px;
    border-left: 2px solid var(--gold);
    padding-left: 16px;
}

.professional-experience {
    margin-top: 24px;
    background-color: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border);
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 24px;
}

.professional-experience h3 {
    font-size: 1rem;
    color: var(--gold-light);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.experience-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.check-icon {
    color: var(--gold);
    font-weight: bold;
    flex-shrink: 0;
}

.quote-box {
    background-color: rgba(255, 255, 255, 0.01);
    border-left: 3px solid var(--gold);
    padding: 20px;
    margin: 24px 0;
    border-radius: 0 8px 8px 0;
}

.quote-text {
    font-family: var(--ff-heading);
    font-size: 1.05rem;
    font-style: italic;
    color: var(--white) !important;
    line-height: 1.5;
    margin-bottom: 8px;
}

.quote-author {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--gold-light);
    font-weight: 600;
}

.about-credentials {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--white);
    font-weight: 500;
}

.cred-icon {
    color: var(--gold);
    flex-shrink: 0;
}

/* Buscas e IA */
.ai-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

.ai-content p {
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.ai-content .highlight-text {
    font-size: 1.05rem;
    color: var(--white);
    font-weight: 500;
    border-left: 2px solid var(--gold);
    padding-left: 16px;
}

.ai-visual {
    width: 100%;
    display: flex;
    justify-content: center;
}

.ai-card {
    position: relative;
    width: 100%;
    max-width: 440px;
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 16px 32px rgba(0,0,0,0.5);
    overflow: hidden;
}

.ai-card-glow {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
    pointer-events: none;
}

.ai-query {
    display: flex;
    gap: 12px;
    align-items: center;
}

.query-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--gold);
    color: var(--bg-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ff-heading);
    font-weight: 800;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.query-text {
    font-size: 0.85rem;
    color: var(--white);
    font-style: italic;
}

.ai-divider {
    border: 0;
    height: 1px;
    background-color: var(--border);
    margin: 16px 0;
}

.ai-response-mock {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.ai-badge {
    font-family: var(--ff-heading);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
}

.match-rate {
    font-size: 0.75rem;
    color: #10B981;
    font-weight: 600;
}

.response-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.response-text strong {
    color: var(--white);
}

/* Depoimentos */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.testimonial-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-4px);
}

.stars {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author h3 {
    font-size: 0.95rem;
    color: var(--white);
    margin-bottom: 2px;
}

.testimonial-author span {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

/* FAQ Accordion */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition-fast);
}

.faq-item:hover {
    border-color: var(--border-gold);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    text-align: left;
    color: var(--white);
    font-family: var(--ff-heading);
    font-size: 1.05rem;
    font-weight: 600;
}

.faq-icon-toggle {
    color: var(--gold);
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer-inner {
    padding: 0 24px 24px 24px;
    border-top: 1px solid transparent;
}

.faq-answer p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.faq-item.active {
    border-color: var(--border-gold);
}

.faq-item.active .faq-icon-toggle {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    max-height: 200px; /* Ajustável dinamicamente pelo JS */
}

/* CTA Final */
.final-cta-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
}

.final-cta-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.final-cta-content h2 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 16px;
}

.final-cta-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.final-cta-content .final-cta-sub {
    font-size: 0.95rem;
    color: var(--gold-light);
    margin-bottom: 36px;
    font-weight: 500;
}

/* Contato & Localização */
.contact-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

.contact-description {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.address-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

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

.address-icon {
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 4px;
}

.address-text h3 {
    font-size: 0.95rem;
    color: var(--white);
    margin-bottom: 4px;
    text-transform: uppercase;
}

.address-text p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.map-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-gold);
    height: 350px;
    box-shadow: 0 16px 32px rgba(0,0,0,0.5);
}

.embed-map {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(1) invert(0.9) contrast(1.1) brightness(0.85);
    transition: var(--transition-smooth);
}

.embed-map:hover {
    filter: none;
}

/* Elementos de Exibição de Resposta de IA Realista */
.ai-results-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.ai-result-item-mini {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.8rem;
    color: var(--white);
    transition: var(--transition-fast);
}

.ai-result-item-mini:hover {
    border-color: var(--border-gold);
    background-color: rgba(212, 175, 55, 0.02);
}

.ai-item-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--gold);
    flex-shrink: 0;
}

/* Rodapé (Footer) */
.main-footer {
    background-color: #040405;
    padding: 80px 0 30px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.footer-logo {
    max-height: 48px;
    object-fit: contain;
    border-radius: 4px;
}

.footer-slogan {
    font-size: 0.85rem;
    color: var(--text-secondary);
    max-width: 280px;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
}

.social-icon-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background-color: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.social-icon-btn:hover {
    background-color: var(--gold);
    border-color: var(--gold);
    color: var(--bg-deep);
    transform: translateY(-2px);
}

/* Fallback texto para links sem SVG */
.social-icon-btn[title] {
    width: auto;
    padding: 0 12px;
}

.label-link {
    font-family: var(--ff-heading);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.footer-links h3,
.footer-legal h3 {
    font-size: 0.9rem;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}

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

.footer-links a {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 4px;
}

.footer-legal p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 12px;
}

.atendimento-loc {
    color: var(--gold-light) !important;
    font-weight: 500;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 30px;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Botão Flutuante WhatsApp */
.whatsapp-floating {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: transparent;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wpp-floating-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    transition: var(--transition-smooth);
}

.whatsapp-floating:hover .wpp-floating-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

/* Animações Keyframes */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}

.animate-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-up.in-view {
    opacity: 1;
    transform: translateY(0);
}

.animate-pulse {
    animation: pulse 3s infinite ease-in-out;
}

/* ==========================================================================
   MÍDIA QUERIES - RESPONSIVIDADE (DESKTOP)
   ========================================================================== */

@media (min-width: 768px) {
    /* Tipografia Ampliada */
    .hero-title {
        font-size: 3.2rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    /* Layouts Multicolunas */
    .problem-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .indicators-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .case-grid {
        grid-template-columns: 320px 1fr;
    }
    
    .case-details {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .case-details .detail-block.highlight {
        grid-column: span 2;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    /* Menu Principal Desktop */
    .main-nav {
        display: block;
    }
    
    .mobile-menu-toggle {
        display: none;
    }
    
    /* Hero e Seções Divididas */
    .hero-container {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 60px;
    }
    
    .hero-ctas .btn {
        width: auto;
    }
    
    .about-container {
        grid-template-columns: 0.9fr 1.1fr;
        gap: 60px;
    }
    
    .ai-container {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
    
    .contact-container {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 60px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .solutions-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    /* Timeline Estilo Alternado */
    .timeline-container {
        padding-left: 0;
    }
    
    .timeline-line {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .timeline-item {
        display: flex;
        justify-content: space-between;
        margin-bottom: 60px;
    }
    
    .timeline-item:nth-child(even) {
        flex-direction: row-reverse;
    }
    
    .timeline-dot {
        left: 50%;
        transform: translateX(-50%);
        top: 20px;
    }
    
    .timeline-content {
        width: 45%;
    }
}

/* Ajustes Finais Ulocal */
.btn-community {
    border-color: var(--border-gold);
    background-color: rgba(212, 175, 55, 0.02);
}

.btn-community:hover {
    border-color: var(--gold);
    background-color: var(--gold);
    color: var(--bg-deep);
}

.highlight-secondary {
    background-color: rgba(212, 175, 55, 0.02);
    border: 1px dashed var(--border-gold);
    padding: 16px 20px;
    border-radius: 8px;
    margin-top: 16px;
}

.case-complementary-text {
    font-size: 0.85rem;
    color: var(--gold-light);
    font-style: italic;
    line-height: 1.5;
}

/* ==========================================================================
   INTEGRAÇÃO DA CALCULADORA - NOVO MENU, SEÇÕES E CTAS
   ========================================================================== */

/* Dropdown styles for header */
.nav-item-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: 8px;
    padding: 12px 16px;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-smooth);
    z-index: 1100;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.dropdown-menu li {
    margin-bottom: 8px;
}

.dropdown-menu li:last-child {
    margin-bottom: 0;
}

.dropdown-menu a {
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: block;
    padding: 6px 0;
    text-transform: none;
    letter-spacing: 0;
    transition: var(--transition-fast);
}

.dropdown-menu a:hover {
    color: var(--gold);
    padding-left: 4px;
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.arrow-down {
    font-size: 0.65rem;
    margin-left: 4px;
    vertical-align: middle;
    color: var(--text-muted);
}

/* Mobile dropdown adjustments (Accordion) */
@media (max-width: 991px) {
    .dropdown-menu {
        position: static;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transform: none;
        background: transparent;
        border: none;
        padding: 0;
        box-shadow: none;
        min-width: auto;
        display: block;
        text-align: center;
        transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
    }
    
    .nav-item-dropdown.dropdown-active .dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 100px;
        padding-top: 8px;
        padding-bottom: 8px;
    }
    
    .dropdown-menu a {
        font-size: 1.05rem;
        color: var(--text-secondary);
        text-transform: none; /* Reset de maiúsculas para melhor legibilidade */
        letter-spacing: 0.02em;
        display: inline-block;
        padding: 6px 12px;
        font-family: var(--ff-body);
        font-weight: 500;
    }
    
    .arrow-down {
        display: inline-block !important; /* Força exibição da seta no mobile */
        transition: transform 0.25s ease;
    }
    
    .nav-item-dropdown.dropdown-active .arrow-down {
        transform: rotate(180deg);
    }
}

/* Seção de Ferramentas Gratuitas */
.tools-section {
    padding: 80px 0;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.04) 0%, rgba(7, 7, 8, 0) 70%);
    border-top: 1px solid var(--border);
    position: relative;
}

.tools-grid {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.tool-card {
    max-width: 480px;
    width: 100%;
    position: relative;
    border-radius: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    padding: 32px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    transition: var(--transition-smooth);
    overflow: hidden;
}

.tool-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.08), 0 0 20px var(--gold-glow);
}

.tool-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.03) 0%, transparent 60%);
    pointer-events: none;
}

.tool-card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.tool-icon-wrapper {
    position: relative;
    margin-bottom: 20px;
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid var(--border-gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tool-star-icon {
    position: absolute;
    top: -6px;
    right: -6px;
    font-size: 0.8rem;
}

.tool-google-icon {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}

.tool-card h3 {
    font-size: 1.35rem;
    color: var(--white);
    margin-bottom: 12px;
    font-family: var(--ff-heading);
}

.tool-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 28px;
    min-height: 48px;
}

.btn-tool {
    width: 100%;
    max-width: 220px;
    font-size: 0.85rem;
    padding: 12px 24px;
}


