/* =====================================================
   RM BARBEARIA CORTE MASCULINO
   Folha de Estilos Principal - Tema Escuro Premium
   =====================================================

   Í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 ========== */
:root {
    /* Cores principais - tons baseados na nova logo (preto, branco, prata metálico) */
    --primary: #ffffff;           /* Branco puro (alto contraste para CTAs e Logo) */
    --primary-dark: #b3b3b3;      /* Prata/Cinza metálico (efeito de profundidade) */
    --secondary: #333333;         /* Cinza escuro para detalhes e badges */
    --accent: #141414;            /* Preto fosco para cards e cabeçalho */

    /* Cores de fundo - Dark Theme */
    --bg: #000000;                /* Fundo principal (preto puro, visual premium) */
    --bg-alt: #0a0a0a;            /* Fundo alternativo para criar separação sutil */

    /* Cores de texto - Alto contraste */
    --text: #f4f4f4;              /* Texto principal (quase branco) */
    --text-light: #a0a0a0;        /* Texto secundário (cinza metálico) */
    --white: #ffffff;             /* Branco puro */

    /* Gradiente metálico assinatura da marca (usado em texto e detalhes) */
    --metal-gradient: linear-gradient(120deg, #ffffff 0%, #d4d4d4 30%, #8f8f8f 55%, #e8e8e8 75%, #ffffff 100%);

    /* Tipografia */
    --font-heading: 'Oswald', 'Segoe UI', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Efeitos de sombra adaptados para fundo escuro */
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
    --shadow-hover: 0 8px 30px rgba(255, 255, 255, 0.05);

    /* Bordas e transições */
    --radius: 16px;               
    --radius-sm: 10px;            
    --transition: all 0.3s ease;  
}

/* ========== 2. RESET E BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ========== 3. TIPOGRAFIA ========== */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
}

h1 {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: var(--white);
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    color: var(--white);
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

h4 {
    font-size: 1.125rem;
    font-weight: 600;
}

/* Texto com gradiente metálico - detalhe de assinatura da marca */
.text-gradient {
    background: var(--metal-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Eyebrow - rótulo pequeno acima dos títulos de seção */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.eyebrow::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--metal-gradient);
}

p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* ========== 4. 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;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--bg); /* Texto preto sobre botão branco/prata */
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--bg);
}

.btn-whatsapp {
    background: #25d366;
    color: var(--white);
    margin-top: 10px;
    border: none;
}

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

/* ========== 5. HEADER / NAVEGAÇÃO ========== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95); /* Fundo escuro semi-transparente */
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    z-index: 1000; 
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-badge {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.5));
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    font-family: var(--font-heading);
}

.logo-text .logo-rm {
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.logo-text .logo-sub {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 4px;
    color: var(--text-light);
}

.nav-menu {
    display: flex;
    gap: 30px;
}

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

.nav-menu a:hover {
    color: var(--primary);
}

.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%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    transition: var(--transition);
}

/* ========== 6. HERO SECTION ========== */
.hero {
    padding: 140px 0 80px; 
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 100%);
}

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

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

.hero-badge {
    display: inline-block;
    background: var(--secondary);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,0.1);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.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);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-visual {
    position: relative;
}

.hero-visual::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 115%;
    max-width: 460px;
    aspect-ratio: 1;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
}

.hero-image-container {
    width: 100%;
    max-width: 450px;
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.3), 0 30px 80px rgba(0, 0, 0, 0.9), inset 0 0 30px rgba(0, 0, 0, 0.5);
    border: 3px solid rgba(255, 255, 255, 0.25);
    animation: float 3s ease-in-out infinite;
    background: #0a0a0a;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-main-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.2));
    scale: 0.85;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.floating-badge {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    color: var(--white);
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.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(--bg);
}

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

.sobre-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    aspect-ratio: 4 / 5;
    max-height: 550px;
}

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

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

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

.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(--white);
    margin-bottom: 5px;
}

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

/* ========== 9. GALERIA ========== */
.galeria {
    background: var(--bg-alt);
    padding: 100px 0;
}

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

.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);
}

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

.servico-card {
    background: var(--accent);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
}

.servico-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(255,255,255,0.2);
}

.servico-image {
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
}

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

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

.servico-content {
    padding: 25px;
    text-align: center;
}

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

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

.preco {
    display: inline-block;
    background: var(--secondary);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
}

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

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

.destaque-card {
    background: var(--accent);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.05);
}

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

.destaque-image {
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    position: relative;
}

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

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

.before-after-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.95);
    color: var(--bg);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.9rem;
    box-shadow: var(--shadow);
}

.destaque-content {
    padding: 25px;
}

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

.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, #050505, var(--accent));
    color: var(--white);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.beneficios .section-header h2,
.beneficios .section-header p {
    color: var(--white);
}

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

.beneficio-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.beneficio-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: var(--primary-dark);
}

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

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

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

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

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

.depoimento-card {
    background: var(--accent);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.05);
}

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

.depoimento-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.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 {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary), var(--primary-dark));
    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(--white);
    margin-bottom: 2px;
}

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

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

.depoimento-stars {
    font-size: 1rem;
    letter-spacing: 2px;
}

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

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255,255,255,0.05);
}

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

.faq-question:hover {
    background: #1a1a1a;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: var(--transition);
    color: var(--primary);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: var(--accent);
    border-top: 1px solid rgba(255,255,255,0.05);
}

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

.faq-answer p {
    margin: 0;
}

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

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

.contato-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

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

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

.info-item p {
    margin: 0;
}

.contato-mapa {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mapa-placeholder {
    width: 100%;
    height: 100%;
    min-height: 300px;
    background: linear-gradient(135deg, var(--accent), #1a1a1a);
    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, #1a1a1a, var(--accent));
}

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

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

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

.ai-agent-area {
    min-height: 0;
    padding: 0;
}

/* ========== 15. FOOTER ========== */
.footer {
    background: #050505;
    color: var(--white);
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
    color: var(--primary);
    text-transform: uppercase;
}

.footer-logo img {
    width: 38px;
    height: 38px;
}

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

.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);
}

.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);
}

.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.4);
    margin-bottom: 5px;
}

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

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

.privacidade {
    background: #000000;
    padding: 40px 0;
}

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

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

/* ========== 16. RESPONSIVIDADE ========== */
@media (max-width: 992px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-stats {
        justify-content: center;
    }
    .hero-visual {
        order: -1;
    }
    .hero-image-container {
        max-width: 300px;
    }
    .sobre-content {
        grid-template-columns: 1fr;
    }
    .sobre-image {
        max-height: 400px;
    }
    .contato-content {
        grid-template-columns: 1fr;
    }
    .galeria-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    .galeria-item.grande {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--accent); /* Fundo do menu no mobile */
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        box-shadow: var(--shadow);
        transform: translateY(-150%);
        opacity: 0;
        transition: var(--transition);
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
    }
    .nav-toggle {
        display: flex;
    }
    .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);
    }
    .hero {
        padding: 120px 0 60px;
    }
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    section {
        padding: 60px 0;
    }
    .servicos-grid,
    .destaques-grid,
    .beneficios-grid,
    .depoimentos-grid {
        grid-template-columns: 1fr;
    }
    .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;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.75rem;
    }
    h2 {
        font-size: 1.5rem;
    }
    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    .hero-buttons {
        flex-direction: column;
    }
    .hero-buttons .btn {
        width: 100%;
    }
}
