/* ========== Millennium CRM – Design futurista (refatorado) ========== */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

/* Variáveis – modo escuro (padrão): preto + branco + #00ffff */
:root {
    --accent: #00ffff;
    --bg: #0a0a0f;
    --bg-secondary: rgba(0, 0, 0, 0.3);
    --bg-card: rgba(255, 255, 255, 0.02);
    --bg-card-hover: rgba(255, 255, 255, 0.05);
    --text: #ffffff;
    --text-muted: #a0a0a0;
    --text-inverse: #0a0a0f;
    --accent-secondary: #ffffff;
    --border: rgba(0, 255, 255, 0.1);
    --border-accent: rgba(0, 255, 255, 0.2);
    --shadow-accent: rgba(0, 255, 255, 0.3);
    --shadow-accent-strong: rgba(0, 255, 255, 0.5);
    --header-bg: rgba(10, 10, 15, 0.8);
    --input-bg: rgba(0, 0, 0, 0.3);
}

/* Modo claro */
[data-theme="light"] {
    --bg: #f5f5f7;
    --bg-secondary: rgba(0, 0, 0, 0.05);
    --bg-card: rgba(0, 0, 0, 0.03);
    --bg-card-hover: rgba(0, 0, 0, 0.06);
    --text: #0a0a0f;
    --text-muted: #555555;
    --text-inverse: #ffffff;
    --accent-secondary: #0a0a0f;
    --border: rgba(0, 255, 255, 0.25);
    --border-accent: rgba(0, 255, 255, 0.4);
    --shadow-accent: rgba(0, 255, 255, 0.25);
    --shadow-accent-strong: rgba(0, 255, 255, 0.4);
    --header-bg: rgba(245, 245, 247, 0.9);
    --input-bg: rgba(255, 255, 255, 0.8);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    position: relative;
    transition: background-color 0.3s, color 0.3s;
}

/* Efeito de fundo com partículas */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

/* Grid futurista */
.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 1;
}

[data-theme="light"] .grid-overlay {
    background-image:
        linear-gradient(rgba(0, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 255, 0.08) 1px, transparent 1px);
}

[data-theme="light"] .floating-card-inner {
    background: linear-gradient(135deg, rgba(0,255,255,0.15), rgba(0,255,255,0.08));
}

[data-theme="light"] .dashboard-mock {
    background: linear-gradient(135deg, rgba(0,255,255,0.12), rgba(0,255,255,0.06));
}

/* Container principal */
.container {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
}

/* Header – transparente com efeito florescente */
header {
    padding: 30px 0;
    border-bottom: 1px solid var(--border-accent);
    position: sticky;
    top: 0;
    z-index: 100;
    background: transparent;
    box-shadow: 0 4px 30px var(--shadow-accent), 0 0 20px rgba(0, 255, 255, 0.15);
    transition: box-shadow 0.25s ease, opacity 0.25s ease;
}

header.header-faded {
    pointer-events: none;
    box-shadow: none;
    border-bottom-color: transparent;
}

.header-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 20px;
    transition: opacity 0.3s ease, filter 0.3s ease, text-shadow 0.3s ease;
}

.header-brand {
    display: flex;
    justify-content: center;
    width: 100%;
}

.header-nav-row {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 40px;
    flex-wrap: wrap;
}

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

/* Logo wrap: imagem + texto */
.logo-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-wrap-top {
    gap: 16px;
}

.logo-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border: none;
    background: transparent;
    padding: 0;
    transform-style: preserve-3d;
    transition: transform 0.3s;
}

.logo-wrap-top .logo-img {
    width: 45px;
    height: 45px;
}

.logo-img:hover {
    transform: translateY(-3px) scale(1.05);
}

.logo-wrap-footer .logo-img {
    width: 64px;
    height: 64px;
}

.logo-wrap-footer .logo {
    font-size: 22px;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 2px;
}

.logo-wrap-top .logo {
    font-size: 26px;
}

.logo span {
    background: linear-gradient(135deg, var(--accent-secondary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-pulse {
    animation: logo-pulse 2s ease-in-out infinite;
}

@keyframes logo-pulse {
    0%, 100% { opacity: 1; filter: drop-shadow(0 0 8px var(--shadow-accent)); }
    50% { opacity: 0.85; filter: drop-shadow(0 0 20px var(--shadow-accent)); }
}

nav {
    display: flex;
    gap: 40px;
    align-items: center;
}

nav a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    transition: 0.3s;
}

nav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent-secondary));
    transition: 0.3s;
}

nav a:hover::before {
    width: 100%;
}

.btn {
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
    position: relative;
    overflow: hidden;
    display: inline-block;
}

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

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
    color: var(--text-inverse);
    box-shadow: 0 0 20px var(--shadow-accent);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px var(--shadow-accent-strong);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
    box-shadow: 0 0 10px var(--shadow-accent);
}

.btn-outline:hover {
    background: rgba(0, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* Toggle tema escuro/claro */
.theme-toggle {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid var(--accent);
    background: var(--bg-card);
    color: var(--accent);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: all 0.3s;
}

.theme-toggle:hover {
    background: rgba(0, 255, 255, 0.1);
    box-shadow: 0 0 15px var(--shadow-accent);
}

.theme-toggle:focus {
    outline: none;
    box-shadow: 0 0 0 2px var(--accent);
}
.theme-toggle .fa {
    font-size: 1.0rem;
}

/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 30px 0;
    gap: 40px;
}

.hero-content {
    flex: 1;
}

.hero-title {
/*    font-size: 80px;*/
    font-size: 59px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
    position: relative;
}

.hero-title-line {
    display: block;
    overflow: hidden;
}

.hero-title .gradient-text {
    background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-image {
    flex: 1;
    position: relative;
}

.floating-card {
    background: var(--bg-card-hover);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-accent);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 0 50px var(--shadow-accent);
    animation: float 6s ease-in-out infinite;
    min-width: min(360px, 100%);
    max-width: 520px;
    width: 100%;
}

/* Dashboard mock – conteúdo do card */
.dashboard-mock {
    background: linear-gradient(135deg, rgba(0,255,255,0.08), rgba(255,255,255,0.03));
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 18px;
    color: var(--text);
}

.dashboard-mock-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.dashboard-mock-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.5px;
}

.dashboard-mock-title .fa {
    margin-right: 8px;
    opacity: 0.9;
}

.dashboard-mock-badge {
    font-size: 11px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
}

.dashboard-live-dot {
    font-size: 6px;
    color: #0f0;
    animation: dashboard-pulse 1.5s ease-in-out infinite;
}

@keyframes dashboard-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.dashboard-mock-kpis {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 16px;
}

.dashboard-kpi {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 12px 10px;
    text-align: center;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    cursor: default;
}

.dashboard-kpi:hover {
    transform: scale(1.05);
    border-color: var(--accent);
    box-shadow: 0 4px 20px var(--shadow-accent);
}

.dashboard-kpi:hover .dashboard-kpi-value {
    color: var(--accent-secondary);
}

.dashboard-kpi-value {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: var(--accent);
    line-height: 1.2;
}

.dashboard-kpi-label {
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dashboard-mock-chart {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 56px;
    margin-bottom: 14px;
    padding: 8px 0;
}

.dashboard-chart-bar {
    flex: 1;
    min-width: 0;
    height: var(--h, 50%);
    max-height: 100%;
    background: linear-gradient(180deg, var(--accent), var(--accent-secondary));
    border-radius: 6px 6px 0 0;
    opacity: 0.85;
    transition: height 0.3s ease, transform 0.25s ease, opacity 0.25s ease;
    cursor: default;
}

.dashboard-chart-bar:hover {
    transform: scaleY(1.08);
    transform-origin: bottom;
    opacity: 1;
}

.dashboard-mock-activity {
    border-top: 1px solid var(--border);
    padding-top: 12px;
}

.dashboard-activity-item {
    font-size: 11px;
    color: var(--text-muted);
    padding: 8px 10px;
    margin: 0 -10px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
    cursor: default;
}

.dashboard-activity-item:hover {
    background: rgba(0, 255, 255, 0.08);
    color: var(--text);
    transform: translateX(4px);
}

.dashboard-activity-item .fa {
    color: var(--accent);
    font-size: 10px;
    flex-shrink: 0;
}

.dashboard-activity-item .fa-check-circle { color: #0f0; }
.dashboard-activity-item .fa-clock-o { color: var(--accent); }
.dashboard-activity-item .fa-plus-circle { color: var(--accent-secondary); }

.floating-card-inner {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, rgba(0,255,255,0.1), rgba(255,255,255,0.05));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 18px;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.floating-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
    border-radius: 22px;
    z-index: -1;
    opacity: 0.3;
}

/* Stats Section */
.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 100px 0;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: 0.3s;
}

.stat-item:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: 0 0 30px var(--shadow-accent);
}

.stat-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0,255,255,0.1) 0%, transparent 70%);
    opacity: 0;
    transition: 0.3s;
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-number {
    font-size: 60px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
    position: relative;
}

.stat-label {
    font-size: 18px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Features Section */
.features {
   padding: 30px 0;
}

.section-title {
    text-align: center;
    font-size: 50px;
    margin-bottom: 80px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-secondary));
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}
@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.3s, filter 0.3s;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
}
.features-grid:hover .feature-card {
    filter: blur(4px);
}
.features-grid .feature-card:hover {
    filter: none;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(0,255,255,0.2), transparent);
    opacity: 0;
    transition: 0.3s;
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.08);
    border-color: var(--accent-secondary);
    box-shadow: 0 15px 50px var(--shadow-accent), 0 0 40px rgba(0, 255, 255, 0.2);
}

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

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(0,255,255,0.15), rgba(255,255,255,0.1));
    border: 1px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    font-size: 30px;
    position: relative;
    transition: 0.3s;
}
.feature-icon .fa {
    color: var(--accent);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    border-color: #ff00ff;
}

.feature-title {
    font-size: 24px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--text), var(--text-muted));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-desc {
    color: var(--text-muted);
    line-height: 1.6;
}

.feature-tag {
    display: inline-block;
    margin-top: 20px;
    padding: 5px 15px;
    background: rgba(0,255,255,0.1);
    border: 1px solid var(--accent);
    border-radius: 30px;
    font-size: 12px;
    color: var(--accent);
}

/* Plans / Benefícios em destaque */
.plans {
    padding: 100px 0;
    background: var(--bg-secondary);
    border-radius: 30px;
    margin: 50px 0;
}

.plans .section-lead {
    color: var(--text-muted);
    text-align: center;
    max-width: 560px;
    margin: 16px auto 0;
    line-height: 1.6;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.plan-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 30px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: 0.3s;
    backdrop-filter: blur(5px);
}

.plan-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: 0 0 50px var(--shadow-accent);
}

.plan-card.popular {
    border: 2px solid var(--accent-secondary);
    transform: scale(1.05);
}

.plan-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
    color: var(--text-inverse);
    padding: 5px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 12px;
}

.plan-name {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--text);
}

.plan-price {
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.plan-period {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.plan-features {
    list-style: none;
    margin-bottom: 30px;
}

.plan-features li {
    padding: 10px 0;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
}

.plan-features li:last-child {
    border-bottom: none;
}

/* O que é o Millennium CRM (acima de Soluções) */
.about-crm {
    padding: 30px 0;
    text-align: center;
}

.about-crm-lead {
    max-width: 720px;
    margin: 0 auto 50px;
    color: var(--text-muted);
    font-size: 18px;
    line-height: 1.8;
}

.about-crm-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}
@media (max-width: 600px) {
    .about-crm-grid {
        grid-template-columns: 1fr;
    }
}

/* Controle e Tecnologia (seção única, centralizada) */
.tech-section {
    padding: 100px 0;
    display: block;
}

.tech-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
}

.tech-content--center {
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
}

.tech-content--center .section-title {
    margin-bottom: 20px;
}

.tech-lead {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.tech-content h2 {
    font-size: 39px;
    margin-bottom: 30px;
    background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tech-content p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 18px;
    margin-bottom: 30px;
}

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

.tech-grid--center {
    max-width: 900px;
    margin: 0 auto;
    gap: 24px;
}
@media (max-width: 600px) {
    .tech-grid--center {
        grid-template-columns: 1fr;
    }
}

.tech-item {
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 15px;
    transition: 0.3s;
}

.tech-section .tech-item {
    padding: 28px 24px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.tech-item:hover {
    border-color: var(--accent-secondary);
}

.tech-section .tech-item:hover {
    box-shadow: 0 8px 30px var(--shadow-accent);
    border-color: var(--accent);
}

.tech-item h4 {
    color: var(--accent);
    margin-bottom: 10px;
    font-size: 18px;
}
.tech-item h4 .fa {
    margin-right: 8px;
}

.tech-item p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: 100px 8px;
    text-align: center;
    background: linear-gradient(135deg, rgba(0,255,255,0.1), rgba(255,255,255,0.05));
    border-radius: 30px;
    margin: 50px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

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

.cta-title {
    font-size: 50px;
    margin-bottom: 20px;
    position: relative;
}

.cta-text {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 18px;
    position: relative;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    position: relative;
}

/* Contato - formulário */
.contato-section {
    padding: 30px 0;
}

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

.contato-info .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.contato-info .section-title::after {
    left: 0;
    transform: none;
}

.contato-info .section-lead {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 30px;
}

.contato-canais p {
    color: var(--text-muted);
    margin-bottom: 10px;
}

.contato-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px;
}

.contato-form label {
    color: var(--text-muted);
    font-size: 14px;
}

.contato-form input,
.contato-form textarea {
    padding: 14px 18px;
    background: var(--input-bg);
    border: 1px solid var(--border-accent);
    border-radius: 10px;
    color: var(--text);
    font-family: inherit;
    font-size: 16px;
}

.contato-form input::placeholder,
.contato-form textarea::placeholder {
    color: var(--text-muted);
    opacity: 0.8;
}

.contato-form input:focus,
.contato-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 15px var(--shadow-accent);
}

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

/* Footer */
footer {
    padding: 80px 0 30px;
    border-top: 1px solid var(--border);
/*    margin-top: 100px;*/
}

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

.footer-col p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-top: 20px;
}

.footer-col h4 {
    color: var(--accent);
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: var(--accent-secondary);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    text-decoration: none;
    transition: 0.3s;
}

.social-link .fa {
    font-size: 1.1rem;
}
.social-link:hover {
    background: var(--accent);
    color: var(--text-inverse);
    border-color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
}

.footer-bottom p {
    margin: 0;
}

/* Reveal no scroll (mantido) */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Barra inferior fixa (opcional – estilo novo) */
.landing-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99;
    height: 52px;
    background: var(--header-bg);
    backdrop-filter: blur(40px);
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}

.landing-bottom-bar.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.landing-bottom-bar-inner {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bar-title-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.bar-logo-img {
    width: 52px;
    height: 52px;
    object-fit: contain;
    border: none;
    background: transparent;
    opacity: 1;
}

.landing-bottom-bar .bar-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text);
}

.landing-bottom-bar .bar-links {
    display: flex;
    gap: 24px;
}

.landing-bottom-bar .bar-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9375rem;
}

.landing-bottom-bar .bar-links a:hover {
    color: var(--accent);
}

.landing-bottom-bar .bar-cta {
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
    color: var(--text-inverse);
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
}

.landing-bottom-bar .bar-cta .fa {
    margin-right: 8px;
    font-size: 1.1em;
}

/* Animações */
@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px var(--shadow-accent-strong); }
    50% { box-shadow: 0 0 40px var(--shadow-accent-strong); }
}

.glow-effect {
    animation: glow 3s ease-in-out infinite;
}

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

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

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--accent-secondary), var(--accent));
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 60px;
    }

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

}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    nav {
        display: none;
    }

    .header-nav-row {
        justify-content: center;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        gap: 60px;
    }

    .hero-title {
        font-size: 40px;
    }

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

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

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

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

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .contato-inner {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 36px;
    }

    .landing-bottom-bar .bar-links {
        display: none;
    }

    .landing-bottom-bar-inner {
        padding: 0 20px;
    }
}
