/* ==================== VARIABLES ==================== */
:root {
    --primary: #0a0a0a;
    --secondary: #1a1a1a;
    --accent: #ffd700;
    --accent-light: #ffed4a;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-muted: #6b6b6b;
    --border: rgba(255, 255, 255, 0.1);
    --gradient-primary: linear-gradient(135deg, #ffd700 0%, #ffed4a 50%, #ffd700 100%);
    --gradient-dark: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px rgba(255, 215, 0, 0.2);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Zebra Styling - Tema Claro */
    --light-bg: #ffffff;
    --light-bg-secondary: #f8f8f8;
    --light-text-primary: #1a1a1a;
    --light-text-secondary: #333333;
    --light-text-muted: #666666;
    --light-border: rgba(0, 0, 0, 0.1);
    --light-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    --light-shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.12);
    --light-card-bg: #ffffff;
    --light-accent-deep: #C7A701;
}

/* ==================== ZEBRA STYLING - TEMA CLARO ==================== */
/* 
   ESTRUTURA DE INTERCALAÇÃO DE SEÇÕES:
   
   1. HERO           - Preto (original, sem alteração)
   2. ABOUT          - Branco (section-light) - ÍMPAR
   3. SERVICES       - Preto (original) - PAR
   4. DIFFERENTIALS  - Branco (section-light) - ÍMPAR
   5. TESTIMONIALS   - Preto (original) - PAR
   6. CLIENTS        - Branco (section-light) - ÍMPAR
   7. CTA SECTION    - Preto (original) - PAR
   8. CONTACT        - Branco (section-light) - ÍMPAR
   9. FOOTER         - Preto (original)
   
   Cores do tema claro:
   - Fundo: #FFFFFF (branco puro)
   - Texto principal: #1A1A1A (preto suave)
   - Texto secundário: #333333 (grafite)
   - Destaque: Amarelo (#FFD700) mantido em todas as seções
   - Cards: #F8F8F8 com sombras suaves
*/

/* Seções com fundo branco (tema claro) */
.section-light {
    background-color: var(--light-bg);
    color: var(--light-text-primary);
}

.section-light .section-title {
    color: var(--light-text-primary);
}

.section-light .section-subtitle {
    color: var(--light-text-secondary);
}

/* Tag de seção em amarelo dourado profundo */
.section-light .section-tag {
    background: rgba(199, 167, 1, 0.15);
    border-color: rgba(199, 167, 1, 0.3);
    color: var(--light-accent-deep);
}

.section-light .about-text {
    color: var(--light-text-secondary);
}

.section-light .value-item {
    background: var(--light-bg-secondary);
    border-color: var(--light-border);
    box-shadow: var(--light-shadow);
}

.section-light .value-item:hover {
    box-shadow: var(--light-shadow-hover);
}

.section-light .value-item p {
    color: var(--light-text-muted);
}

.section-light .floating-card {
    background: var(--light-bg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 215, 0, 0.3);
}

.section-light .floating-card .card-text {
    color: var(--light-text-secondary);
}

/* Cards de serviço em fundo branco */
.section-light .service-item {
    background: var(--light-card-bg);
    border-color: var(--light-border);
    box-shadow: var(--light-shadow);
}

.section-light .service-item:hover {
    box-shadow: var(--light-shadow-hover);
    border-color: rgba(199, 167, 1, 0.4);
}

.section-light .service-info h3 {
    color: var(--light-text-primary);
}

.section-light .service-lead {
    color: var(--light-text-secondary);
}

.section-light .service-list li {
    color: var(--light-text-muted);
}

.section-light .service-visual::before {
    background: linear-gradient(to bottom, transparent 0%, rgba(248, 248, 248, 0.3) 60%, rgba(248, 248, 248, 0.95) 100%);
}

.section-light .service-item:hover .service-visual::before {
    background: linear-gradient(to bottom, transparent 0%, rgba(248, 248, 248, 0.2) 50%, rgba(248, 248, 248, 0.9) 100%);
}

/* Diferenciais em fundo branco */
.section-light .differential-item {
    background: var(--light-bg-secondary);
    border-color: var(--light-border);
    box-shadow: var(--light-shadow);
}

.section-light .differential-item:hover {
    box-shadow: var(--light-shadow-hover);
}

.section-light .differential-info p {
    color: var(--light-text-secondary);
}

/* Depoimentos em fundo branco */
.section-light .testimonial-card {
    background: var(--light-bg-secondary);
    border-color: var(--light-border);
    box-shadow: var(--light-shadow);
}

.section-light .testimonial-card:hover {
    box-shadow: var(--light-shadow-hover);
}

.section-light .testimonial-text {
    color: var(--light-text-secondary);
}

.section-light .author-info h4 {
    color: var(--light-text-primary);
}

.section-light .author-info span {
    color: var(--light-accent-deep);
}

/* Clientes em fundo branco */
.section-light .client-logo {
    background: var(--light-bg-secondary);
    border-color: var(--light-border);
    box-shadow: var(--light-shadow);
}

.section-light .client-fallback span {
    color: var(--light-text-primary);
}

.section-light .client-fallback small {
    color: var(--light-text-secondary);
}

/* Logo em tema claro - estado normal */
.section-light .client-logo .client-logo-img,
.section-light .client-logo-img {
    filter: grayscale(100%) brightness(1) opacity(0.6) !important;
    transition: all 0.3s ease !important;
}

/* Logo em tema claro - hover */
.section-light .client-logo:hover .client-logo-img,
.section-light .client-logo-img:hover {
    filter: grayscale(0%) brightness(1) opacity(1) !important;
}

/* Contato em fundo branco - Ajustes de cor dourada profunda */
.section-light .contact-text {
    color: var(--light-text-secondary);
}

.section-light .contact-detail p {
    color: var(--light-text-secondary);
}

/* Ícones de contato em amarelo dourado profundo */
.section-light .contact-icon {
    background: rgba(199, 167, 1, 0.15);
}

.section-light .contact-icon i {
    color: var(--light-accent-deep);
}

.section-light .social-link {
    background: var(--light-bg-secondary);
    border-color: var(--light-border);
    color: var(--light-text-secondary);
}

.section-light .contact-form-wrapper {
    background: var(--light-bg-secondary);
    border-color: var(--light-border);
    box-shadow: var(--light-shadow);
}

.section-light .form-header p {
    color: var(--light-text-secondary);
}

.section-light .form-group input,
.section-light .form-group select,
.section-light .form-group textarea {
    background: var(--light-bg);
    border-color: var(--light-border);
    color: var(--light-text-primary);
}

.section-light .form-group input:focus,
.section-light .form-group select:focus,
.section-light .form-group textarea:focus {
    border-color: var(--light-accent-deep);
    box-shadow: 0 0 0 3px rgba(199, 167, 1, 0.15);
}

.section-light .form-group i {
    color: var(--light-text-muted);
}

/* Botão de envio em amarelo dourado profundo */
.section-light .btn-submit {
    background: var(--light-accent-deep);
    color: #000000;
}

.section-light .btn-submit:hover {
    background: #b09500;
    box-shadow: 0 4px 15px rgba(199, 167, 1, 0.3);
}

/* Tag da seção de contato em amarelo dourado profundo */
.section-light.contact .section-tag {
    background: rgba(199, 167, 1, 0.15);
    border-color: rgba(199, 167, 1, 0.3);
    color: var(--light-accent-deep);
}

/* Título com acento em amarelo dourado profundo - Todas as seções claras */
.section-light .section-title .accent {
    background: linear-gradient(135deg, #C7A701 0%, #D4B83A 50%, #C7A701 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Mapa em fundo branco */
.section-light .map-container {
    border-color: var(--light-border);
    box-shadow: var(--light-shadow);
}

/* Ajustes adicionais para elementos em tema claro */

/* Valor item ícone em tema claro - Dourado profundo */
.section-light .value-icon {
    background: rgba(199, 167, 1, 0.15);
}

.section-light .value-icon i {
    color: var(--light-accent-deep);
}

/* Differential icon em tema claro - Dourado profundo */
.section-light .differential-icon {
    background: rgba(199, 167, 1, 0.15);
}

.section-light .differential-icon i {
    color: var(--light-accent-deep);
}

/* Contact icon em tema claro - Dourado profundo */
.section-light .contact-icon {
    background: rgba(199, 167, 1, 0.15);
}

.section-light .contact-icon i {
    color: var(--light-accent-deep);
}

/* Testimonial quote em tema claro - Dourado profundo */
.section-light .testimonial-quote {
    background: rgba(199, 167, 1, 0.15);
}

.section-light .testimonial-quote i {
    color: var(--light-accent-deep);
}

/* Floating card em tema claro - Dourado profundo */
.section-light .floating-card {
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(199, 167, 1, 0.3);
    border: 1px solid rgba(199, 167, 1, 0.2);
}

.section-light .floating-card i {
    color: var(--light-accent-deep);
}

.section-light .floating-card .card-number {
    color: var(--light-accent-deep);
}

/* Imagem secundária em tema claro */
.section-light .image-secondary {
    border: 4px solid var(--light-bg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* Ajuste de transição suave entre seções */
.about,
.differentials,
.clients,
.contact {
    transition: background-color 0.3s ease;
}

/* Garantir que o gradiente da seção CTA funcione corretamente */
.cta-section {
    background: var(--primary);
}

.cta-overlay {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(26, 26, 26, 0.9) 100%);
}

/* Manter CTA content no tema escuro */
.cta-content {
    background: var(--primary);
    border: 1px solid var(--border);
}

/* Carrossel fade em tema claro */
.section-light .carousel-fade-left {
    background: linear-gradient(to right, var(--light-bg) 0%, transparent 100%);
}

.section-light .carousel-fade-right {
    background: linear-gradient(to left, var(--light-bg) 0%, transparent 100%);
}

/* Ajuste para máscara do carrossel em tema claro */
.section-light .clients-carousel {
    mask-image: linear-gradient(
        to right,
        transparent,
        black 10%,
        black 90%,
        transparent
    );
    -webkit-mask-image: linear-gradient(
        to right,
        transparent,
        black 10%,
        black 90%,
        transparent
    );
}

/* CTA Content em fundo branco (quando aplicável) */
.section-light .cta-content {
    background: var(--light-bg-secondary);
    border-color: var(--light-border);
    box-shadow: var(--light-shadow);
}

.section-light .cta-content p {
    color: var(--light-text-secondary);
}

/* Reset de bordas em tema claro */
.section-light .image-secondary {
    border-color: var(--light-bg);
}

.section-light .section-decoration {
    border-color: var(--light-border);
}

/* ==================== RESET & BASE ==================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--primary);
    color: var(--text-primary);
    line-height: 1.6;
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Global width constraint */
html, body {
    max-width: 100vw;
}

img, video, iframe, embed, object {
    max-width: 100%;
    height: auto;
}

/* Fix for fixed position elements */
[style*="position: fixed"], 
[style*="position:fixed"] {
    max-width: 100vw !important;
}

/* Ensure all absolute elements within containers */
.position-relative {
    position: relative;
}

/* Global fix for images breaking layout */
img {
    max-width: 100% !important;
    height: auto !important;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

section {
    width: 100%;
    max-width: 100vw;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* ==================== PRELOADER ==================== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.preloader-logo {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader-logo-img {
    max-height: 100px;
    width: auto;
    object-fit: contain;
}

.shield-loader {
    font-size: 5rem;
    color: var(--accent);
    animation: pulseShield 1.5s ease-in-out infinite;
}

@keyframes pulseShield {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

/* Service Card Entrance Animations */
@keyframes serviceCardEnter {
    0% {
        opacity: 0;
        transform: translateY(60px) scale(0.95);
    }
    50% {
        opacity: 0.5;
        transform: translateY(-10px) scale(0.98);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes badgePop {
    0% {
        transform: scale(0) rotate(-180deg);
        opacity: 0;
    }
    60% {
        transform: scale(1.2) rotate(10deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* AOS-like animation classes for services */
.service-item[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-item[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delay for sequential animation */
.service-item[data-aos-delay="0"] { transition-delay: 0s; }
.service-item[data-aos-delay="150"] { transition-delay: 0.15s; }
.service-item[data-aos-delay="300"] { transition-delay: 0.3s; }
.service-item[data-aos-delay="450"] { transition-delay: 0.45s; }

.loading-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    color: var(--text-primary);
    margin: 0;
}

.loading-bar {
    width: 200px;
    height: 2px;
    background: var(--border);
    margin: 0 auto;
    border-radius: 2px;
    overflow: hidden;
}

.loading-progress {
    height: 100%;
    background: var(--gradient-primary);
    width: 0;
    animation: loadingProgress 2s ease-in-out forwards;
}

@keyframes loadingProgress {
    0% { width: 0; }
    100% { width: 100%; }
}

/* ==================== NAVIGATION ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    padding-top: calc(1rem + env(safe-area-inset-top));
    transition: var(--transition-slow);
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    padding: 0.75rem 0;
    padding-top: calc(0.75rem + env(safe-area-inset-top));
    border-bottom: 1px solid var(--border);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-image-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-img {
    height: 45px;
    width: auto;
    max-width: 180px;
    max-height: 45px; /* Força que a logo nunca passe da altura da navbar */
    object-fit: contain;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--text-primary);
    line-height: 1;
}

.logo-sub {
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--accent);
    text-transform: uppercase;
    margin-top: 2px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.btn-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--gradient-primary);
    color: var(--primary);
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
}

.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(5px, -5px);
}

/* ==================== HERO SECTION ==================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 100px 0 60px;
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1920&h=1080&fit=crop') center/cover;
    transform: scale(1.05);
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% { transform: scale(1.1); }
    100% { transform: scale(1.2); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(10, 10, 15, 0.95) 0%,
        rgba(10, 10, 15, 0.85) 50%,
        rgba(10, 10, 15, 0.7) 100%
    );
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    max-width: 100%;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 15s infinite;
    pointer-events: none;
    will-change: transform;
}

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100vh) rotate(720deg);
        opacity: 0;
    }
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-badge {
    position: absolute;
    bottom: 100px;
    right: 40px;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: rgba(201, 169, 98, 0.15);
    border: 1px solid rgba(255, 215, 0, 0.4);
    border-radius: 50px;
    animation: fadeInRight 0.8s ease;
    backdrop-filter: blur(10px);
    z-index: 10;
}

.hero-badge i {
    color: var(--accent);
}

.hero-badge span {
    font-size: 0.85rem;
    color: var(--accent-light);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { animation-delay: 0.4s; }
.title-line:nth-child(3) { animation-delay: 0.6s; }

.title-line.highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.8s forwards;
}

/* Quebras de linha / parágrafos vindos do CMS (campos textarea com Enter) */
.hero-description,
.cta-content p,
.service-lead,
.service-modal-description,
.footer-about,
.differentials-text,
#differentials .differential-item p,
.section-subtitle,
.contact-text,
.contact-info p[data-cms],
.about-text,
.about .value-item p,
.testimonial-text,
.testimonials .section-subtitle,
.clients .section-subtitle {
    white-space: pre-line;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 1s forwards;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    color: var(--primary);
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: transparent;
    color: var(--text-primary);
    font-weight: 600;
    border: 2px solid var(--border);
    border-radius: 50px;
    transition: var(--transition);
}

.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.btn-secondary i {
    width: 35px;
    height: 35px;
    background: var(--accent);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 1.2s forwards;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}

.stat-suffix {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: var(--border);
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.scroll-indicator span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: var(--border);
    position: relative;
    overflow: hidden;
}

.scroll-dot {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 5px;
    background: var(--accent);
    border-radius: 50%;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { top: 0; opacity: 1; }
    50% { top: 100%; opacity: 0; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ==================== SECTIONS COMMON ==================== */
.section-decoration {
    position: absolute;
    width: 300px;
    height: 300px;
    border: 1px solid var(--border);
    border-radius: 50%;
    pointer-events: none;
}

.section-decoration.left {
    top: -150px;
    left: -150px;
}

.section-decoration.right {
    bottom: -150px;
    right: -150px;
}

.section-header {
    margin-bottom: 3rem;
}

.section-header.center {
    text-align: center;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent);
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(201, 169, 98, 0.1);
    border: 1px solid rgba(201, 169, 98, 0.2);
    border-radius: 50px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
}

.section-title .accent {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 1rem auto 0;
}

/* ==================== ABOUT SECTION ==================== */
.about {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    width: 100%;
}

.about-images {
    position: relative;
    width: 100%;
    height: 480px;
}

.image-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 68%;
    height: 100%;
    z-index: 1;
    border-radius: 20px;
    overflow: hidden;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    width: 100%;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

.image-secondary {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 42%;
    height: 65%;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    overflow: hidden;
    border: 4px solid var(--primary);
    z-index: 3;
}

.image-secondary .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.floating-card {
    position: absolute;
    bottom: 5%;
    left: 48%;
    transform: translateX(-50%);
    background: var(--secondary);
    padding: 1rem 1.5rem;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 0.875rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 215, 0, 0.15);
    border: 1px solid rgba(255, 215, 0, 0.2);
    z-index: 10;
    backdrop-filter: blur(10px);
}

.floating-card i {
    font-size: 1.5rem;
    color: var(--accent);
}

.card-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent);
}

.card-text {
    font-size: 0.7rem;
    color: var(--text-secondary);
    white-space: nowrap;
}

@media (max-width: 768px) {
    .floating-card .card-text {
        white-space: normal;
        line-height: 1.25;
    }
}

.about-content {
    padding-left: 2rem;
}

.about-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.value-item {
    padding: 1.5rem;
    background: var(--secondary);
    border: 1px solid var(--border);
    border-radius: 15px;
    transition: var(--transition);
}

.value-item:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
}

.value-icon {
    width: 50px;
    height: 50px;
    background: rgba(201, 169, 98, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.value-icon i {
    font-size: 1.25rem;
    color: var(--accent);
}

.value-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.value-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* ==================== SERVICES SECTION ==================== */
.services {
    padding: 120px 0;
    background: var(--primary);
    position: relative;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
}

/* ==================== SERVICES SHOWCASE - PREMIUM ==================== */
.services-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    width: 100%;
}

.service-item {
    position: relative;
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.9) 0%, rgba(10, 10, 10, 0.95) 100%);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.03) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.service-item:hover::before {
    opacity: 1;
}

.service-item:hover {
    transform: translateY(-12px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(255, 215, 0, 0.08);
}

/* Visual Area */
.service-visual {
    position: relative;
    width: 100%;
    height: 220px;
    min-height: 220px;
    overflow: hidden;
    border-radius: 24px 24px 0 0;
    z-index: 1;
    background-color: var(--primary);
    flex-shrink: 0;
}

.service-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(10, 10, 10, 0.3) 60%, rgba(10, 10, 10, 0.95) 100%);
    z-index: 2;
    pointer-events: none;
}

.service-item {
    overflow: visible;
    display: flex;
    flex-direction: column;
}

.service-visual img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.service-item:hover .service-visual img {
    transform: scale(1.1);
}

.service-item:hover .service-visual::before {
    background: linear-gradient(to bottom, transparent 0%, rgba(10, 10, 10, 0.2) 50%, rgba(10, 10, 10, 0.9) 100%);
}

/* Badge Icon */
.service-badge {
    position: relative;
    margin-top: -28px;
    margin-left: 24px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4a 50%, #ffd700 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #0a0a0a;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3), 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 100;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-item:hover .service-badge {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4), 0 6px 15px rgba(0, 0, 0, 0.4);
}

/* Info Area */
.service-info {
    padding: 20px 24px 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    margin-top: -10px;
}

.service-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.2;
    transition: color 0.3s ease;
}

.service-item:hover .service-info h3 {
    color: #ffd700;
}

.service-lead {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin-bottom: 16px;
}

.service-divider {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #ffd700 0%, transparent 100%);
    margin-bottom: 16px;
    transition: width 0.4s ease;
}

.service-item:hover .service-divider {
    width: 80px;
}

/* Service List */
.service-list {
    list-style: none;
    margin: 0 0 24px 0;
    padding: 0;
    flex: 1;
}

.service-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.4;
    transition: all 0.3s ease;
}

.service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: #ffd700;
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-item:hover .service-list li {
    color: rgba(255, 255, 255, 0.85);
    transform: translateX(4px);
}

.service-item:hover .service-list li::before {
    transform: scale(1);
}

.service-list li:hover {
    color: #ffd700 !important;
}

/* CTA Button */
.service-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    background: transparent;
    border: 1.5px solid rgba(255, 215, 0, 0.4);
    border-radius: 50px;
    color: #ffd700;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: auto;
    align-self: flex-start;
    overflow: hidden;
    position: relative;
}

.service-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4a 100%);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.service-cta i {
    transition: transform 0.3s ease;
}

.service-item:hover .service-cta {
    border-color: #ffd700;
    color: #0a0a0a;
}

.service-item:hover .service-cta::before {
    left: 0;
}

.service-item:hover .service-cta i {
    transform: translateX(4px);
}

/* ==================== DIFFERENTIALS SECTION ==================== */
.differentials {
    padding: 120px 0;
    position: relative;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
}

.differentials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.differentials-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.differentials-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.differential-item {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--secondary);
    border: 1px solid var(--border);
    border-radius: 15px;
    transition: var(--transition);
}

.differential-item:hover {
    border-color: var(--accent);
    transform: translateX(10px);
}

.differential-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    background: rgba(201, 169, 98, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.differential-icon i {
    font-size: 1.25rem;
    color: var(--accent);
}

.differential-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.differential-info p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.differentials-image {
    position: relative;
    width: 100%;
}

.image-container {
    position: relative;
    width: 100%;
}

.image-container img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.experience-badge {
    position: absolute;
    top: -20px;
    right: 0;
    background: var(--gradient-primary);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    z-index: 100;
}

.badge-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.badge-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
}

.decoration-circle {
    position: absolute;
    bottom: 50px;
    left: -30px;
    width: 100px;
    height: 100px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    opacity: 0.3;
    z-index: -1;
}

.decoration-square {
    position: absolute;
    top: 50px;
    left: -20px;
    width: 60px;
    height: 60px;
    border: 2px solid var(--accent);
    opacity: 0.2;
    z-index: -1;
}

/* ==================== CTA SECTION ==================== */
.cta-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=1920&h=600&fit=crop') center/cover;
}

/* ==================== TESTIMONIALS SECTION ==================== */
.testimonials {
    padding: 120px 0;
    background: var(--secondary);
    position: relative;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--secondary);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
}

.testimonial-quote {
    width: 50px;
    height: 50px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.testimonial-quote i {
    font-size: 1.25rem;
    color: var(--accent);
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.author-info span {
    font-size: 0.9rem;
    color: var(--accent);
}

/* ==================== CLIENTS SECTION ==================== */
.clients {
    padding: 100px 0;
    position: relative;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
}

/* Fundo escuro para seção clients sem section-light */
.clients:not(.section-light) {
    background: var(--secondary);
}

/* ==================== CLIENTES CARROSSEL INFINITO ==================== */

/* Container principal do carrossel */
.clients-carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 2rem 0;
}

/* O carrossel em si */
.clients-carousel {
    display: flex;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(
        to right,
        transparent,
        black 10%,
        black 90%,
        transparent
    );
    -webkit-mask-image: linear-gradient(
        to right,
        transparent,
        black 10%,
        black 90%,
        transparent
    );
}

/* Slide com os logos - animação infinita */
.clients-slide {
    display: flex;
    gap: 2rem;
    animation: scroll-carousel 30s linear infinite;
    will-change: transform;
}

/* Pausa a animação no hover */
.clients-carousel:hover .clients-slide {
    animation-play-state: paused;
}

/* Animação do carrossel */
@keyframes scroll-carousel {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Logo individual no carrossel */
.client-logo {
    background: var(--primary);
    border: 1px solid var(--border);
    border-radius: 15px;
    padding: 1.5rem 2rem;
    text-align: center;
    transition: var(--transition);
    min-height: 140px;
    min-width: 200px;
    max-width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
}

.client-logo:hover {
    border-color: var(--accent);
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.15);
    z-index: 10;
}

/* Logo do cliente (imagem) - inicialmente escondida */
.client-logo-img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%) brightness(1.2);
    transition: var(--transition);
    display: none;
}

/* Mostra a logo quando tem src válido */
.client-logo-img[src]:not([src=""]) {
    display: block;
}

.client-logo:hover .client-logo-img {
    filter: grayscale(0%) brightness(1);
}

/* Fallback com ícone quando não há logo */
.client-fallback {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.client-fallback i {
    font-size: 2.5rem;
    color: var(--accent);
}

.client-fallback span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.client-fallback small {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Quando há logo, esconde completamente o fallback */
.client-logo:has(.client-logo-img[src]:not([src=""])) .client-fallback {
    display: none;
}

/* Suporte para navegadores que não suportam :has() */
@supports not selector(:has(*)) {
    .client-logo-img[src]:not([src=""]) ~ .client-fallback,
    .client-logo-img[src]:not([src=""]) + .client-fallback {
        display: none !important;
    }
}

/* Placeholder (legacy support) */
.client-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.client-placeholder i {
    font-size: 2.5rem;
    color: var(--accent);
}

.client-placeholder span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.client-placeholder small {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(26, 26, 26, 0.9) 100%);
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem;
    background: var(--primary);
    border: 1px solid var(--border);
    border-radius: 20px;
}

.cta-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.75rem;
    color: var(--primary);
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: var(--gradient-primary);
    color: var(--primary);
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

/* ==================== CONTACT SECTION ==================== */
.contact {
    padding: 120px 0;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
}

/* Fundo escuro para seção contact sem section-light */
.contact:not(.section-light) {
    background: var(--secondary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    width: 100%;
}

.contact-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: rgba(201, 169, 98, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon i {
    font-size: 1.1rem;
    color: var(--accent);
}

.contact-detail h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-detail p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--primary);
    border: 1px solid var(--border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--text-secondary);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--primary);
    transform: translateY(-3px);
}

.contact-form-wrapper {
    background: var(--primary);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem;
}

.form-header {
    margin-bottom: 2rem;
}

.form-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-header p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    background: var(--secondary);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.1);
}

.form-group textarea {
    padding-left: 1rem;
    min-height: 120px;
    resize: vertical;
}

.form-group i {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    color: var(--text-muted);
}

.form-group select + i {
    left: auto;
    right: 1rem;
}

.form-group select {
    appearance: none;
    cursor: pointer;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: var(--gradient-primary);
    border: none;
    border-radius: 12px;
    color: var(--primary);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: var(--transition);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

/* ==================== CONTACT MAP ==================== */
.contact-map {
    margin-top: 4rem;
    width: 100%;
    display: flex;
    justify-content: center;
}

.map-container {
    width: 100%;
    max-width: 1200px;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(30%) contrast(1.1);
    transition: var(--transition);
}

.map-container iframe:hover {
    filter: grayscale(0%) contrast(1);
}

@media (max-width: 768px) {
    .map-container {
        height: 300px;
        border-radius: 12px;
    }
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--primary);
    border-top: 1px solid var(--border);
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
}

.footer-top {
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 3rem;
    width: 100%;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
}

.footer-logo-icon {
    font-size: 2rem;
    color: var(--accent);
}

.footer-logo i {
    font-size: 2rem;
    color: var(--accent);
}

.footer-logo .logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    display: block;
}

.footer-logo .logo-sub {
    font-size: 0.65rem;
    color: var(--accent);
    letter-spacing: 0.1em;
}

.footer-about {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.footer-links ul,
.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    font-size: 0.95rem;
    color: var(--text-secondary);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.footer-contact i {
    color: var(--accent);
    margin-top: 3px;
}

.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid var(--border);
}

.footer-bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.footer-developer {
    font-size: 0.85rem;
}

.footer-developer a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.footer-developer a:hover {
    color: var(--accent);
}

.footer-bottom p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 35px;
    height: 35px;
    background: var(--secondary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--accent);
    color: var(--primary);
}

/* ==================== BACK TO TOP ==================== */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: var(--accent);
    border: none;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-glow);
}

@media (max-width: 768px) {
    .back-to-top {
        right: 10px;
        bottom: 90px;
    }
    
    .whatsapp-float {
        right: 10px;
        bottom: 20px;
    }
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
}

/* ==================== WHATSAPP FLOAT ==================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    z-index: 998;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: white;
    color: #333;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: var(--transition);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* ==================== ANIMATIONS ON SCROLL ==================== */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="fade-right"].aos-animate,
[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .services-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .service-visual {
        height: 200px;
    }
    
    .service-badge {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-top: -25px;
        margin-left: 20px;
    }
    
    .service-info {
        padding: 16px 20px 24px;
    }
    
    .service-info {
        padding: 40px 20px 24px;
    }
    
    .service-info h3 {
        font-size: 1.25rem;
    }
    
    /* Footer-grid removido daqui - controlado pelo mobile.css */
    
    .section-decoration {
        display: none;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .clients-carousel {
        mask-image: linear-gradient(
            to right,
            transparent,
            black 5%,
            black 95%,
            transparent
        );
        -webkit-mask-image: linear-gradient(
            to right,
            transparent,
            black 5%,
            black 95%,
            transparent
        );
    }
    
    .client-logo {
        min-width: 160px;
        min-height: 120px;
        padding: 1rem 1.5rem;
    }
    
    .client-logo-img {
        max-height: 60px;
    }
}

@media (max-width: 1024px) {
    .about-images {
        height: 400px;
    }
    
    .image-main {
        width: 65%;
    }
    
    .image-secondary {
        width: 45%;
        height: 60%;
    }
    
    .floating-card {
        padding: 0.875rem 1.25rem;
        bottom: 3%;
        left: 45%;
    }
    
    .floating-card i {
        font-size: 1.25rem;
    }
    
    .card-number {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        height: calc(100dvh - 80px);
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        padding-top: 3rem;
        gap: 0;
        border-bottom: 1px solid var(--border);
        transform: translateX(100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: calc(2rem + env(safe-area-inset-bottom));
    }
    
    .nav-menu.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu .nav-link {
        font-size: 1.25rem;
        padding: 1rem 0;
        min-height: 44px;
        display: flex;
        align-items: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        width: 100%;
    }
    
    .nav-menu .nav-link::after {
        display: none;
    }
    
    .nav-menu .nav-link:active {
        color: var(--accent);
        transform: translateX(5px);
        transition: all 0.2s ease;
    }
    
    .mobile-toggle {
        display: flex;
        min-width: 44px;
        min-height: 44px;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        transition: all 0.2s ease;
    }
    
    .mobile-toggle:active {
        background: rgba(255, 255, 255, 0.1);
    }
    
    .btn-nav {
        display: none;
    }
    
    /* Botão CTA no menu mobile */
    .nav-menu .btn-nav-mobile {
        display: flex;
        margin-top: 1.5rem;
        padding: 1rem 2rem;
        background: var(--gradient-primary);
        color: var(--primary);
        font-weight: 600;
        font-size: 1rem;
        border-radius: 50px;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        min-height: 52px;
        width: 100%;
    }
    
    .nav-menu .btn-nav-mobile:active {
        transform: scale(0.98);
        opacity: 0.9;
    }
    
    /* Overlay quando menu aberto */
    .nav-overlay {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 998;
    }
    
    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    /* Hero Section Mobile - SIMPLIFICADO */
    .hero {
        min-height: auto;
        padding: 120px 0 40px;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 2rem;
    }
    
    .hero-cta .btn-primary,
    .hero-cta .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        display: none;
    }
    
    .hero-badge {
        display: none;
    }
    
    /* About Section Mobile */
    .about {
        padding: 80px 0;
    }
    
    .about-grid,
    .differentials-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .about-content {
        padding-left: 0;
    }
    
    .about-content h2 {
        font-size: 1.75rem;
    }
    
    .about-content p {
        font-size: 0.95rem;
    }
    
    .about-images {
        height: 280px;
    }
    
    .image-main {
        width: 70%;
    }
    
    .image-secondary {
        width: 50%;
        height: 55%;
    }
    
    .floating-card {
        padding: 0.75rem 1rem;
        bottom: 5%;
        left: 45%;
        transform: translateX(-50%);
    }
    
    .floating-card span {
        font-size: 0.8rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .value-item {
        padding: 1.25rem;
    }
    
    /* Serviços Section Mobile */
    .services {
        padding: 80px 0;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .services-showcase {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    
    .service-item {
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }
    
    .service-item:active {
        transform: scale(0.98);
    }
    
    /* Diferenciais Section Mobile */
    .differentials {
        padding: 80px 0;
    }
    
    .differentials-image {
        order: -1;
    }
    
    .differentials-text {
        font-size: 0.95rem;
    }
    
    .differentials-list li {
        font-size: 0.9rem;
    }
    
    .experience-badge {
        right: 0;
        padding: 1rem;
    }
    
    .experience-badge .badge-number {
        font-size: 1.5rem;
    }
    
    /* Depoimentos Section Mobile */
    .testimonials {
        padding: 80px 0;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
    }
    
    .author-info h4 {
        font-size: 0.9rem;
    }
    
    /* Clientes Section Mobile */
    .clients {
        padding: 60px 0;
    }
    
    .clients-carousel {
        mask-image: linear-gradient(
            to right,
            transparent,
            black 10%,
            black 90%,
            transparent
        );
    }
    
    .client-logo {
        min-width: 120px;
        min-height: 80px;
        padding: 0.75rem;
    }
    
    .client-logo-img {
        max-height: 40px;
    }
    
    /* CTA Section Mobile */
    .cta-section {
        padding: 80px 0;
    }
    
    .cta-content {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .cta-content h2 {
        font-size: 1.5rem;
    }
    
    .cta-content p {
        font-size: 0.95rem;
    }
    
    .btn-cta {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
        min-height: 52px;
    }
    
    /* Contato Section Mobile */
    .contact {
        padding: 80px 0;
    }
    
    .contact-info h2 {
        font-size: 1.75rem;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .form-group {
        margin-bottom: 1.25rem;
    }
    
    .form-group label {
        font-size: 0.85rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.875rem 1rem;
        font-size: 16px; /* Previne zoom no iOS */
        min-height: 48px;
    }
    
    .btn-submit {
        width: 100%;
        min-height: 52px;
    }
    
    .map-container {
        height: 250px;
        margin-top: 2rem;
    }
    
    /* Footer mobile — fallback essencial (mobile.css complementa; servidor deve servir /mobile.css) */
    .footer {
        overflow-x: hidden;
        max-width: 100%;
    }

    .footer .container {
        max-width: 100%;
        overflow-x: hidden;
    }

    .footer-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 0 !important;
    }

    .footer-brand,
    .footer-links-1,
    .footer-links-2,
    .footer-contact {
        grid-column: 1 / -1 !important;
        min-width: 0 !important;
        width: 100% !important;
    }

    .footer-links-1 {
        border-right: none !important;
        padding: 1.25rem 0 !important;
        border-bottom: 1px solid var(--border);
    }

    .footer-links-2 {
        padding: 1.25rem 0 !important;
        border-bottom: 1px solid var(--border);
    }

    .footer-contact {
        padding: 1.5rem 0 0 !important;
    }

    .footer-links ul,
    .footer-contact ul {
        align-items: flex-start !important;
    }

    .footer-bottom-content {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 1rem !important;
    }
    
    /* Modal de Serviços Mobile */
    .service-modal-overlay {
        padding: 0;
        align-items: flex-end;
    }
    
    .service-modal {
        width: 100%;
        max-width: 100%;
        max-height: 90vh;
        max-height: 90dvh;
        border-radius: 24px 24px 0 0;
        margin: 0;
    }
    
    .service-modal-header {
        overflow: visible;
        z-index: 5;
        margin: 0;
        padding: 0;
    }

    .service-modal-header-media {
        height: 180px;
        overflow: hidden;
        line-height: 0;
    }

    .service-modal-header img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        margin: 0;
    }
    
    .service-modal-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        bottom: -30px;
        left: 20px;
        z-index: 10;
    }
    
    .service-modal-body {
        padding: 48px 20px 20px;
        margin-top: 0;
        z-index: 1;
    }
    
    .service-modal-title {
        font-size: 1.5rem;
    }
    
    .service-modal-description {
        font-size: 0.95rem;
    }
    
    .service-modal-features {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .service-modal-cta {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .service-modal-cta .btn-primary,
    .service-modal-cta .btn-secondary {
        width: 100%;
        justify-content: center;
        min-height: 48px;
    }
    
    .service-modal-close {
        width: 40px;
        height: 40px;
        top: 10px;
        right: 10px;
    }
}

@media (max-width: 480px) {
    html, body {
        overflow-x: hidden;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content {
        padding: 2rem 1.5rem;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .about-images {
        display: flex;
        flex-direction: column;
        height: auto;
        gap: 1rem;
    }
    
    .image-main {
        width: 100%;
        height: 280px;
    }
    
    .image-secondary {
        width: 100%;
        height: 200px;
        margin: 0;
    }
    
    .floating-card {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin: 1rem auto 0;
        width: fit-content;
    }
    
    .experience-badge {
        position: relative;
        top: auto;
        right: auto;
        margin-top: 1rem;
        display: inline-block;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .client-logo {
        min-width: 140px;
        min-height: 100px;
        padding: 1rem;
    }
    
    .client-logo-img {
        max-height: 50px;
    }
    
    .services-showcase {
        grid-template-columns: 1fr;
        max-width: 380px;
        margin: 0 auto;
        gap: 1.5rem;
    }
    
    .service-visual {
        height: 240px;
    }
    
    .service-badge {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
        margin-top: -28px;
    }
    
    .service-info {
        padding: 20px 24px 28px;
    }
    
    .service-info {
        padding: 48px 24px 28px;
    }
    
    .service-info h3 {
        font-size: 1.5rem;
    }
    
    .service-lead {
        font-size: 1rem;
    }
    
    .service-list li {
        font-size: 0.9rem;
    }
}

/* ==================== MODAL DE SERVIÇO EXPANDIDO ==================== */
.service-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    padding: 20px;
}

.service-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.service-modal {
    background: var(--secondary);
    border: 1px solid var(--border);
    border-radius: 24px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    overflow-x: visible;
    position: relative;
    transform: scale(0.9) translateY(50px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-modal-overlay.active .service-modal {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.service-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: var(--accent);
    border: none;
    border-radius: 50%;
    color: var(--primary);
    font-size: 1.25rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.service-modal-close:hover {
    background: var(--accent-light);
    color: var(--primary);
    transform: rotate(90deg);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Header: ícone precisa ficar acima do .service-modal-body (antes body tinha z-index maior e cobria o ícone) */
.service-modal-header {
    position: relative;
    z-index: 5;
    border-radius: 24px 24px 0 0;
    background: var(--secondary);
    margin: 0;
    padding: 0;
    overflow: visible;
}

/* Só a área da foto corta overflow — o ícone amarelo fica fora e não é recortado */
.service-modal-header-media {
    position: relative;
    max-height: 500px;
    min-height: 280px;
    overflow: hidden;
    border-radius: 24px 24px 0 0;
    line-height: 0;
    background: var(--secondary);
}

.service-modal-header img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    object-position: center center;
    display: block;
    margin: 0;
    padding: 0;
    border: none;
}

.service-modal-header-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 40%, rgba(26, 26, 26, 0.92) 100%);
    z-index: 2;
    pointer-events: none;
}

.service-modal-icon {
    position: absolute;
    bottom: -40px;
    left: 40px;
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.4), 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 10;
    pointer-events: auto;
}

.service-modal-body {
    padding: 52px 40px 40px;
    margin: 0;
    position: relative;
    z-index: 1;
    background: var(--secondary);
    border-top: none;
}

.service-modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.service-modal-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.service-modal-section {
    margin-bottom: 2rem;
}

.service-modal-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-modal-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.service-modal-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--primary);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: var(--transition);
}

.service-modal-feature:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
}

.service-modal-feature i {
    color: var(--accent);
    font-size: 1.1rem;
    margin-top: 0.2rem;
}

.service-modal-feature span {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.service-modal-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-modal-benefit {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: var(--text-secondary);
}

.service-modal-benefit i {
    color: var(--accent);
}

.service-modal-cta {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.service-modal-cta .btn-primary,
.service-modal-cta .btn-secondary {
    flex: 1;
    justify-content: center;
}

@media (max-width: 768px) {
    .service-modal {
        max-height: 95vh;
        border-radius: 20px;
    }
    
    .service-modal-header {
        margin-bottom: 0;
        overflow: visible;
        z-index: 5;
    }

    .service-modal-header-media {
        height: auto;
        max-height: 350px;
        min-height: 250px;
        overflow: hidden;
        line-height: 0;
    }
    
    .service-modal-header img {
        max-height: 350px;
    }
    
    .service-modal-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        left: 20px;
        bottom: -30px;
        z-index: 10;
    }
    
    .service-modal-body {
        padding: 48px 20px 30px;
        z-index: 1;
    }
    
    .service-modal-title {
        font-size: 1.5rem;
    }
    
    .service-modal-features {
        grid-template-columns: 1fr;
    }
    
    .service-modal-cta {
        flex-direction: column;
    }
}

/* ==================== FINAL OVERFLOW FIX ==================== */
/* Não usar max-width:none em todos os descendentes — quebra grids e causa overflow no mobile */
html, body {
    max-width: 100% !important;
    overflow-x: hidden !important;
}

section, header, footer, main, article, aside, nav {
    max-width: 100% !important;
    box-sizing: border-box;
}

/* Ensure all containers respect viewport */
.container {
    max-width: min(1200px, 100% - 40px) !important;
}

/* Final safety net for images */
img {
    max-width: 100% !important;
    height: auto !important;
}

/* Sobre nós: caixas com altura fixa — o height:auto !important acima impedia o preenchimento e criava
   um retângulo escuro “vazio” atrás / por baixo das fotos (cantos arredondados visíveis). */
.about-images .image-wrapper img {
    height: 100% !important;
    width: 100% !important;
    object-fit: cover;
    object-position: center;
}

/* ==================== MODAL DE SUCESSO ==================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--secondary);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    max-width: 450px;
    width: 90%;
    text-align: center;
    position: relative;
    transform: scale(0.8) translateY(50px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6), 0 0 60px rgba(255, 215, 0, 0.1);
}

.modal-overlay.active .modal-content {
    transform: scale(1) translateY(0);
    opacity: 1;
}

/* Animação do Envelope */
.modal-animation {
    position: relative;
    height: 140px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.envelope {
    position: relative;
    width: 100px;
    height: 70px;
    animation: flyEnvelope 2s ease-in-out infinite;
}

@keyframes flyEnvelope {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-15px) rotate(-3deg);
    }
    50% {
        transform: translateY(-5px) rotate(2deg);
    }
    75% {
        transform: translateY(-20px) rotate(-2deg);
    }
}

.envelope-body {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 45px;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 0 0 8px 8px;
    border: 2px solid var(--accent);
}

.envelope-flap {
    position: absolute;
    top: -25px;
    left: 0;
    width: 100%;
    height: 50px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4a 100%);
    clip-path: polygon(0 0, 50% 50%, 100% 0);
    transform-origin: top;
    animation: flapWave 2s ease-in-out infinite;
}

@keyframes flapWave {
    0%, 100% {
        transform: rotateX(0deg);
    }
    50% {
        transform: rotateX(25deg);
    }
}

.letter {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 60px;
    background: var(--primary);
    border: 2px solid var(--accent);
    border-radius: 4px;
    animation: letterPeek 2s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes letterPeek {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

.letter-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.letter-content i {
    font-size: 1.2rem;
    color: var(--accent);
}

.letter-content span {
    font-size: 0.5rem;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.envelope-shadow {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 10px;
    background: radial-gradient(ellipse, rgba(0,0,0,0.4) 0%, transparent 70%);
    border-radius: 50%;
    animation: shadowPulse 2s ease-in-out infinite;
}

@keyframes shadowPulse {
    0%, 100% {
        transform: translateX(-50%) scale(1);
        opacity: 0.4;
    }
    50% {
        transform: translateX(-50%) scale(0.8);
        opacity: 0.2;
    }
}

/* Partículas */
.particles-container {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0;
}

.p1 { left: 20%; top: 60%; animation: particle1 2s ease-out infinite; }
.p2 { left: 35%; top: 40%; animation: particle2 2.3s ease-out infinite 0.2s; }
.p3 { left: 65%; top: 45%; animation: particle3 1.8s ease-out infinite 0.4s; }
.p4 { left: 80%; top: 65%; animation: particle4 2.1s ease-out infinite 0.1s; }
.p5 { left: 50%; top: 30%; animation: particle5 2.5s ease-out infinite 0.3s; }

@keyframes particle1 {
    0% { transform: translate(0, 0) scale(0); opacity: 1; }
    100% { transform: translate(-30px, -50px) scale(1); opacity: 0; }
}

@keyframes particle2 {
    0% { transform: translate(0, 0) scale(0); opacity: 1; }
    100% { transform: translate(20px, -40px) scale(1); opacity: 0; }
}

@keyframes particle3 {
    0% { transform: translate(0, 0) scale(0); opacity: 1; }
    100% { transform: translate(-15px, -60px) scale(1); opacity: 0; }
}

@keyframes particle4 {
    0% { transform: translate(0, 0) scale(0); opacity: 1; }
    100% { transform: translate(25px, -45px) scale(1); opacity: 0; }
}

@keyframes particle5 {
    0% { transform: translate(0, 0) scale(0); opacity: 1; }
    100% { transform: translate(0, -70px) scale(1); opacity: 0; }
}

/* Texto do Modal */
.modal-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.modal-text p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Botão do Modal */
.modal-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50px;
    color: var(--primary);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.modal-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
}

.modal-btn i {
    font-size: 1.1rem;
}

/* Responsivo */
@media (max-width: 480px) {
    .modal-content {
        padding: 2rem 1.5rem;
    }
    
    .modal-text h3 {
        font-size: 1.5rem;
    }
    
    .modal-animation {
        height: 120px;
    }
    
    .envelope {
        width: 80px;
        height: 56px;
    }
}


/* ============================================
   MOBILE FIXES - LOGO COMPACT
   ============================================ */
@media (max-width: 768px) {
    /* Logo compact for mobile */
    .logo {
        gap: 0.5rem;
    }
    
    .logo-img {
        height: 32px !important;
        width: auto;
        max-width: 100px;
    }
    
    .logo-icon {
        width: 32px;
        height: 32px;
        font-size: 1rem;
        border-radius: 6px;
    }
    
    .logo-main {
        font-size: 0.9rem;
        letter-spacing: 0.05em;
    }
    
    .logo-sub {
        font-size: 0.5rem;
        letter-spacing: 0.1em;
    }
    
    /* Hero compact */
    .hero {
        padding-top: 80px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 1.6rem;
        line-height: 1.2;
    }
    
    .hero-cta .btn-primary,
    .hero-cta .btn-secondary {
        width: auto;
        min-width: 140px;
        max-width: 180px;
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
    
    .hero-stats,
    .hero-badge {
        display: none;
    }
    
    /* About Section - Mostrar tudo */
    .about {
        padding: 60px 0;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-images {
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        position: relative;
    }
    
    .image-main {
        width: 100%;
        height: 220px;
        position: relative;
    }
    
    .image-main img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 16px;
    }
    
    .image-secondary {
        display: block !important;
        width: 70%;
        height: 160px;
        position: relative;
        margin: -40px auto 0;
        z-index: 2;
    }
    
    .image-secondary img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 12px;
        border: 3px solid var(--primary);
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    }
    
    .floating-card {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin: 1rem auto 0;
        width: fit-content;
        padding: 0.75rem 1rem;
    }
    
    .floating-card .card-number {
        font-size: 1.25rem;
    }
    
    .floating-card .card-text {
        font-size: 0.75rem;
    }
    
    .about-content {
        padding: 0;
    }
    
    .about-content .section-header {
        margin-bottom: 1.5rem;
    }
    
    .about-content .section-tag {
        font-size: 0.75rem;
        margin-bottom: 0.5rem;
        display: block;
    }
    
    .about-content .section-title {
        font-size: 1.35rem;
        line-height: 1.3;
    }
    
    .about-text {
        font-size: 0.85rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .value-item {
        padding: 1rem;
        display: flex;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .value-icon {
        width: 36px;
        height: 36px;
        font-size: 0.875rem;
        flex-shrink: 0;
    }
    
    .value-item h4 {
        font-size: 0.9rem;
        margin-bottom: 0.25rem;
    }
    
    .value-item p {
        font-size: 0.75rem;
        line-height: 1.4;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 28px;
        max-width: 90px;
    }
    
    .logo-icon {
        width: 28px;
        height: 28px;
        font-size: 0.875rem;
    }
    
    .logo-main {
        font-size: 0.85rem;
    }
    
    .hero-title {
        font-size: 1.4rem;
    }
    
    /* About - telas pequenas */
    .about-content .section-title {
        font-size: 1.2rem;
    }
    
    .image-main {
        height: 180px;
    }
    
    .image-secondary {
        height: 130px;
        width: 75%;
    }
    
    .about-text {
        font-size: 0.8rem;
    }
}

/* ==================== LGPD / COOKIES BANNER ==================== */
/* Ajuste fino: altere estas variáveis para compactar ou afastar o banner */
:root {
    --lgpd-pad-x: 12px;
    --lgpd-pad-bottom: calc(8px + env(safe-area-inset-bottom));
    --lgpd-inner-py: 0.55rem;
    --lgpd-inner-px: 1rem;
    --lgpd-gap: 0.65rem 1rem;
    --lgpd-radius: 14px;
    --lgpd-icon: 38px;
    --lgpd-title-size: 0.95rem;
    --lgpd-msg-size: 0.76rem;
    --lgpd-msg-line: 1.45;
    --lgpd-msg-max-h: 5.5rem;
    --lgpd-btn-py: 0.42rem;
    --lgpd-btn-px: 1rem;
    --lgpd-btn-font: 0.8rem;
}

.lgpd-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9998;
    padding: 0 var(--lgpd-pad-x) var(--lgpd-pad-bottom);
    display: flex;
    justify-content: center;
    align-items: flex-end;
    pointer-events: none;
}

.lgpd-banner:not([hidden]) {
    pointer-events: auto;
}

.lgpd-banner[hidden] {
    display: none !important;
}

.lgpd-banner__backdrop {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    height: min(38vh, 260px);
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.82) 0%,
        rgba(0, 0, 0, 0.32) 60%,
        transparent 100%
    );
    opacity: 0;
    transition: opacity 0.55s ease;
    pointer-events: none;
    z-index: -1;
}

.lgpd-banner--visible .lgpd-banner__backdrop {
    opacity: 1;
}

.lgpd-banner__inner {
    position: relative;
    max-width: 1040px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--lgpd-gap);
    padding: var(--lgpd-inner-py) var(--lgpd-inner-px);
    background: linear-gradient(155deg, rgba(30, 30, 30, 0.98) 0%, rgba(12, 12, 12, 0.99) 100%);
    border: 1px solid rgba(255, 215, 0, 0.26);
    border-bottom: none;
    border-radius: var(--lgpd-radius) var(--lgpd-radius) 0 0;
    box-shadow:
        0 -12px 40px rgba(0, 0, 0, 0.55),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset,
        0 0 28px rgba(255, 215, 0, 0.05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transform: translate3d(0, 120%, 0) scale(0.94);
    opacity: 0;
    transition:
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.55s ease;
}

.lgpd-banner--visible .lgpd-banner__inner {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 1;
}

.lgpd-banner--leave .lgpd-banner__inner {
    transform: translate3d(0, 120%, 0) scale(0.94);
    opacity: 0;
}

.lgpd-banner__glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -35%);
    width: 60%;
    height: 48px;
    background: radial-gradient(ellipse, rgba(255, 215, 0, 0.12) 0%, transparent 72%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.6s ease 0.15s;
}

.lgpd-banner--visible .lgpd-banner__glow {
    opacity: 1;
}

.lgpd-banner__icon {
    flex-shrink: 0;
    width: var(--lgpd-icon);
    height: var(--lgpd-icon);
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 215, 0, 0.05) 100%);
    border: 1px solid rgba(255, 215, 0, 0.32);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    color: var(--accent);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
    animation: lgpdIconIn 0.65s cubic-bezier(0.34, 1.2, 0.64, 1) 0.2s both;
}

@keyframes lgpdIconIn {
    from {
        opacity: 0;
        transform: scale(0.6) rotate(-8deg);
    }
    to {
        opacity: 1;
        transform: scale(1) rotate(0);
    }
}

.lgpd-banner__body {
    flex: 1;
    min-width: min(100%, 200px);
    min-height: 0;
}

.lgpd-banner__title {
    font-family: 'Playfair Display', serif;
    font-size: var(--lgpd-title-size);
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.28rem;
    letter-spacing: 0.02em;
    line-height: 1.2;
}

.lgpd-banner__message {
    font-size: var(--lgpd-msg-size);
    line-height: var(--lgpd-msg-line);
    color: var(--text-secondary);
    margin: 0;
    white-space: pre-line;
    max-height: var(--lgpd-msg-max-h);
    overflow-y: auto;
    padding-right: 4px;
    scrollbar-width: thin;
}

.lgpd-banner__privacy {
    display: none;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.35rem;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 215, 0, 0.35);
    width: fit-content;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.lgpd-banner__privacy:hover {
    color: var(--accent-light);
    border-bottom-color: var(--accent-light);
}

.lgpd-banner__actions {
    display: flex;
    flex-shrink: 0;
    gap: 0.45rem;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
}

.btn-lgpd {
    font-family: 'Inter', sans-serif;
    font-size: var(--lgpd-btn-font);
    font-weight: 600;
    padding: var(--lgpd-btn-py) var(--lgpd-btn-px);
    border-radius: 8px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-lgpd--reject {
    background: transparent;
    color: var(--text-secondary);
    border-color: var(--border);
}

.btn-lgpd--reject:hover {
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-1px);
}

.btn-lgpd--accept {
    background: var(--gradient-primary);
    color: var(--primary);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.25);
}

.btn-lgpd--accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(255, 215, 0, 0.35);
}

/* Link no rodapé para reabrir preferências */
.footer-lgpd-link {
    font-size: 0.82rem;
    color: var(--text-muted);
    text-decoration: none;
    border-bottom: 1px dashed rgba(255, 215, 0, 0.25);
    transition: color 0.2s ease, border-color 0.2s ease;
    white-space: nowrap;
}

.footer-lgpd-link:hover {
    color: var(--accent);
    border-bottom-color: rgba(255, 215, 0, 0.5);
}

.footer-lgpd-link[hidden] {
    display: none !important;
}

/* Evita sobrepor o botão do WhatsApp enquanto o banner está visível */
body:has(.lgpd-banner--visible) .whatsapp-float {
    bottom: clamp(100px, 18vh, 160px);
    transition: bottom 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ==================== MODAL POLÍTICA LGPD (CMS) ==================== */
.lgpd-policy-modal {
    position: fixed;
    inset: 0;
    z-index: 10050;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    pointer-events: none;
}

.lgpd-policy-modal[hidden] {
    display: none !important;
}

.lgpd-policy-modal:not([hidden]) {
    pointer-events: auto;
}

.lgpd-policy-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.lgpd-policy-modal--open .lgpd-policy-modal__backdrop {
    opacity: 1;
}

.lgpd-policy-modal__dialog {
    position: relative;
    width: 100%;
    max-width: 640px;
    max-height: min(88vh, 720px);
    display: flex;
    flex-direction: column;
    background: linear-gradient(165deg, rgba(28, 28, 28, 0.98) 0%, rgba(10, 10, 10, 0.99) 100%);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    box-shadow:
        0 24px 80px rgba(0, 0, 0, 0.65),
        0 0 0 1px rgba(255, 255, 255, 0.06) inset,
        0 0 50px rgba(255, 215, 0, 0.08);
    transform: scale(0.92) translateY(24px);
    opacity: 0;
    transition:
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.4s ease;
}

.lgpd-policy-modal--open .lgpd-policy-modal__dialog {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.lgpd-policy-modal__close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.35);
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    z-index: 2;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.lgpd-policy-modal__close:hover {
    color: var(--accent);
    border-color: rgba(255, 215, 0, 0.35);
    background: rgba(255, 215, 0, 0.08);
}

.lgpd-policy-modal__head {
    padding: 1.35rem 3.25rem 0.75rem 1.35rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    flex-shrink: 0;
}

.lgpd-policy-modal__head-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.18) 0%, rgba(255, 215, 0, 0.04) 100%);
    border: 1px solid rgba(255, 215, 0, 0.28);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.15rem;
    flex-shrink: 0;
}

.lgpd-policy-modal__title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.25;
    padding-top: 0.15rem;
}

.lgpd-policy-modal__scroll {
    flex: 1;
    min-height: 0;
    overflow: hidden;
}

.lgpd-policy-modal__body {
    max-height: min(52vh, 420px);
    overflow-y: auto;
    padding: 1rem 1.35rem 1.25rem;
    font-size: 0.88rem;
    line-height: 1.7;
    color: var(--text-secondary);
    white-space: pre-line;
    scrollbar-width: thin;
}

.lgpd-policy-modal__body::-webkit-scrollbar {
    width: 6px;
}

.lgpd-policy-modal__body::-webkit-scrollbar-thumb {
    background: rgba(255, 215, 0, 0.25);
    border-radius: 4px;
}

.lgpd-policy-modal__foot {
    padding: 0.65rem 1.35rem 1.15rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    justify-content: flex-end;
    flex-shrink: 0;
}

.btn-lgpd-policy-ok {
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    padding: 0.55rem 1.5rem;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    background: var(--gradient-primary);
    color: var(--primary);
    box-shadow: 0 6px 22px rgba(255, 215, 0, 0.28);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-lgpd-policy-ok:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(255, 215, 0, 0.38);
}
