@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Montserrat:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Cores do Sistema de Design */
    --bg-midnight: #070F1E;
    --bg-vinho: #2A0815;
    --color-gold: #C6A97A;
    --color-gold-hover: #E3CEAB;
    --color-deep-blue: #0E2140;
    --color-neve: #FAF8F5;
    --color-text-muted: #A0B2C6;
    --color-white: #ffffff;
    --color-black: #000000;
    --color-success: #2ec4b6;
    
    /* Gradientes */
    --gradient-brand: linear-gradient(135deg, #2A0815 0%, #15030B 40%, #070F1E 100%);
    --gradient-gold: linear-gradient(135deg, #C6A97A 0%, #E3CEAB 50%, #9F8256 100%);
    --gradient-card: linear-gradient(145deg, rgba(14, 33, 64, 0.45) 0%, rgba(7, 15, 30, 0.8) 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    
    /* Fontes */
    --font-titles: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Sombras e Bordas */
    --border-glass: 1px solid rgba(255, 255, 255, 0.08);
    --border-gold-soft: 1px solid rgba(198, 169, 122, 0.2);
    --shadow-premium: 0 15px 35px rgba(0, 0, 0, 0.4);
    --shadow-gold-glow: 0 0 20px rgba(198, 169, 122, 0.15);
    
    /* Transições */
    --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

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

body {
    background-color: var(--bg-midnight);
    color: var(--color-neve);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-titles);
    font-weight: 700;
    letter-spacing: -0.02em;
}

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

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

ul {
    list-style: none;
}

/* Botões Premium */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 8px;
    font-family: var(--font-titles);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    outline: none;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--bg-midnight);
    box-shadow: 0 4px 15px rgba(198, 169, 122, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(198, 169, 122, 0.5), var(--shadow-gold-glow);
}

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

.btn-outline:hover {
    background: var(--color-gold);
    color: var(--bg-midnight);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold-glow);
}

/* Top Disclaimer Bar */
.disclaimer-bar {
    background-color: rgba(7, 15, 30, 0.95);
    border-bottom: var(--border-glass);
    padding: 8px 20px;
    font-size: 11px;
    text-align: center;
    color: var(--color-text-muted);
    font-weight: 400;
    z-index: 1000;
    position: relative;
}

.disclaimer-bar span {
    margin: 0 10px;
    background: linear-gradient(
        to right,
        var(--color-text-muted) 20%,
        var(--color-gold) 45%,
        var(--color-neve) 50%,
        var(--color-gold) 55%,
        var(--color-text-muted) 80%
    );
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: textShine 6s linear infinite;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

@keyframes textShine {
    to {
        background-position: 200% center;
    }
}

/* Header & Navegação */
.main-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(7, 15, 30, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: var(--border-glass);
    transition: var(--transition-smooth);
    padding: 15px 0;
}

.main-header.scrolled {
    padding: 10px 0;
    background: rgba(7, 15, 30, 0.95);
    box-shadow: var(--shadow-premium);
}

.header-container {
    max-width: 1400px; /* Container mais amplo para um espaçamento executivo e nobre */
    margin: 0 auto;
    padding: 0 40px; /* Margens laterais generosas */
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.logo-wrapper {
    flex-shrink: 0;
}

.logo-wrapper a {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-image {
    height: 96px;
    width: auto;
    object-fit: contain;
    max-width: 100%;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.main-header.scrolled .logo-image {
    height: 72px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 38px; /* Espaçamento considerável entre os botões do menu */
}

.nav-link {
    font-family: var(--font-titles);
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-neve);
    padding: 8px 0;
    position: relative;
    opacity: 0.85;
    white-space: nowrap;
}

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

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

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

.header-cta {
    display: flex;
    align-items: center;
    gap: 24px; /* Aumento do espaço entre seletores e botões de ação */
}

/* Menu Hambúrguer Mobile */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-toggle span {
    width: 100%;
    height: 2px;
    background-color: var(--color-gold);
    transition: var(--transition-smooth);
    border-radius: 2px;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: url('assets/brand_bg.png') no-repeat center center;
    background-size: cover;
    padding: 100px 0 80px 0;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 80%;
    background: radial-gradient(circle, rgba(198, 169, 122, 0.08) 0%, transparent 60%);
    filter: blur(80px);
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    background: rgba(198, 169, 122, 0.1);
    border: var(--border-gold-soft);
    border-radius: 100px;
    color: var(--color-gold);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.hero-title {
    font-size: 46px;
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--color-white);
}

.hero-title span {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 18px;
    color: var(--color-text-muted);
    margin-bottom: 40px;
    max-width: 580px;
}

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

.hero-graphic {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 1.2s ease-out;
}

.hero-card-glow {
    position: absolute;
    width: 320px;
    height: 380px;
    background: rgba(42, 8, 21, 0.6);
    border-radius: 20px;
    transform: rotate(-6deg);
    z-index: 1;
    border: var(--border-glass);
}

.hero-card-image {
    width: 320px;
    height: 380px;
    background-color: var(--color-deep-blue);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    z-index: 2;
    border: var(--border-gold-soft);
    box-shadow: var(--shadow-premium);
    transform: rotate(2deg);
    transition: var(--transition-smooth);
}

.hero-card-image:hover {
    transform: rotate(0deg) scale(1.03);
}

.hero-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Seções Padrão */
.section {
    padding: 100px 0;
    position: relative;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-subtitle {
    color: var(--color-gold);
    font-family: var(--font-titles);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 20px;
}

.section-title span {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-desc {
    color: var(--color-text-muted);
    font-size: 16px;
}

/* Divisor de Seção Sutil */
.subtle-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.05) 50%, transparent 100%);
    width: 100%;
}

/* Seção de Serviços Dinâmicos */
.services-section {
    background: radial-gradient(circle at bottom, rgba(14, 33, 64, 0.15) 0%, var(--bg-midnight) 70%);
}

.services-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
}

.filter-btn {
    background: var(--gradient-glass);
    border: var(--border-glass);
    color: var(--color-text-muted);
    padding: 12px 24px;
    border-radius: 30px;
    font-family: var(--font-titles);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-btn i {
    font-size: 14px;
}

.filter-btn:hover {
    color: var(--color-neve);
    border-color: rgba(198, 169, 122, 0.4);
}

.filter-btn.active {
    background: var(--gradient-gold);
    color: var(--bg-midnight);
    border-color: var(--color-gold);
    box-shadow: var(--shadow-gold-glow);
}

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

.service-card {
    background: var(--gradient-card);
    border: var(--border-glass);
    border-radius: 12px;
    padding: 40px 30px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}

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

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-gold);
    box-shadow: var(--shadow-premium), var(--shadow-gold-glow);
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    background: rgba(198, 169, 122, 0.1);
    border: var(--border-gold-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    font-size: 24px;
    margin-bottom: 25px;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
    background: var(--color-gold);
    color: var(--bg-midnight);
    transform: rotateY(180deg);
}

.service-title {
    font-size: 20px;
    color: var(--color-white);
    margin-bottom: 15px;
    font-weight: 700;
}

.service-description {
    color: var(--color-text-muted);
    font-size: 14px;
    margin-bottom: 25px;
    flex-grow: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-titles);
    font-size: 12px;
    font-weight: 600;
    color: var(--color-gold);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.service-link i {
    transition: var(--transition-smooth);
}

.service-card:hover .service-link i {
    transform: translateX(5px);
}

/* Seção Destaque Green Card */
.highlight-section {
    background: linear-gradient(180deg, var(--bg-midnight) 0%, rgba(42, 8, 21, 0.3) 100%);
}

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

.highlight-graphic {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    border: var(--border-gold-soft);
    box-shadow: var(--shadow-premium);
    height: 450px;
}

.highlight-graphic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.highlight-features {
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.feature-icon {
    color: var(--color-gold);
    margin-top: 4px;
    font-size: 16px;
}

.feature-content h4 {
    font-size: 14px;
    color: var(--color-white);
    margin-bottom: 5px;
}

.feature-content p {
    font-size: 12px;
    color: var(--color-text-muted);
}

/* Seção Quem Somos */
.about-section {
    background: var(--bg-midnight);
}

.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.about-graphic {
    position: relative;
}

.about-img-box {
    border-radius: 15px;
    overflow: hidden;
    border: var(--border-glass);
    box-shadow: var(--shadow-premium);
    height: 480px;
    position: relative;
    z-index: 2;
}

.about-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-badge-stats {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gradient-gold);
    color: var(--bg-midnight);
    padding: 25px 35px;
    border-radius: 10px;
    box-shadow: var(--shadow-premium);
    z-index: 3;
    text-align: center;
}

.about-badge-stats .stat-num {
    font-family: var(--font-titles);
    font-size: 38px;
    font-weight: 800;
    line-height: 1;
    display: block;
    margin-bottom: 5px;
}

.about-badge-stats .stat-text {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about-text-editor p {
    color: var(--color-text-muted);
    font-size: 15px;
    margin-bottom: 20px;
}

.about-text-editor p strong {
    color: var(--color-white);
}

.about-bullets {
    margin: 30px 0 40px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.about-bullet-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--color-neve);
}

.about-bullet-item i {
    color: var(--color-gold);
}

/* Seção Depoimentos Carrossel */
.testimonials-section {
    background: linear-gradient(180deg, var(--bg-midnight) 0%, rgba(14, 33, 64, 0.15) 100%);
    overflow: hidden;
}

.testimonials-slider-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
}

.testimonials-wrapper {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 20px 0;
}

.testimonials-wrapper::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    min-width: calc((100% - 30px) / 2); /* 2 depoimentos por vez no desktop */
    scroll-snap-align: start;
    background: var(--gradient-card);
    border: var(--border-glass);
    border-radius: 12px;
    padding: 40px;
    box-shadow: var(--shadow-premium);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
}

.testimonial-rating {
    color: #FFC107;
    font-size: 16px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 16px;
    color: var(--color-neve);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 25px;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: var(--border-gold-soft);
    background-color: var(--color-deep-blue);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-white);
}

.author-meta {
    font-size: 12px;
    color: var(--color-text-muted);
}

/* Controles Slider */
.slider-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: var(--border-glass);
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 10;
}

.slider-control:hover {
    background: var(--color-gold);
    color: var(--bg-midnight);
    box-shadow: var(--shadow-gold-glow);
}

.slider-prev {
    left: -10px;
}

.slider-next {
    right: -10px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slider-dot.active {
    background: var(--color-gold);
    width: 24px;
    border-radius: 100px;
}

/* Seção Blog Preview */
.blog-section {
    background: var(--bg-midnight);
}

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

.blog-card {
    background: var(--gradient-card);
    border: var(--border-glass);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: rgba(198, 169, 122, 0.3);
    box-shadow: var(--shadow-premium);
}

.blog-img-wrap {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.blog-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.blog-card:hover .blog-img-wrap img {
    transform: scale(1.05);
}

.blog-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--color-gold);
    color: var(--bg-midnight);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 10px;
    border-radius: 3px;
}

.blog-card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-meta-date {
    font-size: 12px;
    color: var(--color-text-muted);
    margin-bottom: 12px;
}

.blog-card-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--color-white);
    margin-bottom: 15px;
    flex-grow: 1;
}

.blog-card-title a:hover {
    color: var(--color-gold);
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-gold);
}

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

/* Seção Formulário de Avaliação Gratuita (Lead Box) */
.lead-section {
    background: radial-gradient(circle at top left, rgba(42, 8, 21, 0.4) 0%, var(--bg-midnight) 100%);
    position: relative;
}

.lead-box-container {
    max-width: 850px;
    margin: 0 auto;
    background: var(--gradient-card);
    border: var(--border-gold-soft);
    border-radius: 16px;
    padding: 50px;
    box-shadow: var(--shadow-premium), var(--shadow-gold-glow);
    position: relative;
    z-index: 2;
}

.lead-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-full-width {
    grid-column: span 2;
}

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

.form-label {
    font-family: var(--font-titles);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-gold);
}

.form-control {
    background: rgba(7, 15, 30, 0.6);
    border: var(--border-glass);
    border-radius: 6px;
    padding: 14px;
    color: var(--color-neve);
    font-family: var(--font-body);
    font-size: 14px;
    transition: var(--transition-smooth);
    width: 100%;
}

.form-control:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 10px rgba(198, 169, 122, 0.2);
    background: rgba(7, 15, 30, 0.9);
}

textarea.form-control {
    resize: none;
    min-height: 120px;
}

.form-action {
    margin-top: 30px;
    text-align: center;
}

.form-action .btn {
    min-width: 250px;
}

/* Feedback do Envio de Formulário */
.form-message {
    padding: 15px;
    border-radius: 6px;
    font-size: 14px;
    margin-top: 20px;
    display: none;
    text-align: center;
}

.form-message.success {
    background: rgba(46, 196, 182, 0.15);
    color: var(--color-success);
    border: 1px solid var(--color-success);
    display: block;
}

.form-message.error {
    background: rgba(239, 71, 111, 0.15);
    color: #ef476f;
    border: 1px solid #ef476f;
    display: block;
}

/* Footer & Rodapé */
.main-footer {
    background: #040810;
    border-top: var(--border-glass);
    padding: 80px 0 0 0;
}

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

.footer-col h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    display: inline-block;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gradient-gold);
}

.footer-brand .logo-image {
    height: 52px;
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--color-text-muted);
    font-size: 13px;
    margin-bottom: 25px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    font-size: 15px;
    transition: var(--transition-smooth);
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--color-text-muted);
    font-size: 13px;
}

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

.footer-contacts li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--color-text-muted);
    font-size: 13px;
    margin-bottom: 15px;
}

.footer-contacts li i {
    color: var(--color-gold);
    margin-top: 3px;
}

/* Bottom Bar */
.bottom-bar {
    background: #020408;
    border-top: var(--border-glass);
    padding: 25px 0;
    font-size: 12px;
    color: var(--color-text-muted);
}

.bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.bottom-links {
    display: flex;
    gap: 20px;
}

.bottom-links a:hover {
    color: var(--color-gold);
}

/* ANIMAÇÕES */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* RESPONSIVIDADE (MEDIA QUERIES) */
@media (max-width: 1400px) {
    .header-container {
        padding: 0 20px;
        gap: 20px;
    }
    .logo-image {
        height: 72px;
    }
    .nav-menu {
        gap: 22px;
    }
    .header-cta {
        gap: 16px;
    }
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 38px;
    }
    .hero-container {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 30px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .section {
        padding: 80px 0;
    }
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero-description {
        margin: 0 auto 30px auto;
    }
    .hero-actions {
        justify-content: center;
    }
    .highlight-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .about-graphic {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .disclaimer-bar {
        font-size: 9px;
        line-height: 1.4;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: rgba(7, 15, 30, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-left: var(--border-glass);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 1000;
        transition: var(--transition-smooth);
        gap: 40px;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    .header-cta .btn {
        display: none; /* Oculta o CTA grande no mobile */
    }
    
    .hero-title {
        font-size: 30px;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .lead-box-container {
        padding: 30px 20px;
    }
    
    .lead-form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-full-width {
        grid-column: span 1;
    }
    
    .bottom-container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .bottom-links {
        justify-content: center;
    }
    
    .testimonials-slider-container {
        padding: 0 10px;
    }
    
    .testimonial-card {
        min-width: 100%;
        padding: 25px;
    }
}

/* ==========================================
   IDIOMAS - I18N SWITCHER
   ========================================== */
.lang-selector {
    display: flex;
    gap: 4px;
    background: rgba(255, 255, 255, 0.03);
    border: var(--border-glass);
    padding: 3px;
    border-radius: 20px;
}

.lang-btn {
    background: transparent;
    border: none;
    color: var(--color-text-muted);
    font-family: var(--font-titles);
    font-weight: 700;
    font-size: 10px;
    padding: 6px 12px;
    border-radius: 15px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.lang-btn:hover {
    color: var(--color-neve);
}

.lang-btn.active {
    background: var(--gradient-gold);
    color: var(--bg-midnight);
    box-shadow: 0 2px 8px rgba(198, 169, 122, 0.2);
}

.mobile-only-lang {
    display: none;
}

.desktop-only-lang {
    display: flex;
}

@media (max-width: 768px) {
    .desktop-only-lang {
        display: none !important;
    }
    .mobile-only-lang {
        display: flex !important;
        margin-top: 10px;
        align-self: center;
    }
}

/* Botão Flutuante do WhatsApp */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 32px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #20ba5a;
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4);
    color: #fff;
}

/* Responsividade do Botão Flutuante no Mobile */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 26px;
    }
}

/* Efeito de Luz no Cursor (Spotlight) */
.cursor-glow {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(198, 169, 122, 0.05) 0%, rgba(198, 169, 122, 0) 70%);
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    mix-blend-mode: screen;
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1), height 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.4s ease;
}

@media (max-width: 1024px) {
    .cursor-glow {
        display: none !important;
    }
}

/* Efeito Shimmer Shine no Botão CTA do Hero */
.hero-actions .btn-primary {
    position: relative;
    overflow: hidden;
}

.hero-actions .btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.45) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    transition: none;
    animation: buttonShine 4.5s ease-in-out infinite;
}

@keyframes buttonShine {
    0% {
        left: -150%;
    }
    45% {
        left: -150%;
    }
    100% {
        left: 150%;
    }
}



