/* ==========================================================================
   ESTILO PRINCIPAL - LEANDRO MENDES FOTOGRAFIA
   DevFull | GSI Solutions 2025
   Versão: Completa e Unificada
   ========================================================================== */

:root {
    /* Paleta de Cores Principal */
    --background-color: #121212;
    --bg-dark: #0a0a0a;
    --surface-color: #1e1e1e;
    --accent-color: #daa520; /* Gold Premium */
    
    /* Tipografia e Estados */
    --text-color: #ffffff; /* Texto branco (padrão) */
    --text-color-muted: #aaaaaa;
    --text-outline: rgba(255, 255, 255, 0.05);
    --border-color: #2b2b2b;
    --transition: all 0.3s ease;
}

/* 1. RESET E BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--background-color);
    color: var(--text-color);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    display: block;
}

/* Tipografia Global */
h1, h2, h3, h4, h5, h6 {
    color: var(--accent-color); /* Títulos Dourados */
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
}

p, li, span, div {
    color: var(--text-color);
}

.subtitle {
    color: var(--text-color-muted);
    font-size: 1.1rem;
    font-weight: 300;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    text-decoration: underline;
}

/* 2. HEADER & NAVEGAÇÃO (Unificado) */
.main-header {
    background-color: #000000; /* Fundo preto sólido para não misturar */
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #333;
}

.logo img {
    max-width: 200px; /* Aumentei para ficar visível */
    height: auto;
    display: block;
}

/* AJUSTE PARA O CONTEÚDO NÃO COLAR NO MENU */
.main-content {
    margin-top: 0; /* O header é sticky, o conteúdo flui normal */
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
    align-items: center;
}

.nav-menu ul li a {
    color: #ffffff !important; /* FORÇA BRANCO */
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: var(--transition);
}

.nav-menu ul li a:hover {
    color: var(--accent-color) !important; /* Dourado no Hover */
    text-decoration: none;
}

/* Botão de destaque no menu (Contato) - CORRIGIDO */
.btn-nav-cta {
    background-color: var(--accent-color); /* Fundo Ouro Normal */
    color: #000000 !important;             /* Texto Preto Normal */
    border: 1px solid var(--accent-color);
    padding: 10px 25px;
    border-radius: 4px;
    font-weight: bold;
    text-transform: uppercase;
    transition: var(--transition);
}

.btn-nav-cta:hover {
    background-color: #fff;       /* Fundo Branco no Hover */
    color: #000 !important;       /* Texto Preto no Hover */
    border-color: #fff;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    cursor: pointer;
}
.mobile-toggle span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: #fff;
    margin: 5px 0;
}

/* 3. COMPONENTES REUTILIZÁVEIS (DOBRAS HOME) */
.section-title {
    position: relative;
    padding: 80px 0;
    text-align: center;
}

/* Efeito de Texto Vazado ao Fundo */
.bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(5rem, 15vw, 10rem);
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px var(--text-outline);
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 15px;
    pointer-events: none;
    white-space: nowrap;
}

.section-title h2 {
    position: relative;
    z-index: 2;
    font-size: 2.5rem;
    color: var(--accent-color);
    letter-spacing: 3px;
}

/* 4. DOBRA HERO (SLIDER / DESTAQUE) */
.hero-slider {
    position: relative;
    height: 85vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-dark);
}

.hero-slider img.bg-hero {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(0.4);
}

.hero-content {
    position: relative;
    z-index: 5;
    text-align: center;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    color: var(--accent-color);
    text-transform: uppercase;
    margin-bottom: 20px;
    text-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

/* 5. PORTFÓLIO E GRID DE TRABALHOS */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.portfolio-card {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
    background: var(--surface-color);
}

.portfolio-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.portfolio-card:hover img {
    transform: scale(1.1);
}

.portfolio-card .info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    color: #fff;
    opacity: 0; /* Escondido por padrão se preferir */
    transition: opacity 0.3s;
}

.portfolio-card:hover .info {
    opacity: 1;
}

/* 6. TICKER MODERNO */
.ticker-container {
    background: var(--accent-color);
    color: #121212;
    overflow: hidden;
    padding: 12px 0;
    position: relative;
    display: flex;
}

.ticker-track {
    display: flex;
    width: max-content;
    animation: scroll 30s linear infinite;
}

.ticker-track span {
    font-size: 1.2rem;
    font-weight: 800;
    white-space: nowrap;
    padding: 0 40px;
    text-transform: uppercase;
    color: #000; /* Preto para contraste no dourado */
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* 7. BOTÕES GERAIS (CTA) */
.btn-cta {
    display: inline-block;
    background-color: var(--accent-color);
    color: #000;
    padding: 15px 35px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    transition: var(--transition);
    text-transform: uppercase;
    border: none;
    cursor: pointer;
}

.btn-cta:hover {
    background-color: #b8962d;
    transform: translateY(-3px);
    color: #000;
}

/* 8. SEÇÕES ESPECÍFICAS (HOME) */

/* Grid de Serviços */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}
.service-item {
    background: var(--surface-color);
    padding: 30px;
    border-radius: 8px;
    transition: var(--transition);
}
.service-item:hover { 
    transform: translateY(-5px); 
    border-bottom: 2px solid var(--accent-color); 
}
.icon-gold { 
    font-size: 2.5rem; 
    color: var(--accent-color); 
    margin-bottom: 15px; 
}

/* Botão Outline */
.btn-outline {
    display: inline-block;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    transition: var(--transition);
    text-transform: uppercase;
}
.btn-outline:hover { 
    background: var(--accent-color); 
    color: #000; 
}

/* Depoimentos */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.testimonial-card {
    background: var(--surface-color);
    padding: 30px;
    border-radius: 8px;
    position: relative;
    border-left: 3px solid var(--accent-color);
}
.quote-icon { 
    font-size: 3rem; 
    color: #333; 
    position: absolute; 
    top: 10px; 
    right: 20px; 
}
.testimonial-card h5 { 
    color: var(--accent-color); 
    margin-top: 15px; 
}
.testimonial-card small { 
    color: #666; 
}

/* CTA Final */
.cta-section {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../img/lentes.avif') center/cover fixed;
}
.cta-section h2 { 
    font-size: 2.5rem; 
    color: var(--accent-color); 
    margin-bottom: 15px; 
}
.cta-section p { 
    margin-bottom: 30px; 
    font-size: 1.2rem; 
}

/* 9. PÁGINA SOBRE (Específicos) */
/* Espaçamento interno extra apenas nas páginas internas (Sobre, Contato) */
.page-hero {
    padding-top: 80px; /* Empurra o título para baixo */
    padding-bottom: 80px;
    background-color: #1a1a1a;
    border-bottom: 2px solid var(--accent-color);
}

.page-hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color: var(--accent-color);
}

.about-section {
    background: var(--background-color);
    padding-bottom: 80px;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 80px;
    gap: 50px;
    align-items: center;
}
.about-image img {
    border-radius: 8px;
    box-shadow: -10px 10px 0px var(--accent-color);
}
.about-text h2 {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}
.about-features {
    list-style: none;
    margin: 20px 0 30px 0;
    padding: 0;
}
.about-features li {
    margin-bottom: 10px;
    font-weight: 600;
    padding-left: 20px;
    position: relative;
}
.about-features li::before {
    content: "•";
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* 10. GOOGLE & INSTAGRAM */
.google-reviews-section {
    background-color: #161616;
    padding: 80px 0;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
}

.google-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.google-card {
    background: #fff; /* Mantido branco para identidade visual do Google */
    color: #333;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.google-card p, .google-card span {
    color: #333 !important; /* Força texto escuro dentro do card branco */
}

.g-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}
.g-avatar {
    width: 40px;
    height: 40px;
    background: #4285F4;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}
.g-stars {
    color: #F4B400;
    font-size: 0.9rem;
}

/* Instagram */
.instagram-section {
    padding: 80px 0;
}
.insta-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}
.insta-item {
    aspect-ratio: 1/1;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}
.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    filter: grayscale(30%);
}
.insta-item:hover img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

/* 11. FOOTER */
.main-footer {
    padding: 60px 0;
    border-top: 1px solid var(--border-color);
    margin-top: 80px;
    background-color: var(--bg-dark);
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}
.footer-col h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1rem;
}
.footer-col ul {
    list-style: none;
}
.footer-col ul li {
    margin-bottom: 10px;
    color: #aaa;
}
.footer-col ul li a {
    color: #aaa;
    text-decoration: none;
    transition: 0.3s;
}
.footer-col ul li a:hover {
    color: var(--accent-color);
}
.copyright {
    border-top: 1px solid #222;
    padding-top: 20px;
    text-align: center;
    font-size: 0.8rem;
    color: #ececec;
    margin-top: 40px;
}

/* 12. ELEMENTOS FLUTUANTES (ZAP & LGPD) */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    z-index: 999999 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}
.whatsapp-float img {
    width: 35px;
    height: 35px;
}
.whatsapp-float:hover {
    transform: scale(1.1);
}

.lgpd-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #1e1e1e;
    border-top: 2px solid var(--accent-color);
    padding: 20px;
    z-index: 999999 !important;
    display: none;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.8);
}
.lgpd-banner .container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

/* 13. RESPONSIVO FINAL */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #121212;
        padding: 20px;
        flex-direction: column;
        border-bottom: 1px solid var(--accent-color);
    }
    .nav-menu.active {
        display: flex;
    }
    .nav-menu ul {
        flex-direction: column;
        width: 100%;
    }
    .mobile-toggle {
        display: block;
    }
    .bg-text {
        font-size: 4rem;
        letter-spacing: 5px;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .about-grid {
        grid-template-columns: 1fr;
    }
    .about-image {
        order: -1;
    }
    .insta-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* --- Wrapper Principal da Página de Contato --- */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr; /* Coluna do form um pouco maior */
    gap: 80px; /* AUMENTADO: Mais espaço entre as colunas */
    padding: 60px 20px; /* Ajuste de respiro geral */
    align-items: flex-start;
}

/* --- Coluna da Esquerda (Info - Agora com Texto Claro) --- */
.contact-info {
    padding-right: 20px;
}

.contact-info h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #ffffff; /* CORRIGIDO: Branco para aparecer no fundo preto */
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-info > p {
    color: #cccccc; /* CORRIGIDO: Cinza claro */
    font-size: 1.1rem;
    margin-bottom: 50px;
    line-height: 1.6;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px; /* AUMENTADO: Mais espaço entre itens */
}

.info-item i {
    font-size: 1.5rem;
    color: #c5a47e; /* Dourado/Bege */
    margin-right: 20px;
    margin-top: 5px;
    width: 25px;
    text-align: center;
}

.info-item h3 {
    font-size: 1.1rem;
    color: #ffffff; /* CORRIGIDO: Branco */
    margin-bottom: 5px;
    font-weight: 600;
}

.info-item p {
    font-size: 0.95rem;
    color: #b0b0b0; /* CORRIGIDO: Cinza claro */
    margin-bottom: 5px;
}

.link-highlight {
    color: #c5a47e; /* CORRIGIDO: Dourado para destaque */
    font-weight: bold;
    text-decoration: none;
    font-size: 1.1rem;
    border-bottom: 1px solid transparent;
    transition: all 0.3s;
}

.link-highlight:hover {
    color: #ffffff; /* Fica branco ao passar o mouse */
    border-bottom-color: #ffffff;
}

.map-container {
    margin-top: 30px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* --- Coluna da Direita (Formulário - Mantém fundo branco) --- */
.contact-form-box {
    background-color: #ffffff;
    padding: 50px; /* AUMENTADO: Mais espaço interno */
    border-radius: 4px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2); /* Sombra mais forte */
    border: 1px solid #eee;
}

.contact-form-box h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #333333; /* Mantém escuro pois o fundo é branco */
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #444;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 2px;
    font-size: 1rem;
    background-color: #f9f9f9;
    transition: border-color 0.3s, background-color 0.3s;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #c5a47e; /* Foco Dourado */
    background-color: #ffffff;
}

.btn-submit {
    width: 100%;
    background-color: #1a1a1a;
    color: #fff;
    padding: 15px;
    border: none;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 10px;
}

.btn-submit:hover {
    background-color: #c5a47e;
    color: #fff;
}

/* --- Responsividade --- */
@media (max-width: 900px) { /* Ajustei para quebrar antes no tablet */
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-form-box {
        padding: 30px;
    }
    
    .contact-info {
        padding-right: 0;
    }
}

/* --- PÁGINA PORTFÓLIO --- */

/* Filtros (Botões) */
.portfolio-filters {
    text-align: center;
    margin-bottom: 50px;
    margin-top: 20px;
}

.filter-btn {
    background: transparent;
    border: none;
    color: #666;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0 10px 15px 10px; /* Margem inferior de 15px para separar as linhas */
    display: inline-block; /* Garante que respeite as margens */
    cursor: pointer;
    position: relative;
    padding-bottom: 5px;
    transition: color 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    color: #c5a47e; /* Dourado */
}

/* O risquinho embaixo do botão ativo */
.filter-btn::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #c5a47e;
    bottom: 0;
    left: 0;
    transition: width 0.3s;
}

.filter-btn.active::after {
    width: 100%;
}

/* Grid de Imagens */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); /* Responsivo automático */
    gap: 30px;
}

.portfolio-item {
    transition: opacity 0.3s ease;
}

.portfolio-img-box {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    cursor: pointer;
    aspect-ratio: 4/3; /* Mantém todas as fotos retangulares iguais */
}

.portfolio-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

/* Efeito Hover: Zoom na imagem */
.portfolio-img-box:hover img {
    transform: scale(1.1);
}

/* Overlay Escuro com Texto */
.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Fundo preto transparente */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0; /* Invisível por padrão */
    transition: opacity 0.3s ease;
}

.portfolio-img-box:hover .portfolio-overlay {
    opacity: 1; /* Aparece ao passar o mouse */
}

.portfolio-overlay h3 {
    color: #fff;
    font-size: 1.5rem;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    margin-bottom: 5px;
}

.portfolio-overlay span {
    color: #c5a47e; /* Categoria em Dourado */
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transform: translateY(20px);
    transition: transform 0.3s ease 0.1s; /* Delay leve */
}

/* Animação do texto subindo */
.portfolio-img-box:hover .portfolio-overlay h3,
.portfolio-img-box:hover .portfolio-overlay span {
    transform: translateY(0);
}

/* Mobile */
@media (max-width: 768px) {
    .filter-btn {
        margin: 0 8px;
        font-size: 0.85rem;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr; /* 1 coluna no celular */
    }
}

/* --- PÁGINA FAQ --- */

.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 20px 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #f1eeea; /* Dourado no Hover */
}

.faq-question.active {
    color: #c5a47e; /* Dourado quando aberto */
}

/* Ícone de Mais/Menos */
.faq-question i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.faq-question.active i {
    transform: rotate(45deg); /* Vira um X quando aberto */
}

/* Área da Resposta (Animação) */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    padding-right: 20px;
}

.faq-answer p {
    padding-bottom: 20px;
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* --- PÁGINAS LEGAIS (Termos e Privacidade) --- */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    padding: 40px;
    border-radius: 4px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.legal-content h2 {
    font-size: 1.5rem;
    color: #333;
    margin-top: 30px;
    margin-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 1rem;
    text-align: justify;
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.legal-content ul li {
    color: #555;
    margin-bottom: 10px;
    line-height: 1.6;
}

/* Responsivo */
@media (max-width: 768px) {
    .legal-content {
        padding: 20px;
    }
}

input {
    background-color: #222 !important; /* Fundo escuro */
    color: #fff !important;            /* Texto branco */
    border: 1px solid #444 !important;
}

/* ==========================================================================
   CORREÇÕES MOBILE DEFINITIVAS (Use este bloco no final do arquivo)
   ========================================================================== */
@media (max-width: 900px) {

    /* --- 1. MENU HAMBÚRGUER (CORRIGIDO) --- */
    /* Oculta o menu normal */
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #000;
        border-top: 1px solid #333;
        padding: 20px 0;
        z-index: 9999;
    }

    /* Mostra quando ativo */
    .nav-menu.active {
        display: block; /* Força aparecer */
    }

    .nav-menu ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    /* Mostra o botão de abrir */
    .menu-toggle {
        display: block !important; /* Força aparecer */
        font-size: 2rem;
        color: #c5a47e; /* Dourado */
        cursor: pointer;
        padding: 10px;
    }
    
    /* Garante que o ícone do FontAwesome apareça */
    .menu-toggle i {
        display: block;
    }
    /* Esconde os spans antigos para usar só o ícone bonito */
    .menu-toggle span {
        display: none;
    }


    /* --- 2. INSTAGRAM (CORRIGIDO COM FORÇA BRUTA) --- */
    /* Força o container a ficar em coluna, ignorando o style inline do PHP */
    .instagram-section .container > div[style] {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 20px !important;
        margin-bottom: 30px !important;
    }

    .instagram-section h2 {
        font-size: 1.1rem !important; /* Diminui a fonte */
        word-wrap: break-word; /* Quebra linha se precisar */
        text-align: center;
        line-height: 1.4;
    }
    
    .instagram-section .btn-outline {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }

    /* Ajusta grade de fotos do insta para 2 colunas */
    .insta-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }


    /* --- 3. PÁGINA DE CONTATO (CORRIGIDO) --- */
    /* Quebra o layout de lado-a-lado para um-embaixo-do-outro */
    .contact-wrapper {
        display: flex !important;
        flex-direction: column !important;
        padding: 20px !important;
        gap: 40px !important;
    }

    .contact-info, .contact-form-box {
        width: 100% !important;
        padding: 0 !important;
        max-width: 100% !important;
    }

    /* Ajusta o formulário para não vazar */
    .contact-form-box {
        padding: 25px !important;
        box-sizing: border-box; /* Garante que padding não aumente a largura */
    }


    /* --- 4. AJUSTES GERAIS --- */
    /* Reduz tamanho de fontes gigantes na home */
    .bg-text {
        font-size: 3rem !important;
    }
    .hero-content h1 {
        font-size: 2rem !important;
        padding: 0 10px;
    }
    
    /* Botão do Zap no lugar certo */
    .whatsapp-float {
        right: 20px !important;
        bottom: 20px !important;
        width: 50px !important;
        height: 50px !important;
    }
}