/* =====================================================
   STUDIO HAIR & BEAUTY - SALÃO DE BELEZA / BARBER SHOP
   Folha de Estilos Principal
   =====================================================

   ÍNDICE:
   1. Variáveis CSS (cores, sombras, etc.)
   2. Reset e Base
   3. Tipografia
   4. Botões
   5. Header/Navegação
   6. Hero Section
   7. Seção Sobre
   8. Seção Serviços
   9. Seção Destaques
   10. Seção Benefícios
   11. Seção Depoimentos
   12. Seção FAQ
   13. Seção Contato
   14. Footer
   15. Responsividade

   ===================================================== */

/* ========== 1. VARIÁVEIS CSS ========== */
/* EDITÁVEL: Personalize as cores principais do tema aqui */
:root {
    /* Cores principais - tons de dourado, preto e rosa */
    --primary: #d4af37;           /* Dourado principal */
    --primary-dark: #b8960f;      /* Dourado escuro */
    --secondary: #ff6b9d;         /* Rosa vibrante */
    --accent: #1a1a1a;            /* Preto elegante */

    /* Cores de fundo */
    --bg: #fefefe;                /* Fundo principal (quase branco) */
    --bg-alt: #fff5e6;            /* Fundo alternativo (creme dourado) */

    /* Cores de texto */
    --text: #1a1a1a;              /* Texto principal (preto) */
    --text-light: #6b6b6b;        /* Texto secundário (cinza) */
    --white: #ffffff;             /* Branco puro */

    /* Efeitos */
    --shadow: 0 4px 20px rgba(212, 175, 55, 0.15);
    --shadow-hover: 0 8px 30px rgba(212, 175, 55, 0.25);

    /* Bordas e transições */
    --radius: 16px;               /* Bordas arredondadas */
    --radius-sm: 10px;            /* Bordas menores */
    --transition: all 0.3s ease;  /* Transição suave */
}

/* ========== 2. RESET E BASE ========== */
/* Remove margens e paddings padrão do navegador */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Rolagem suave ao clicar em links de âncora */
html {
    scroll-behavior: smooth;
}

/* Configurações base do body */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

/* Container centralizado com largura máxima */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Imagens responsivas */
img {
    max-width: 100%;
    height: auto;
}

/* Remove decoração de links */
a {
    text-decoration: none;
    color: inherit;
}

/* Remove marcadores de lista */
ul {
    list-style: none;
}

/* ========== 3. TIPOGRAFIA ========== */
/* Título principal (Hero) */
h1 {
    font-size: clamp(2rem, 5vw, 3.5rem); /* Tamanho responsivo */
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

/* Títulos de seção */
h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* Subtítulos */
h3 {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Títulos menores */
h4 {
    font-size: 1.125rem;
    font-weight: 600;
}

/* Parágrafos */
p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* ========== 4. BOTÕES ========== */
/* Estilo base para todos os botões */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    gap: 8px;
}

/* Botão principal (destaque) */
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--accent);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

/* Efeito hover do botão principal */
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

/* Botão secundário (outline) */
.btn-secondary {
    background: var(--white);
    color: var(--accent);
    border: 2px solid var(--accent);
}

/* Efeito hover do botão secundário */
.btn-secondary:hover {
    background: var(--accent);
    color: var(--white);
}

/* Botão do WhatsApp */
.btn-whatsapp {
    background: #25d366;
    color: var(--white);
    margin-top: 10px;
}

.btn-whatsapp:hover {
    background: #128c7e;
    transform: translateY(-2px);
}

/* ========== 5. HEADER / NAVEGAÇÃO ========== */
/* Header fixo no topo */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000; /* Fica acima de todo conteúdo */
    padding: 15px 0;
}

/* Container da navegação */
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo/Nome do negócio */
.logo {
    margin-top: 10px;
    width: 50px;
    /* font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary); */
}

/* Menu de navegação */
.nav-menu {
    display: flex;
    gap: 30px;
}

/* Links do menu */
.nav-menu a {
    font-weight: 500;
    color: var(--text);
    transition: var(--transition);
    position: relative;
}

/* Hover nos links */
.nav-menu a:hover {
    color: var(--primary);
}

/* Linha animada abaixo do link */
.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Botão hambúrguer (mobile) - escondido no desktop */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

/* Linhas do hambúrguer */
.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text);
    border-radius: 3px;
    transition: var(--transition);
}

/* ========== 6. HERO SECTION ========== */
/* Seção principal do topo */
.hero {
    padding: 140px 0 80px; /* Espaço extra no topo por causa do header fixo */
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* EDITÁVEL: Background do hero com imagem */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

/* EDITÁVEL: Imagem de fundo do hero */
.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* EDITÁVEL: Overlay escuro sobre o background */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.85) 0%, rgba(26, 26, 26, 0.7) 100%);
}

/* Grid do hero - 2 colunas */
.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Conteúdo do hero com texto branco */
.hero-content {
    color: var(--white);
}

.hero-content h1,
.hero-content .hero-subtitle {
    color: var(--white);
}

/* Badge de destaque no hero */
.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: var(--white);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Subtítulo do hero */
.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

/* Container dos botões */
.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

/* Estatísticas do hero */
.hero-stats {
    display: flex;
    gap: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* Área visual do hero */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* EDITÁVEL: Container da imagem circular do hero */
.hero-image-container {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.5);
    border: 5px solid rgba(212, 175, 55, 0.3);
    animation: float 3s ease-in-out infinite;
}

/* EDITÁVEL: Imagem circular do hero */
.hero-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Animação de flutuação */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Badge flutuante no hero */
.floating-badge {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    color: var(--text);
    box-shadow: var(--shadow);
}

/* ========== 7. SEÇÕES GERAIS ========== */
section {
    padding: 100px 0;
}

/* Cabeçalho das seções */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-header p {
    font-size: 1.125rem;
}

/* ========== 8. SEÇÃO SOBRE ========== */
.sobre {
    background: var(--white);
}

/* Grid da seção sobre */
.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* EDITÁVEL: Imagem da seção sobre */
.sobre-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.sobre-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.sobre-image:hover img {
    transform: scale(1.05);
}

.sobre-text p {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Features da seção sobre */
.sobre-features {
    display: grid;
    gap: 30px;
}

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

.feature-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.feature h3 {
    color: var(--text);
    margin-bottom: 5px;
}

.feature p {
    margin: 0;
    font-size: 0.95rem;
}

/* ========== 9. GALERIA ========== */
/* EDITÁVEL: Galeria de fotos */
.galeria {
    background: var(--bg);
    padding: 100px 0;
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 15px;
}

/* Primeiro item ocupa 2 colunas e 2 linhas */
.galeria-item.grande {
    grid-column: span 2;
    grid-row: span 2;
}

.galeria-item {
    border-radius: var(--radius-sm);
    overflow: hidden;
    position: relative;
}

.galeria-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.galeria-item:hover img {
    transform: scale(1.1);
}

/* ========== 10. SEÇÃO SERVIÇOS ========== */
.servicos {
    background: var(--bg-alt);
}

/* Grid de cards de serviços */
.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* Card de serviço individual */
.servico-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    overflow: hidden;
}

/* Hover do card de serviço */
.servico-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

/* EDITÁVEL: Imagem do serviço */
.servico-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.servico-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

/* Conteúdo do card de serviço */
.servico-content {
    padding: 25px;
    text-align: center;
}

.servico-content h3 {
    color: var(--text);
    margin-bottom: 10px;
}

.servico-content p {
    font-size: 0.95rem;
    margin-bottom: 20px;
}

/* Tag de preço */
.preco {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--accent);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* ========== 11. SEÇÃO DESTAQUES ========== */
.destaques {
    background: var(--white);
}

/* Grid de destaques */
.destaques-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Card de destaque */
.destaque-card {
    background: var(--bg);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

/* EDITÁVEL: Imagem do destaque */
.destaque-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.destaque-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

/* Badge antes/depois sobre a imagem */
.before-after-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(212, 175, 55, 0.95);
    color: var(--accent);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: var(--shadow);
}

/* Conteúdo do destaque */
.destaque-content {
    padding: 25px;
}

.destaque-content h3 {
    color: var(--text);
    margin-bottom: 10px;
}

/* Badge do destaque */
.destaque-badge {
    display: inline-block;
    background: var(--secondary);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 10px;
}

/* ========== 11. SEÇÃO BENEFÍCIOS ========== */
.beneficios {
    background: linear-gradient(135deg, var(--accent), #2a2a2a);
    color: var(--white);
}

/* Textos brancos na seção de benefícios */
.beneficios .section-header h2,
.beneficios .section-header p {
    color: var(--white);
}

/* Grid de benefícios */
.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

/* Card de benefício */
.beneficio-card {
    background: rgba(212, 175, 55, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: var(--transition);
}

.beneficio-card:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: translateY(-5px);
    border-color: var(--primary);
}

.beneficio-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.beneficio-card h3 {
    color: var(--primary);
    margin-bottom: 10px;
}

.beneficio-card p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 0.95rem;
}

/* ========== 12. SEÇÃO DEPOIMENTOS ========== */
.depoimentos {
    background: var(--bg-alt);
}

/* Grid de depoimentos */
.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* Card de depoimento */
.depoimento-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

/* Header do depoimento (avatar + nome) */
.depoimento-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

/* EDITÁVEL: Avatar com imagem real */
.avatar-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

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

/* Avatar com iniciais (fallback) */
.avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.depoimento-info h4 {
    color: var(--text);
    margin-bottom: 2px;
}

.depoimento-info span {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Texto do depoimento */
.depoimento-card p {
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Estrelas de avaliação */
.depoimento-stars {
    font-size: 1rem;
    letter-spacing: 2px;
}

/* ========== 13. SEÇÃO FAQ ========== */
.faq {
    background: var(--white);
}

/* Lista de perguntas */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

/* Item individual do FAQ */
.faq-item {
    margin-bottom: 15px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* Botão da pergunta */
.faq-question {
    width: 100%;
    background: var(--bg);
    border: none;
    padding: 20px 25px;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--bg-alt);
}

/* Ícone de expandir/colapsar */
.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: var(--transition);
    color: var(--primary);
}

/* Rotação do ícone quando ativo */
.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* Container da resposta (escondido por padrão) */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: var(--white);
}

/* Resposta expandida */
.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 20px 25px;
}

.faq-answer p {
    margin: 0;
}

/* ========== 14. SEÇÃO CONTATO ========== */
.contato {
    background: var(--bg-alt);
}

/* Grid do contato */
.contato-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

/* Lista de informações */
.contato-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Item de informação */
.info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.info-item h4 {
    color: var(--text);
    margin-bottom: 5px;
}

.info-item p {
    margin: 0;
}

/* Container do mapa */
.contato-mapa {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Placeholder do mapa */
.mapa-placeholder {
    width: 100%;
    height: 100%;
    min-height: 300px;
    background: linear-gradient(135deg, #e0e0e0, #f5f5f5);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px dashed var(--text-light);
}

.mapa-placeholder:hover {
    border-color: var(--primary);
    background: linear-gradient(135deg, var(--bg-alt), var(--white));
}

.mapa-pin {
    font-size: 3rem;
    margin-bottom: 10px;
}

.mapa-placeholder p {
    font-weight: 600;
    color: var(--text);
    margin-bottom: 5px;
}

.mapa-placeholder span {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ========== ÁREA DO AGENTE DE IA ========== */
/* Área reservada para integração futura */
.ai-agent-area {
    min-height: 0;
    padding: 0;
}

/* ========== 15. FOOTER ========== */
.footer {
    background: var(--accent);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    text-align: center;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--primary);
}

.footer-content p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
}

/* Links do footer */
.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 25px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

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

/* Redes sociais */
.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-social a {
    font-size: 1.5rem;
    transition: var(--transition);
}

.footer-social a:hover {
    transform: scale(1.2);
}

/* Rodapé inferior */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 5px;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

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

/* ========== POLÍTICA DE PRIVACIDADE ========== */
.privacidade {
    background: #0f0f0f;
    padding: 40px 0;
}

.privacidade h3 {
    color: var(--primary);
    margin-bottom: 15px;
}

.privacidade p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

/* ========== 16. RESPONSIVIDADE ========== */

/* Tablets e telas médias */
@media (max-width: 992px) {
    /* Hero em coluna única no tablet */
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

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

    /* Visual do hero primeiro no mobile */
    .hero-visual {
        order: -1;
    }

    .hero-image-container {
        max-width: 300px;
    }

    /* Sobre em coluna única */
    .sobre-content {
        grid-template-columns: 1fr;
    }

    .sobre-image {
        max-height: 400px;
    }

    /* Contato em coluna única */
    .contato-content {
        grid-template-columns: 1fr;
    }

    /* Galeria responsiva */
    .galeria-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .galeria-item.grande {
        grid-column: span 2;
        grid-row: span 1;
    }
}

/* Celulares */
@media (max-width: 768px) {
    /* Menu mobile */
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        box-shadow: var(--shadow);
        transform: translateY(-150%);
        opacity: 0;
        transition: var(--transition);
    }

    /* Menu mobile ativo */
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
    }

    /* Mostra o botão hambúrguer */
    .nav-toggle {
        display: flex;
    }

    /* Animação do hambúrguer para X */
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    /* Ajustes de padding */
    .hero {
        padding: 120px 0 60px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    section {
        padding: 60px 0;
    }

    /* Grids em coluna única */
    .servicos-grid,
    .destaques-grid,
    .beneficios-grid,
    .depoimentos-grid {
        grid-template-columns: 1fr;
    }

    /* Galeria mobile */
    .galeria-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .galeria-item.grande {
        grid-column: span 1;
        grid-row: span 1;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}

/* Celulares pequenos */
@media (max-width: 480px) {
    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    /* Botões empilhados */
    .hero-buttons {
        flex-direction: column;
    }

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