/* =========================================
   NEOSKIN ESTÉTICA AVANÇADA - STYLES
   ========================================= 
   
   ÍNDICE:
   1. Variáveis CSS (cores, tipografia, espaçamentos)
   2. Reset e Base
   3. Tipografia
   4. Componentes (botões, cards, formulários)
   5. Header / Navegação
   6. Hero Section
   7. Sobre Nós
   8. Serviços
   9. Depoimentos
   10. Contato
   11. Localização
   12. Footer
   13. Elementos Flutuantes (WhatsApp, Back to Top)
   14. Animações
   15. Media Queries (Responsividade)
   
   ========================================= */

/* =========================================
   1. VARIÁVEIS CSS
   ========================================= */
:root {
    /* Cores principais - Identidade Visual NeoSkin */
    --primary: #0A0A0A;
    /* Preto sofisticado */
    --primary-light: #1A1A1A;
    --primary-dark: #000000;
    --secondary: #D4AF37;
    /* Dourado */
    --secondary-light: #E8C547;
    --accent: #C9A227;

    /* Neutras */
    --dark: #0A0A0A;
    --dark-soft: #1A1A1A;
    --gray-dark: #4A4A4A;
    --gray: #6B6B6B;
    --gray-light: #A0A0A0;
    --light: #F8F8F8;
    --white: #FFFFFF;

    /* Gradientes */
    --gradient-primary: linear-gradient(135deg, #1A1A1A 0%, #000000 100%);
    --gradient-gold: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    --gradient-overlay: transparent;

    /* Tipografia */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;

    /* Tamanhos de fonte */
    --fs-xs: 0.75rem;
    /* 12px */
    --fs-sm: 0.875rem;
    /* 14px */
    --fs-base: 1rem;
    /* 16px */
    --fs-md: 1.125rem;
    /* 18px */
    --fs-lg: 1.25rem;
    /* 20px */
    --fs-xl: 1.5rem;
    /* 24px */
    --fs-2xl: 2rem;
    /* 32px */
    --fs-3xl: 2.5rem;
    /* 40px */
    --fs-4xl: 3rem;
    /* 48px */
    --fs-5xl: 3.5rem;
    /* 56px */

    /* Espaçamentos */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;

    /* Bordas */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 50%;

    /* Sombras */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.2);

    /* Transições */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Header */
    --header-height: 80px;
}

/* =========================================
   2. RESET E BASE
   ========================================= */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box !important;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    font-family: var(--font-body);
    font-size: var(--fs-base);
    line-height: 1.6;
    color: var(--gray-dark);
    background-color: var(--white);
    overflow-x: hidden;
    max-width: 100vw;
    width: 100%;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

ul,
ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

input,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* =========================================
   3. TIPOGRAFIA
   ========================================= */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
}

.section-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: var(--fs-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary);
    margin-bottom: var(--space-sm);
}

.section-title {
    font-size: var(--fs-3xl);
    margin-bottom: var(--space-md);
    background: linear-gradient(180deg, #1A1A1A 0%, #3A3A3A 40%, #5A5A5A 70%, #707070 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.15));
}

.section-subtitle {
    font-size: var(--fs-md);
    color: var(--gray);
    max-width: 600px;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.section-header .section-subtitle {
    margin: 0 auto;
}

.highlight {
    background: linear-gradient(180deg, #F0D565 0%, #D4AF37 40%, #B8963A 70%, #8A6B28 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3)) drop-shadow(0 2px 4px rgba(180, 140, 50, 0.3));
}

/* =========================================
   4. COMPONENTES
   ========================================= */

/* Botões */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: var(--space-sm) var(--space-lg);
    font-family: var(--font-heading);
    font-size: var(--fs-base);
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
    white-space: nowrap;
}

.btn i {
    font-size: 1.1em;
}

.btn-primary {
    background: linear-gradient(180deg, #2A2A2A 0%, #0A0A0A 50%, #1A1A1A 100%);
    color: var(--white);
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.4),
        0 2px 4px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(60, 60, 60, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.5),
        0 4px 8px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    background: linear-gradient(180deg, #3A3A3A 0%, #1A1A1A 50%, #2A2A2A 100%);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary);
}

.btn-cta {
    background: linear-gradient(180deg, #E8C95A 0%, #D4AF37 40%, #B8963A 70%, #9A7B2E 100%);
    color: var(--dark);
    padding: var(--space-xs) var(--space-md);
    font-size: var(--fs-sm);
    box-shadow:
        0 4px 12px rgba(180, 140, 50, 0.4),
        0 2px 4px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(180, 140, 50, 0.3);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow:
        0 8px 20px rgba(180, 140, 50, 0.5),
        0 4px 8px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    background: linear-gradient(180deg, #F0D565 0%, #E8C547 40%, #C9A227 70%, #A88525 100%);
}

.btn-full {
    width: 100%;
}

/* =========================================
   5. HEADER / NAVEGAÇÃO
   ========================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition-normal);
}

.header.scrolled {
    height: 70px;
    box-shadow: var(--shadow-md);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: 1400px;
    /* Aumentado para dar mais espaço ao menu */
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.logo-img {
    height: 55px;
    width: auto;
}

.logo-text {
    /* Esconder texto pois a logo já tem o nome */
    display: none;
}

.nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    gap: 1.25rem;
    /* Reduzido de 2rem para caber melhor */
    align-items: center;
    flex-wrap: nowrap;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: var(--fs-sm);
    font-weight: 500;
    color: var(--gray-dark);
    padding: var(--space-xs) 0;
    position: relative;
    white-space: nowrap;
    /* Garante que o texto fique em uma linha só */
    display: block;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition-normal);
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    width: 32px;
    height: 24px;
    position: relative;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    position: absolute;
    width: 100%;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition-normal);
}

.hamburger {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger::before {
    content: '';
    top: -8px;
}

.hamburger::after {
    content: '';
    bottom: -8px;
}

.nav-toggle.active .hamburger {
    background: transparent;
}

.nav-toggle.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle.active .hamburger::after {
    bottom: 0;
    transform: rotate(-45deg);
}

/* Menu mobile flutuante - oculto por padrão (visível apenas em mobile via media query) */
.mobile-menu-toggle,
.mobile-nav {
    display: none;
}

/* Logo centralizada no Hero */
.logo-mobile-float {
    position: absolute;
    top: 100px;
    /* Descido para não ser cortado pelo header (80px) */
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    display: flex;
    justify-content: center;
    pointer-events: auto;
}

.logo-mobile-float img {
    height: 200px;
    /* Tamanho dobrado para desktop */
    width: auto;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.5));
    transition: var(--transition-normal);
}

/* =========================================
   6. HERO SECTION
   ========================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../images/hero-bg.png') center/cover no-repeat;
    background-color: var(--primary-dark);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-overlay);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    padding: var(--space-3xl) 0;
}

.hero-title {
    font-size: var(--fs-5xl);
    margin-bottom: var(--space-md);
    background: linear-gradient(180deg, #FFFFFF 0%, #E0E0E0 40%, #B0B0B0 70%, #909090 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4)) drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.hero-subtitle {
    font-size: var(--fs-lg);
    font-weight: 500;
    color: var(--white);
    text-shadow:
        0 2px 4px rgba(0, 0, 0, 0.8),
        0 4px 12px rgba(0, 0, 0, 0.5);
    margin-bottom: var(--space-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.hero-scroll a {
    color: var(--white);
    font-size: var(--fs-xl);
    opacity: 0.7;
}

.hero-scroll a:hover {
    opacity: 1;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* =========================================
   CAROUSEL GENÉRICO (Hero, Botox, Depilação)
   ========================================= */
.carousel-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center 15%;
    /* Empurra as fotos para baixo no desktop, evitando a logo */
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

/* Navegação por Bolinhas */
.carousel-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: var(--space-sm);
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: var(--transition-normal);
    padding: 0;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

.dot.active {
    background: var(--secondary);
    border-color: var(--secondary);
    transform: scale(1.3);
}

/* Ajustes específicos para o Hero */
.hero .carousel-dots {
    bottom: 80px;
}

.hero .dot {
    width: 12px;
    height: 12px;
}

/* Responsividade do Carousel */
@media (max-width: 768px) {
    .hero .carousel-dots {
        bottom: 100px;
    }
}

@media (max-width: 480px) {
    .hero .carousel-dots {
        bottom: 90px;
    }
}

/* =========================================
   7. SOBRE NÓS
   ========================================= */
.sobre {
    padding: var(--space-3xl) 0;
    background: var(--light);
}

.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.sobre-image {
    position: relative;
}

.sobre-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.sobre-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gradient-gold);
    color: var(--dark);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.badge-number {
    display: block;
    font-family: var(--font-heading);
    font-size: var(--fs-3xl);
    font-weight: 700;
    line-height: 1;
}

.badge-text {
    font-size: var(--fs-xs);
    font-weight: 600;
    text-transform: uppercase;
}

.sobre-text .section-title {
    font-size: var(--fs-2xl);
}

.sobre-description {
    margin-bottom: var(--space-md);
    color: var(--gray);
}

.sobre-features {
    margin: var(--space-lg) 0;
}

.sobre-features li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
    color: var(--gray-dark);
}

.sobre-features i {
    color: var(--secondary);
    font-size: var(--fs-lg);
}

/* =========================================
   7.5 SEÇÃO DE CONFIANÇA - NÚMEROS
   ========================================= */
.trust-section {
    background: linear-gradient(135deg, var(--dark) 0%, #1a1a1a 100%);
    padding: var(--space-xl) 0;
}

.trust-badges {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-md) var(--space-lg);
    transition: var(--transition-normal);
}

.trust-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    border-color: var(--secondary);
}

.trust-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.trust-icon.google-badge {
    background: linear-gradient(135deg, #4285F4 0%, #34A853 50%, #FBBC05 75%, #EA4335 100%);
    color: var(--white);
}

.trust-icon.clients-badge {
    background: linear-gradient(135deg, var(--secondary) 0%, #c9a227 100%);
    color: var(--dark);
}

.trust-icon.experience-badge {
    background: linear-gradient(135deg, #8B5CF6 0%, #6366F1 100%);
    color: var(--white);
}

.trust-icon.payment-badge {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: var(--white);
}

.trust-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.trust-stars {
    display: flex;
    gap: 2px;
    color: #FBBC05;
    font-size: 0.9rem;
}

.trust-number {
    font-family: var(--font-heading);
    font-size: var(--fs-xl);
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.trust-label {
    font-size: var(--fs-sm);
    color: rgba(255, 255, 255, 0.7);
}

.trust-label-title {
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}

.payment-icons {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.payment-icons span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: var(--fs-xs);
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 8px;
    border-radius: var(--radius-sm);
}

.payment-icons span i {
    color: var(--secondary);
}

/* =========================================
   8. SERVIÇOS
   ========================================= */
.servicos {
    padding: var(--space-3xl) 0;
    background: var(--white);
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.servicos-grid.grid-mobile-2 {
    grid-template-columns: repeat(4, 1fr);
}

.servico-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
}

.servico-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary);
}

.servico-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #2A2A2A 0%, #0A0A0A 50%, #1A1A1A 100%);
    border-radius: var(--radius-full);
    color: var(--secondary);
    font-size: var(--fs-lg);
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(60, 60, 60, 0.2);
}

.servico-card:hover .servico-icon {
    background: var(--gradient-gold);
    color: var(--dark);
    transform: scale(1.1);
}

.servico-title {
    font-size: var(--fs-lg);
    font-weight: 700;
    color: var(--dark);
    margin: 0;
}

.servico-image {
    width: 100%;
    height: 180px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.servico-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.servico-card:hover .servico-image img {
    transform: scale(1.05);
}

.servico-description {
    font-size: var(--fs-sm);
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
    max-width: 280px;
}

.servico-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: var(--fs-sm);
    font-weight: 700;
    color: var(--dark);
    margin-top: auto;
    transition: var(--transition-normal);
}

.servico-link:hover {
    color: var(--primary);
    gap: var(--space-sm);
}

/* =========================================
   SEÇÕES DE DESTAQUE (Botox e Depilação)
   ========================================= */
.destaque-section {
    padding: var(--space-3xl) 0;
}

.destaque-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.destaque-image {
    position: relative;
    width: 100%;
}

.destaque-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
}

.destaque-info {
    padding: var(--space-md);
}

/* =========================================
   9. DEPOIMENTOS (COM CARROSSÉIS)
   ========================================= */
.depoimentos {
    padding: var(--space-3xl) 0;
    background: linear-gradient(180deg, #1A1A1A 0%, #0A0A0A 50%, #151515 100%);
    color: var(--white);
}

.depoimentos .section-tag {
    color: var(--secondary);
}

.depoimentos .section-title {
    color: var(--white);
}

.depoimentos .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

/* Grid de Carrosséis */
.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

/* Container do Carrossel */
.depoimento-carousel {
    position: relative;
    overflow: hidden;
}

.depoimento-carousel .carousel-track {
    position: relative;
    min-height: 340px;
}

/* Card de Depoimento */
.depoimento-carousel .depoimento-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateX(50px) translateZ(0);
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    pointer-events: none;
    will-change: opacity, transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.depoimento-carousel .depoimento-card.active {
    opacity: 1;
    transform: translateX(0) translateZ(0);
    pointer-events: auto;
}

.depoimento-stars {
    margin-bottom: var(--space-md);
    color: var(--secondary);
}

.depoimento-stars i {
    margin-right: 2px;
}

.depoimento-text {
    font-style: italic;
    margin-bottom: var(--space-lg);
    line-height: 1.7;
    font-size: var(--fs-base);
}

.depoimento-author {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

/* Foto do Cliente com Animação Pulse Dourada */
.author-photo {
    width: 55px;
    height: 55px;
    border-radius: var(--radius-full);
    overflow: hidden;
    border: 3px solid var(--secondary);
    flex-shrink: 0;
    /* Borda dourada estática como fallback */
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.3);
}

.author-photo img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
}

/* Animação apenas em desktop para evitar glitch no mobile */
@media (min-width: 769px) {
    .author-photo.pulse-gold {
        animation: pulse-gold 2s infinite;
        will-change: box-shadow;
    }
}

@keyframes pulse-gold {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

/* Avatar antigo (fallback) */
.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--secondary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: var(--fs-lg);
}

.author-name {
    display: block;
    font-weight: 600;
}

.author-service {
    font-size: var(--fs-sm);
    opacity: 0.7;
}

/* Dots de Navegação do Carrossel */
.depoimento-carousel .carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: var(--space-md);
}

.depoimento-carousel .carousel-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.depoimento-carousel .carousel-dots .dot.active {
    background: var(--secondary);
    transform: scale(1.2);
}

.depoimento-carousel .carousel-dots .dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

.google-reviews {
    text-align: center;
}

.google-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: var(--white);
    color: var(--dark);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-md);
    font-weight: 500;
}

.google-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.google-logo {
    height: 20px;
    width: auto;
}

/* =========================================
   10. CONTATO
   ========================================= */
.contato {
    padding: var(--space-3xl) 0;
    background: var(--light);
}

.contato-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: start;
}

.contato-info .section-title {
    font-size: var(--fs-2xl);
}

.contato-description {
    color: var(--gray);
    margin-bottom: var(--space-xl);
}

.contato-channels {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.channel-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.channel-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.channel-item i {
    font-size: var(--fs-xl);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    color: var(--white);
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.channel-item.whatsapp i {
    background: linear-gradient(180deg, #2ED77A 0%, #25D366 40%, #1EBA58 100%);
}

.channel-item.phone i {
    background: linear-gradient(180deg, #2A2A2A 0%, #0A0A0A 50%, #1A1A1A 100%);
}

.channel-item.instagram i {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.channel-item.facebook i {
    background: linear-gradient(180deg, #1E90FF 0%, #1877F2 50%, #1560C4 100%);
}

.channel-label {
    display: block;
    font-size: var(--fs-sm);
    color: var(--gray);
}

.channel-value {
    font-weight: 600;
    color: var(--dark);
}

.contato-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: var(--space-xs);
    color: var(--gray-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: var(--space-sm);
    border: 2px solid #E0E0E0;
    border-radius: var(--radius-sm);
    transition: var(--transition-normal);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(45, 90, 90, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.form-note {
    text-align: center;
    font-size: var(--fs-sm);
    color: var(--gray);
    margin-top: var(--space-md);
}

.form-note i {
    margin-right: var(--space-xs);
}

/* =========================================
   11. LOCALIZAÇÃO
   ========================================= */
.localizacao {
    padding: var(--space-3xl) 0;
    background: var(--white);
}

.localizacao-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: var(--space-xl);
    align-items: start;
}

.localizacao-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.info-card {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--light);
    border-radius: var(--radius-md);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: var(--fs-lg);
    flex-shrink: 0;
}

.info-details h4 {
    font-size: var(--fs-base);
    margin-bottom: var(--space-xs);
}

.info-details p {
    font-size: var(--fs-sm);
    color: var(--gray);
    line-height: 1.6;
}

.info-details small {
    color: var(--gray-light);
    font-style: italic;
}

.localizacao-mapa {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* =========================================
   SEÇÕES DE DESTAQUE (Botox e Depilação)
   ========================================= */
.destaque-section {
    padding: var(--space-3xl) 0;
    position: relative;
    overflow: hidden;
}

.destaque-section.bg-light {
    background: var(--light);
}

.destaque-section.bg-white {
    background: var(--white);
}

.destaque-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.destaque-content.reverse {
    direction: rtl;
}

.destaque-content.reverse>* {
    direction: ltr;
}

.destaque-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    height: 500px;
    /* Mantém altura consistente para o carousel */
}

.destaque-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
}

.destaque-info {
    padding: var(--space-lg);
}

.destaque-tag {
    display: inline-block;
    background: var(--gradient-gold);
    color: var(--dark);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: var(--fs-sm);
    font-weight: 600;
    margin-bottom: var(--space-md);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.destaque-title {
    font-family: var(--font-heading);
    font-size: var(--fs-4xl);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: var(--space-md);
    line-height: 1.2;
}

.destaque-description {
    font-size: var(--fs-md);
    color: var(--gray-dark);
    margin-bottom: var(--space-lg);
    line-height: 1.7;
}

.destaque-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.benefit-card {
    background: var(--white);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition-normal);
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--secondary);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(180deg, #2A2A2A 0%, #0A0A0A 50%, #1A1A1A 100%);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-sm);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.benefit-icon i {
    color: var(--secondary);
    font-size: var(--fs-lg);
}

.benefit-title {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: var(--space-xs);
    font-size: var(--fs-sm);
}

.benefit-text {
    font-size: var(--fs-xs);
    color: var(--gray);
    line-height: 1.5;
}

.destaque-cta {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

/* Responsividade Mobile para Seções de Destaque */
@media (max-width: 992px) {
    .destaque-content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .destaque-content.reverse {
        direction: ltr;
    }

    .destaque-image img {
        height: 400px;
    }

    .destaque-benefits {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-sm);
    }
}

@media (max-width: 480px) {
    .destaque-benefits {
        gap: 10px;
    }

    .benefit-card {
        padding: var(--space-sm);
    }

    .destaque-section {
        padding: var(--space-2xl) 0;
    }

    .destaque-title {
        font-size: var(--fs-2xl);
    }

    .destaque-image img {
        height: 300px;
    }

    .destaque-cta {
        flex-direction: column;
    }

    .destaque-cta .btn {
        width: 100%;
        text-align: center;
    }
}

/* =========================================
   VÍDEOS SECTION
   ========================================= */
.videos-section {
    padding: var(--space-3xl) 0;
    background: var(--white);
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.video-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary);
}

.video-wrapper {
    width: 100%;
    aspect-ratio: 1/1;
    /* Formato Quadrado 1080x1080 */
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Garante que o vídeo apareça inteiro sem cortes */
}

.video-info {
    padding: var(--space-lg);
    text-align: center;
}

.video-title {
    font-size: var(--fs-md);
    font-weight: 700;
    margin-bottom: var(--space-xs);
    color: var(--dark);
}

.video-desc {
    font-size: var(--fs-sm);
    color: var(--gray);
    line-height: 1.5;
}

@media (max-width: 992px) {
    .videos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .videos-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
        padding: 0 var(--space-sm);
    }
}

/* =========================================
   12. FOOTER
   ========================================= */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: var(--space-2xl) 0 var(--space-md);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.footer-logo {
    height: 80px;
    width: auto;
    margin: 0 auto var(--space-md);
    display: block;
    /* Removido filtro que deixava a logo branca */
}

.footer-description {
    color: var(--gray-light);
    margin-bottom: var(--space-md);
    font-size: var(--fs-sm);
    text-align: center;
}

.footer-social {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.footer-social a:hover {
    background: var(--secondary);
    color: var(--dark);
}

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
    color: var(--white);
    font-size: var(--fs-base);
    margin-bottom: var(--space-md);
}

.footer-links ul li,
.footer-services ul li {
    margin-bottom: var(--space-xs);
}

.footer-links ul li a,
.footer-services ul li a {
    color: var(--gray-light);
    font-size: var(--fs-sm);
}

.footer-links ul li a:hover,
.footer-services ul li a:hover {
    color: var(--secondary);
}

.footer-contact ul li {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
    font-size: var(--fs-sm);
    color: var(--gray-light);
}

.footer-contact ul li i {
    color: var(--secondary);
    width: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: var(--fs-sm);
    color: var(--gray);
}

/* Seção 12.1 removida pois o estilo agora é global no topo do arquivo */

/* =========================================
   13. ELEMENTOS FLUTUANTES
   ========================================= */
.whatsapp-float-wrapper {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    z-index: 999;
}

.whatsapp-tooltip {
    background: var(--white);
    color: var(--dark);
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    margin-right: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    position: relative;
    white-space: nowrap;
    opacity: 0;
    animation: fadeInTooltip 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    animation-delay: 2s;
    display: block;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Seta do Balão */
.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 8px solid var(--white);
}

@keyframes fadeInTooltip {
    from {
        opacity: 0;
        transform: translateX(20px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.whatsapp-float {
    width: 60px;
    height: 60px;
    background: linear-gradient(180deg, #2ED77A 0%, #25D366 40%, #1EBA58 100%);
    color: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fs-2xl);
    box-shadow:
        0 6px 20px rgba(37, 211, 102, 0.5),
        0 3px 8px rgba(0, 0, 0, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.2);
    animation: pulse 2s infinite;
    border: 1px solid rgba(30, 186, 88, 0.3);
    transition: var(--transition-normal);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow:
        0 10px 30px rgba(37, 211, 102, 0.6),
        0 5px 12px rgba(0, 0, 0, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
}

@keyframes pulse {
    0% {
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5), 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5), 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5), 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Esconder tooltip em telas muito pequenas se necessário */
@media (max-width: 480px) {
    .whatsapp-tooltip {
        padding: 8px 15px;
        font-size: 12px;
        margin-right: 10px;
    }
}

.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: linear-gradient(180deg, #E8C95A 0%, #D4AF37 40%, #B8963A 100%);
    color: var(--dark);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fs-lg);
    box-shadow:
        0 4px 15px rgba(180, 140, 50, 0.4),
        0 2px 6px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    border: 1px solid rgba(180, 140, 50, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: linear-gradient(180deg, #F0D565 0%, #E8C547 40%, #C9A227 100%);
    color: var(--dark);
    transform: translateY(-3px);
}

/* =========================================
   14. ANIMAÇÕES
   ========================================= */
.animate-fade-up,
.animate-slide-left,
.animate-slide-right {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-fade-up {
    transform: translateY(30px);
}

.animate-slide-left {
    transform: translateX(-50px);
}

.animate-slide-right {
    transform: translateX(50px);
}

.animate-fade-up.animated,
.animate-slide-left.animated,
.animate-slide-right.animated {
    opacity: 1;
    transform: translate(0, 0);
}

/* =========================================
   14.1 BANNER PROMOCIONAL FLUTUANTE (RETANGULAR PEQUENO)
   ========================================= */
.promo-banner-container {
    position: fixed;
    top: 15px;
    left: 50%;
    transform: translate(-50%, -150%);
    z-index: 2005;
    /* Acima de tudo */
    width: 95%;
    max-width: 550px;
    /* Reduzido para encaixar melhor */
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.5s ease;
    opacity: 0;
    pointer-events: none;
}

.promo-banner-container.show {
    transform: translate(-50%, 0);
    opacity: 1;
    pointer-events: auto;
}

.promo-banner-content {
    position: relative;
    background: transparent;
    /* Removido fundo que causava a área branca */
    border-radius: 12px;
    overflow: visible;
    box-shadow: none;
    border: none;
    line-height: 0;
}

.promo-banner-link {
    display: block;
    line-height: 0;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.3));
}

.promo-banner-link img {
    width: 100%;
    height: auto;
    display: block;
}

.promo-banner-close {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 28px;
    height: 28px;
    background: #000;
    color: var(--white);
    border: 2px solid var(--white);
    border-radius: 50%;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-fast);
}

.promo-banner-close:hover {
    background: var(--dark);
    transform: scale(1.1);
}

/* Ajustes Mobile para o Banner */
@media (max-width: 768px) {
    .promo-banner-container {
        top: 80px;
        /* Posicionado abaixo da logo flutuante no mobile */
        max-width: 90%;
        z-index: 10000;
        /* Força ficar acima de absolutamente tudo */
    }
}

/* Laptop / Telas menores */
@media (max-width: 1200px) {
    .nav-list {
        gap: 0.75rem;
        /* Gaps ainda menores em telas laptop para não quebrar */
    }

    .nav-link {
        font-size: 0.85rem;
        /* Fonte ligeiramente menor se necessário */
    }

    .servicos-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Tablet */
@media (max-width: 1024px) {
    :root {
        --fs-5xl: 2.5rem;
        --fs-4xl: 2rem;
        --fs-3xl: 1.75rem;
    }

    .servicos-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .depoimentos-slider {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .localizacao-content {
        grid-template-columns: 1fr;
    }

    .localizacao-info {
        order: 2;
    }

    .localizacao-mapa {
        order: 1;
    }
}

/* Tablet Pequeno */
@media (max-width: 768px) {

    /* Prevenir overflow horizontal - solução para linha branca no mobile */
    html,
    body {
        overflow-x: clip;
    }

    /* Prevenir overflow horizontal em todos os containers */
    .container,
    section,
    .hero {
        max-width: 100%;
    }

    .hero-content {
        padding-top: 260px !important;
        /* Apenas o conteúdo do Hero recebe o espaço para a logo */
    }

    /* Header responsivo */
    .header .container {
        padding: 0 var(--space-sm);
    }

    .header .btn-cta {
        display: none;
    }

    .nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: var(--white);
        padding: var(--space-lg);
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-normal);
    }

    .nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        gap: var(--space-md);
    }

    .nav-link {
        font-size: var(--fs-lg);
    }

    .nav-toggle {
        display: block;
    }

    .sobre-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .sobre-image img {
        height: 350px;
    }

    .sobre-badge {
        right: 50%;
        transform: translateX(50%);
    }

    .sobre-features {
        text-align: left;
    }

    /* Trust section responsivo */
    .trust-badges {
        flex-direction: column;
        gap: var(--space-md);
    }

    .trust-item {
        width: 100%;
        justify-content: flex-start;
    }

    /* Seções de destaque responsivas */
    .destaque-content {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .destaque-image {
        order: 1;
    }

    .destaque-info {
        order: 2;
        padding: 0;
    }

    .destaque-image img {
        width: 100%;
        max-width: 100%;
        height: auto;
    }

    .trust-number {
        font-size: var(--fs-lg);
    }

    .payment-icons {
        gap: var(--space-xs);
    }

    .servicos-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .depoimentos-slider {
        grid-template-columns: 1fr;
    }

    .depoimentos-grid {
        grid-template-columns: 1fr;
    }

    .contato-wrapper {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-contact ul li {
        justify-content: center;
    }

    /* Header mobile: OCULTO - causa overflow horizontal */
    .header {
        display: none !important;
    }

    /* Menu hamburguer flutuante no mobile - TRANSPARENTE */
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        position: fixed;
        top: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
        background: transparent;
        border-radius: var(--radius-md);
        z-index: 1001;
        cursor: pointer;
        border: none;
        box-shadow: none;
    }

    .mobile-menu-toggle .hamburger,
    .mobile-menu-toggle .hamburger::before,
    .mobile-menu-toggle .hamburger::after {
        background: var(--white);
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    }

    .mobile-menu-toggle .hamburger {
        position: relative;
        width: 24px;
        height: 3px;
        border-radius: 2px;
        transition: var(--transition-normal);
    }

    .mobile-menu-toggle .hamburger::before,
    .mobile-menu-toggle .hamburger::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 3px;
        border-radius: 2px;
        transition: var(--transition-normal);
    }

    .mobile-menu-toggle .hamburger::before {
        top: -8px;
    }

    .mobile-menu-toggle .hamburger::after {
        bottom: -8px;
    }

    .mobile-menu-toggle.active .hamburger {
        background: transparent;
    }

    .mobile-menu-toggle.active .hamburger::before {
        top: 0;
        transform: rotate(45deg);
    }

    .mobile-menu-toggle.active .hamburger::after {
        bottom: 0;
        transform: rotate(-45deg);
    }

    /* Menu de navegação mobile flutuante */
    .mobile-nav {
        display: none;
        position: fixed;
        top: 75px;
        right: 15px;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(15px);
        border-radius: var(--radius-lg);
        padding: var(--space-md);
        z-index: 1000;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
        border: 1px solid rgba(255, 255, 255, 0.1);
        max-width: 250px;
    }

    .mobile-nav.active {
        display: block;
    }

    .mobile-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .mobile-nav ul li {
        margin-bottom: var(--space-xs);
    }

    .mobile-nav ul li:last-child {
        margin-bottom: 0;
    }

    .mobile-nav a {
        display: block;
        color: var(--white);
        padding: var(--space-xs) var(--space-sm);
        border-radius: var(--radius-sm);
        font-family: var(--font-heading);
        font-size: var(--fs-sm);
        font-weight: 500;
        transition: var(--transition-fast);
    }

    .mobile-nav a:hover {
        background: rgba(255, 255, 255, 0.1);
        color: var(--secondary);
    }

    /* Logo móvel: Centralizada e ajustada para mobile */
    .logo-mobile-float {
        display: flex !important;
        top: 5px;
        /* Subindo a logo para mais perto do topo */
    }

    .logo-mobile-float img {
        height: 240px;
        /* Tamanho dobrado proporcionalmente */
        width: auto !important;
        /* Mantém a largura proporcional */
        max-width: 90vw;
        /* Garante que não ultrapasse a tela */
        object-fit: contain;
    }
}

/* Mobile */
@media (max-width: 480px) {
    :root {
        --fs-5xl: 2rem;
        --fs-4xl: 1.75rem;
        --fs-3xl: 1.5rem;
        --fs-2xl: 1.25rem;
        --space-3xl: 4rem;
        --space-2xl: 3rem;
    }

    /* Garantir que nada ultrapasse a tela */
    *,
    *::before,
    *::after {
        max-width: 100%;
    }

    .container {
        padding: 0 var(--space-sm);
        width: 100%;
        max-width: 100%;
    }

    /* Hero ajustes */
    .hero-title {
        word-break: break-word;
        hyphens: auto;
        padding: 0 var(--space-xs);
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        padding: 0 var(--space-xs);
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 100%;
    }

    .carousel-slide {
        background-position: center !important;
        /* Mantém centralizado no mobile */
    }

    /* Header ajustes */
    .logo-img {
        height: 45px;
        /* Reduzido para caber melhor no mobile */
    }

    .servicos-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: var(--space-md);
    }

    .servicos-grid.grid-mobile-2 {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: var(--space-sm);
    }

    .grid-mobile-2 .servico-card {
        padding: var(--space-md) var(--space-xs) !important;
    }

    .grid-mobile-2 .servico-title {
        font-size: var(--fs-base) !important;
    }

    .grid-mobile-2 .servico-description {
        font-size: 0.75rem !important;
        max-width: 100% !important;
    }

    .servico-card {
        display: flex !important;
        flex-direction: column !important;
        text-align: center !important;
        align-items: center !important;
        gap: var(--space-sm);
        padding: var(--space-lg) var(--space-md) !important;
        width: 100% !important;
    }

    .servico-icon {
        width: 65px !important;
        height: 65px !important;
        margin: 0 auto !important;
        flex-shrink: 0 !important;
    }

    .servico-content {
        width: 100%;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }

    .back-to-top {
        bottom: 85px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
}

/* Ajuste para impressão */
@media print {

    .header,
    .whatsapp-float,
    .back-to-top,
    .hero-scroll {
        display: none !important;
    }

    .hero {
        min-height: auto;
        padding: var(--space-xl) 0;
    }
}