/* ============================================
   SPECIALIZED SERVICOS - FOLHA DE ESTILOS PREMIUM
   Cores: Preto, Bege e Dourado
   Fontes: Playfair Display + DM Sans
   ============================================ */

/* ============ VARIÁVEIS CSS ============ */
:root {
    /* Cores Principais - Preto, Bege e Dourado */
    --black: #0a0a0a;
    --black-light: #1a1a1a;
    --black-medium: #2d2d2d;
    --gold: #c9a227;
    --gold-light: #dbb84d;
    --gold-dark: #a68b1f;
    --beige: #f5f0e8;
    --beige-light: #faf8f4;
    --beige-dark: #e8e0d0;
    --cream: #fffdf8;
    --white: #ffffff;
    
    /* Tons de Cinza */
    --gray-100: #f8f8f8;
    --gray-200: #e8e8e8;
    --gray-300: #d0d0d0;
    --gray-400: #a8a8a8;
    --gray-500: #808080;
    --gray-600: #606060;
    --gray-700: #404040;
    --gray-800: #303030;
    
    /* Estados */
    --success: #2d6a4f;
    --danger: #9b2c2c;
    
    /* Tipografia */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'DM Sans', sans-serif;
    --font-accent: 'Cormorant Garamond', serif;
    
    /* Espaçamentos */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;
    
    /* Raio de Borda */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 50%;
    
    /* Sombras */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 60px rgba(0, 0, 0, 0.16);
    --shadow-gold: 0 0 40px rgba(201, 162, 39, 0.3);
    
    /* Transições */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ============ RESET E BASE ============ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--black);
    background-color: var(--cream);
    overflow-x: hidden;
}

body.loading {
    overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--black);
}

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

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

ul {
    list-style: none;
}

.text-accent {
    color: var(--gold) !important;
}

.text-light {
    color: var(--gray-400) !important;
}

.text-white {
    color: var(--cream) !important;
}

.rounded-custom {
    border-radius: var(--radius-lg);
}

.section-padding {
    padding: 120px 0;
}

.bg-light {
    background-color: var(--beige) !important;
}

.bg-dark {
    background-color: var(--black) !important;
}

/* ============ PRELOADER ============ */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

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

.preloader-logo {
    margin-bottom: var(--spacing-xl);
}

.preloader-logo .logo-text {
    display: block;
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--cream);
    letter-spacing: 8px;
    animation: fadeInUp 0.6s ease forwards;
}

.preloader-logo .logo-sub {
    display: block;
    font-family: var(--font-accent);
    font-size: 1.2rem;
    color: var(--gold);
    letter-spacing: 12px;
    margin-top: 10px;
    animation: fadeInUp 0.6s ease 0.2s forwards;
    opacity: 0;
}

.preloader-stats {
    display: flex;
    justify-content: center;
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-xl);
}

.preloader-stats .stat-item {
    text-align: center;
    animation: fadeInUp 0.6s ease 0.4s forwards;
    opacity: 0;
}

.preloader-stats .stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
}

.preloader-stats .stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

.preloader-bar {
    width: 240px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin: 0 auto var(--spacing-lg);
}

.preloader-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: var(--radius-full);
    width: 0;
    animation: progressBar 2s ease forwards;
}

.preloader-text {
    font-family: var(--font-accent);
    font-size: 1.1rem;
    color: var(--gray-500);
    letter-spacing: 2px;
    animation: fadeInUp 0.6s ease 0.6s forwards;
    opacity: 0;
}

@keyframes progressBar {
    0% { width: 0; }
    100% { width: 100%; }
}

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

/* ============ NAVBAR (FORÇADO CONTRA BOOTSTRAP) ============ */
#mainNav.navbar {
    padding: 20px 0;
    background: rgba(8, 8, 8, 0.92) !important;
    backdrop-filter: blur(18px);
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(201, 162, 39, 0.15);
    z-index: 9999;
}

/* Navbar após scroll */
#mainNav.navbar.scrolled {
    padding: 12px 0;
    background: rgba(5, 5, 5, 0.97) !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

/* LOGO */
.navbar-brand img {
    height: 50px;
}

/* BADGE + EXCELÊNCIA */
.badge-years {
    background: var(--gold);
    color: var(--black);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 16px;
    letter-spacing: 1px;
}

/* LINKS */
.navbar-nav {
    gap: 10px;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 10px 18px;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #fff !important;
}

/* Linha dourada hover */
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 28px;
}

/* ============ BOTÃO ORÇAMENTO (FORÇADO) ============ */
.btn-orcamento {
    background: var(--gold) !important;
    color: #000 !important;
    padding: 12px 26px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    border: none !important;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(201, 162, 39, 0.35);
}

.btn-orcamento i {
    color: #000;
}

.btn-orcamento:hover {
    background: var(--gold-light) !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 162, 39, 0.55);
}

/* ============ MENU MOBILE ============ */
.navbar-toggler {
    border: none;
    background: transparent;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.toggler-icon {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 26px;
}

.toggler-icon span {
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Mobile menu */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: rgba(5, 5, 5, 0.97);
        margin-top: 20px;
        padding: 30px;
        border-radius: 12px;
        border: 1px solid rgba(201, 162, 39, 0.2);
    }

    .navbar-nav .nav-link {
        padding: 14px 10px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .btn-orcamento {
        margin-top: 20px;
        justify-content: center;
    }
}

/* ============ HERO OFFSET (NAVBAR FIXA) ============ */
.hero-section {
    padding-top: 120px;
}

/* ============ SEÇÃO HERO ============ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    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 no-repeat;
    z-index: -3;
}

.hero-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%);
    z-index: -2;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(201, 162, 39, 0.08) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: -1;
}

.hero-content {
    padding-top: 80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(201, 162, 39, 0.1);
    border: 1px solid rgba(201, 162, 39, 0.3);
    color: var(--gold);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: var(--spacing-lg);
    letter-spacing: 1px;
}

.hero-badge i {
    font-size: 0.8rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: var(--spacing-lg);
    line-height: 1.15;
    letter-spacing: -1px;
}

.hero-subtitle {
    margin-bottom: var(--spacing-sm);
}

.hero-subtitle .highlight {
    display: inline-block;
    font-family: var(--font-accent);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 2px;
}

.hero-services {
    color: var(--gray-400);
    font-size: 1.1rem;
    margin-bottom: var(--spacing-xl);
    letter-spacing: 0.5px;
}

.hero-services .dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: var(--radius-full);
    margin: 0 12px;
    vertical-align: middle;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: 10px; /* Mantive o respiro para não colar nos botões */
    flex-wrap: wrap;
}

.btn-primary-custom {
    background: var(--gold);
    color: var(--black);
    padding: 16px 32px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: none;
    transition: var(--transition-normal);
    letter-spacing: 0.5px;
}

.btn-primary-custom:hover {
    color: var(--black);
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.btn-outline-custom {
    background: transparent;
    color: var(--cream);
    padding: 16px 32px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition-normal);
}

.btn-outline-custom:hover {
    color: var(--cream);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--cream);
}

.btn-outline-custom i {
    transition: var(--transition-normal);
}

.btn-outline-custom:hover i {
    transform: translateX(5px);
}

/* Estatísticas do Hero */
.hero-stats {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    margin-top: -32px; /* VALOR AJUSTADO: Nem colado, nem em cima da linha */
    position: relative;
    z-index: 5;
}

.stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 24px;
    min-width: 150px;
    backdrop-filter: blur(10px);
    transition: var(--transition-normal);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-5px);
    border-color: rgba(201, 162, 39, 0.3);
}

.stat-card .stat-number {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--cream);
    line-height: 1;
}

.stat-card .stat-plus {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gold);
}

.stat-card .stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-top: 8px;
    letter-spacing: 0.5px;
}

/* Cartão de Contato do Hero */
.hero-contact-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    overflow: hidden;
    backdrop-filter: blur(20px);
}

/* Cabeçalho do cartão de contato */
.contact-card-header {
    background: var(--gold);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 14px;
}

/* Ícone do cabeçalho */
.contact-card-header i {
    font-size: 1.6rem;
    color: var(--black);
}

/* Título do cabeçalho */
.contact-card-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--black);
    margin: 0;
}

/* Corpo do cartão de contato */
.contact-card-body {
    padding: 24px;
}

/* Item individual de contato */
.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    background: rgba(255, 255, 255, 0.02);
    transition: var(--transition-normal);
}

/* Efeito hover no item de contato */
.contact-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
}

/* Ícone do contato */
.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

/* Estilo do ícone para WhatsApp */
.contact-item.whatsapp .contact-icon {
    background: rgba(37, 211, 102, 0.15);
    color: #25d366;
}

/* Estilo do ícone para E-mail */
.contact-item.email .contact-icon {
    background: rgba(201, 162, 39, 0.15);
    color: var(--gold);
}

/* Informações do contato */
.contact-info {
    display: flex;
    flex-direction: column;
}

/* Rótulo do contato */
.contact-label {
    font-size: 0.75rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Valor do contato */
.contact-value {
    font-size: 1rem;
    color: var(--cream);
    font-weight: 500;
}

/* Rodapé do cartão de contato */
.contact-card-footer {
    padding: 16px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Selo de atendimento 24 horas */
.badge-24h {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(45, 106, 79, 0.15);
    color: #4ade80;
    padding: 12px;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* ============ SELOS E TÍTULOS DAS SEÇÕES ============ */
.section-badge {
    display: inline-block;
    background: rgba(201, 162, 39, 0.1);
    border: 1px solid rgba(201, 162, 39, 0.3);
    color: var(--gold);
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: var(--spacing-md);
}

/* Título principal da seção */
.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.5px;
}

/* Subtítulo da seção */
.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ============ SEÇÃO SOBRE ============ */
.about-images {
    position: relative;
    padding: 50px;
}

/* Imagem principal da seção sobre */
.about-img-main img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

/* Imagem secundária da seção sobre */
.about-img-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 12px;
    background: var(--cream);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* Estilo da imagem secundária */
.about-img-secondary img {
    border-radius: var(--radius-md);
}

/* Selo informativo da seção sobre */
.about-badge {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--gold);
    padding: 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

/* Número do selo */
.about-badge .badge-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--black);
    line-height: 1;
}

/* Texto do selo */
.about-badge .badge-text {
    font-size: 0.75rem;
    color: var(--black);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Conteúdo textual da seção sobre */
.about-content {
    padding-left: 40px;
}

/* Texto descritivo da seção sobre */
.about-text {
    color: var(--gray-600);
    margin-bottom: var(--spacing-md);
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Lista de diferenciais */
.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-sm);
    margin-top: var(--spacing-lg);
}

/* Item individual de diferencial */
.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--black);
    font-weight: 500;
}

/* Ícone do diferencial */
.feature-item i {
    color: var(--gold);
    font-size: 1.2rem;
}

/* Cartões de Missão, Visão e Valores */
.mvv-card {
    background: var(--cream);
    padding: 50px 35px;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    height: 100%;
    transition: var(--transition-normal);
    border: 1px solid transparent;
}

/* Efeito ao passar o mouse no cartão MVV */
.mvv-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(201, 162, 39, 0.3);
}

/* Ícone do cartão MVV */
.mvv-icon {
    width: 90px;
    height: 90px;
    background: rgba(201, 162, 39, 0.1);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-lg);
}

/* Ícone interno do cartão MVV */
.mvv-icon i {
    font-size: 2.2rem;
    color: var(--gold);
}

/* Título do cartão MVV */
.mvv-card h3 {
    font-size: 1.4rem;
    margin-bottom: var(--spacing-sm);
}

/* Texto do cartão MVV */
.mvv-card p {
    color: var(--gray-600);
    font-size: 1rem;
    line-height: 1.7;
}

/* ============ SEÇÃO DE SERVIÇOS ============ */
#servicos {
    background: linear-gradient(180deg, var(--cream) 0%, var(--beige) 100%);
}

/* Cartão de serviço com efeito 3D */
.service-card {
    height: 400px;
    perspective: 1000px;
}

/* Conteúdo interno do cartão de serviço */
.service-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

/* Animação de rotação ao passar o mouse */
.service-card:hover .service-card-inner {
    transform: rotateY(180deg);
}

/* Frente e verso do cartão de serviço */
.service-front,
.service-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: var(--radius-xl);
    padding: 45px 35px;
}

/* Frente do cartão de serviço */
.service-front {
    background: var(--cream);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--beige-dark);
}

/* Ícone do serviço */
.service-icon {
    width: 110px;
    height: 110px;
    background: var(--black);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-lg);
}

/* Ícone interno do serviço */
.service-icon i {
    font-size: 2.8rem;
    color: var(--gold);
}

/* Título do serviço (frente) */
.service-front h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

/* Descrição do serviço (frente) */
.service-front p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Verso do cartão de serviço */
.service-back {
    background: var(--black);
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Título do verso do cartão de serviço */
.service-back h4 {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Lista de itens do serviço */
.service-back ul {
    margin-bottom: var(--spacing-lg);
}

/* Item individual da lista de serviços */
.service-back ul li {
    color: var(--gray-300);
    font-size: 0.95rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Ícone do item da lista */
.service-back ul li i {
    color: var(--gold);
    font-size: 0.85rem;
}

/* Botão do serviço */
.btn-service {
    background: var(--gold);
    color: var(--black);
    padding: 14px 24px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    transition: var(--transition-normal);
    display: block;
}

/* Efeito hover do botão do serviço */
.btn-service:hover {
    background: var(--gold-light);
    color: var(--black);
    transform: translateY(-2px);
}

/* ============ SEÇÃO DA GALERIA ============ */
.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: var(--spacing-xl);
}

.filter-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray-400);
    padding: 12px 28px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-normal);
    letter-spacing: 0.5px;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}

.gallery-item {
    transition: var(--transition-normal);
}

.gallery-item.hidden {
    display: none;
}

.gallery-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}

.gallery-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(10, 10, 10, 0.9) 0%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: var(--transition-normal);
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-card:hover img {
    transform: scale(1.1);
}

.gallery-category {
    color: var(--gold);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 8px;
}

.gallery-overlay h4 {
    color: var(--cream);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.gallery-overlay i {
    color: var(--gold);
    font-size: 1.5rem;
}

/* ============ SEÇÃO DE DIFERENCIAIS ============ */
.differentials-section { /* Seletor da seção principal para controle do espaçamento externo */
    margin-bottom: -50px; /* Ajuste este valor para diminuir o espaço */
    padding-bottom: 0;
}

.diff-card {
    background: var(--cream);
    padding: 30px 30px;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-sm);
    height: 100%;
    transition: var(--transition-normal);
    border: 1px solid var(--beige-dark);
}

.diff-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(201, 162, 39, 0.3);
}

.diff-icon {
    width: 80px;
    height: 80px;
    background: var(--black);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
}

.diff-icon i {
    font-size: 1.8rem;
    color: var(--gold);
}

.diff-card h3 {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-sm);
}

.diff-card p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ============ SEÇÃO DE DEPOIMENTOS ============ */
.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-wrapper {
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    flex: 0 0 100%;
    padding: 0 20px;
}

.testimonial-content {
    background: var(--cream);
    padding: 50px 45px;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--beige-dark);
}

.testimonial-rating {
    margin-bottom: var(--spacing-md);
}

.testimonial-rating i {
    color: var(--gold);
    font-size: 1.2rem;
    margin: 0 3px;
}

.testimonial-text {
    font-family: var(--font-accent);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    overflow: hidden;
    border: 3px solid var(--gold);
}

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

.author-info {
    text-align: left;
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.author-info span {
    color: var(--gray-500);
    font-size: 0.9rem;
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: var(--spacing-lg);
}

.prev-btn,
.next-btn {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    border: 1px solid var(--beige-dark);
    background: var(--cream);
    color: var(--black);
    cursor: pointer;
    transition: var(--transition-normal);
}

.prev-btn:hover,
.next-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
}

.testimonial-dots {
    display: flex;
    gap: 10px;
}

.testimonial-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: var(--radius-full);
    background: var(--beige-dark);
    cursor: pointer;
    transition: var(--transition-normal);
}

.testimonial-dots .dot.active {
    background: var(--gold);
    width: 30px;
    border-radius: 6px;
}

/* ============ LIMPEZA DE ESPAÇOS GLOBAIS (ENTRE SEÇÕES) ============ */
/* Força a remoção de espaços vazios entre a seção de Processo e a seção de Carreiras */
.process-section, 
section[id*="process"], 
section[id*="funciona"] {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

.careers-section, 
section[id*="career"], 
section[id*="trabalhe"] {
    padding-top: 0 !important;
    margin-top: -160px !important; /* Aproxima o formulário dos textos dos ícones */
}

/* Garante que contêineres e linhas internas não criem espaçamentos extras */
.process-section .container, 
.process-section .row,
.careers-section .container {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

/* ============ SEÇÃO DE PROCESSO ============ */
.process-step {
    text-align: center;
    padding: 10px; /* Reduz o espaçamento para aproximar texto e ícone */
    position: relative;
}

.step-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    color: var(--beige);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
}

.step-icon {
    width: 90px;
    height: 90px;
    background: var(--gold);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    position: relative;
    z-index: 1;
}

.step-icon i {
    font-size: 2rem;
    color: var(--black);
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-sm);
}

.process-step p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0; /* Remove espaço extra abaixo do texto */
}

/* ============ SEÇÃO DE CARREIRAS ============ */
.career-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-sm);
    margin-top: var(--spacing-lg);
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray-300);
    font-weight: 500;
}

.benefit-item i {
    color: var(--gold);
    font-size: 1.1rem;
}

.career-form-card {
    background: var(--cream);
    padding: 10px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.career-form-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

/* ============ SEÇÃO DE CONTATO ============ */
.contact-info-card {
    background: var(--cream);
    padding: 30px 35px;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-sm);
    height: 100%;
    border: 1px solid var(--beige-dark);
    transition: var(--transition-normal);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.contact-info-icon {
    width: 70px;
    height: 70px;
    background: var(--black);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
}

.contact-info-icon i {
    font-size: 1.5rem;
    color: var(--gold);
}

.contact-info-card h3 {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-sm);
}

.contact-info-card p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.7;
}

.contact-info-card a {
    color: var(--gray-600);
    display: block;
}

.contact-info-card a:hover {
    color: var(--gold);
}

.contact-form-card {
    background: var(--cream);
    padding: 30px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--beige-dark);
}

.contact-form-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

/* ============ FORMULÁRIOS ============ */
.form-label {
    font-weight: 500;
    color: var(--black);
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.form-control,
.form-select {
    background: var(--beige-light);
    border: 1px solid var(--beige-dark);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    font-size: 1rem;
    color: var(--black);
    transition: var(--transition-normal);
}

.form-control:focus,
.form-select:focus {
    background: var(--cream);
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15);
    outline: none;
}

.form-control::placeholder {
    color: var(--gray-500);
}

.form-control.is-invalid {
    border-color: var(--danger);
}

.form-control.is-valid {
    border-color: var(--success);
}

.form-success {
    background: rgba(45, 106, 79, 0.1);
    border: 1px solid rgba(45, 106, 79, 0.3);
    color: var(--success);
    padding: 16px;
    border-radius: var(--radius-md);
    text-align: center;
    margin-top: var(--spacing-md);
    display: none;
}

.form-success.show {
    display: block;
    animation: fadeInUp 0.3s ease;
}

.form-success i {
    font-size: 1.5rem;
    margin-bottom: 8px;
    display: block;
}

/* ============ SEÇÃO DE CHAMADA PARA AÇÃO (CTA) ============ */
.cta-section {
    background: var(--black);
    padding: 100px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--cream);
    margin-bottom: var(--spacing-md);
}

.cta-content p {
    color: var(--gray-400);
    font-size: 1.1rem;
    margin-bottom: var(--spacing-lg);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.btn-cta-primary {
    background: var(--gold);
    color: var(--black);
    padding: 18px 36px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition-normal);
}

.btn-cta-primary:hover {
    background: var(--gold-light);
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.btn-cta-secondary {
    background: transparent;
    color: var(--cream);
    padding: 18px 36px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition-normal);
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--cream);
    border-color: var(--cream);
}

/* ============ RODAPÉ ============ */
.footer {
    background: var(--black);
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.3;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    margin-bottom: var(--spacing-xl);
}

.footer-brand .brand-name {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--cream);
    letter-spacing: 4px;
    margin-bottom: 5px;
}

.footer-brand .brand-sub {
    font-family: var(--font-accent);
    font-size: 0.9rem;
    color: var(--gold);
    letter-spacing: 8px;
    text-transform: uppercase;
}

.footer-about {
    color: var(--gray-400);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-xl);
    max-width: 400px;
    font-weight: 300;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social a {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(201, 162, 39, 0.2);
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--cream);
    margin-bottom: var(--spacing-xl);
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 30px;
    height: 1px;
    background: var(--gold);
}

.footer-links {
    padding-left: 0;
}

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

.footer-links a {
    color: var(--gray-400);
    font-size: 1rem;
    transition: var(--transition-normal);
    position: relative;
    padding-left: 0;
}

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

.footer-contact {
    padding-left: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: var(--gray-400);
    font-size: 1rem;
    margin-bottom: 24px;
    line-height: 1.6;
}

.footer-contact i {
    color: var(--gold);
    font-size: 1.1rem;
    margin-top: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 100px;
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: var(--gray-500);
    font-size: 0.85rem;
    margin-bottom: 0;
    letter-spacing: 0.5px;
}

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

.footer-bottom-links a {
    color: var(--gray-500);
    font-size: 0.85rem;
    transition: var(--transition-normal);
}

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

@media (max-width: 767.98px) {
    .footer {
        padding: 80px 0 40px;
    }
    .footer-bottom {
        margin-top: 60px;
        flex-direction: column;
        text-align: center;
    }
    .footer-bottom-links {
        justify-content: center;
        gap: 20px;
    }
}

/* ============ WHATSAPP FLUTUANTE ============ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition-normal);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
}

.whatsapp-float .pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-full);
    background: #25d366;
    animation: pulse 2s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* ============ VOLTAR AO TOPO ============ */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--black);
    border: 1px solid var(--gold);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-5px);
}

/* ============ RESPONSIVIDADE ============ */
@media (max-width: 1199.98px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 991.98px) {
    .section-padding {
        padding: 80px 0;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .about-content {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .about-images {
        padding: 30px;
    }
    
    .career-benefits {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-primary-custom,
    .btn-outline-custom {
        width: 100%;
        justify-content: center;
    }
    
    .stat-card {
        min-width: calc(50% - 8px);
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .preloader-stats {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .contact-form-card,
    .career-form-card {
        padding: 30px 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 575.98px) {
    .hero-services .dot {
        display: none;
    }
    
    .hero-services {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
    
    .back-to-top {
        bottom: 85px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* ============ ACESSIBILIDADE ============ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Estilos de foco */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

/* Pular para o conteúdo */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--gold);
    color: var(--black);
    padding: 10px 20px;
    z-index: 10000;
    transition: var(--transition-normal);
}

.skip-link:focus {
    top: 0;
}