/* --- style.css (Versão Final: Cabeçalho Boutique + Rodapé Alinhado) --- */

:root {
    --cor-primaria: #7FBF7F; 
    --cor-secundaria: #E09F7D; 
    --cor-acento: #F4D35E; 
    --cor-fundo-claro: #FAF9F6; 
    --cor-texto: #4A4A4A;
    --cor-branco: #ffffff;
    --sombra-suave: 0 8px 20px rgba(127, 191, 127, 0.15);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Nunito', sans-serif;
    color: var(--cor-texto);
    line-height: 1.6;
    background-color: var(--cor-fundo-claro);
    background-image: radial-gradient(#7fbf7f 0.5px, transparent 0.5px);
    background-size: 20px 20px;
    background-blend-mode: multiply;
    overflow-x: hidden;
}

/* Tipografia */
h1, h2, h3, .logo-text { font-family: 'Fredoka One', cursive; letter-spacing: 0.5px; }
h2 { font-size: 2.5rem; text-align: center; margin-bottom: 2rem; color: var(--cor-primaria); }
h2 span { color: var(--cor-secundaria); }

/* Componentes */
.container { width: 90%; max-width: 1200px; margin: 0 auto; }
a { text-decoration: none; }
section { padding: 5rem 0; }

/* Botões */
.btn {
    display: inline-block; padding: 0.8rem 1.5rem; border-radius: 50px;
    font-weight: bold; font-size: 1rem; transition: all 0.3s ease;
    border: none; cursor: pointer; box-shadow: var(--sombra-suave);
}
.btn-whatsapp { background: #25D366; color: var(--cor-branco); border: 2px solid white; }
.btn-whatsapp:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(37, 211, 102, 0.4); }
.btn-primary { background: linear-gradient(45deg, var(--cor-secundaria), #e8b688); color: var(--cor-branco); }
.btn-primary:hover { transform: translateY(-3px); background: linear-gradient(45deg, #d68e6d, var(--cor-secundaria)); }


/* --- CABEÇALHO (Logo Esq | Menu Centro | Social Dir) --- */
header {
    background-color: #ffffff;
    position: relative; /* Não fixo */
    padding: 1rem 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    z-index: 1000;
}

.navbar { 
    display: flex; 
    flex-direction: row; 
    justify-content: space-between; 
    align-items: center; 
    padding: 0 5%;
}

.logo-img { 
    max-height: 200px; /* Logo Grande */
    width: auto; 
    display: block; 
    transition: transform 0.3s ease; 
}
.logo-img:hover { transform: scale(1.05); }

.nav-links { 
    display: flex; 
    gap: 2rem; 
    list-style: none; 
    margin: 0; 
    padding: 0; 
}

.nav-links a { 
    color: var(--cor-texto); 
    font-weight: bold; 
    text-transform: uppercase; 
    font-size: 0.95rem; 
    letter-spacing: 1px;
    transition: 0.3s; 
}
.nav-links a:hover { color: var(--cor-primaria); }

/* --- ÍCONES SOCIAIS NO TOPO (NOVO) --- */
.header-socials {
    display: flex;
    gap: 15px;
    align-items: center;
}

.header-socials a {
    color: var(--cor-primaria); /* Verde da marca */
    font-size: 1.5rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f0f7f0; /* Fundo verdinho bem claro */
}

.header-socials a:hover {
    background-color: var(--cor-primaria);
    color: white;
    transform: translateY(-3px);
}

/* Oculta o botão antigo de orçamento no desktop se existir */
.navbar .btn-whatsapp { display: none; } 

/* RESPONSIVO (Celular) */
@media (max-width: 768px) {
    .navbar { flex-direction: column; gap: 15px; }
    .logo-img { max-height: 120px; } 
    .nav-links { gap: 1rem; font-size: 0.8rem; }
    
    /* No celular, os ícones sociais ficam embaixo do menu */
    .header-socials { margin-top: 5px; }
}


/* RESPONSIVO (Celular) */
@media (max-width: 768px) {
    /* No celular, a logo de 200px ocuparia a tela toda, então reduzimos um pouco aqui */
    /* E colocamos um embaixo do outro para caber */
    .navbar { flex-direction: column; gap: 15px; }
    .logo-img { max-height: 120px; } 
    .nav-links { gap: 1rem; font-size: 0.8rem; }
}

/* Esconde o botão verde do menu no PC (já temos o flutuante) */
.navbar .btn-whatsapp { display: none; } 

/* RESPONSIVO (Celular) */
@media (max-width: 768px) {
    /* No celular, centralizamos tudo de novo para caber */
    .navbar { flex-direction: column; gap: 10px; padding-bottom: 10px; }
    .nav-links { gap: 1rem; font-size: 0.8rem; }
    .logo-img { max-height: 70px; }
}

/* Hero */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('img/fundo-topo.jpg');
    background-size: cover; background-position: center center; background-repeat: no-repeat;
    color: var(--cor-branco); text-align: center; padding: 8rem 5% 5rem;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    min-height: 70vh; border-bottom-left-radius: 50px; border-bottom-right-radius: 50px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1); 
}
.hero h1 { font-size: 3.5rem; margin-bottom: 1rem; text-shadow: 2px 2px 10px rgba(0,0,0,0.9); }
.hero span { color: var(--cor-acento); text-shadow: 2px 2px 10px rgba(0,0,0,0.9); }
.hero p { font-size: 1.3rem; margin-bottom: 2rem; max-width: 600px; text-shadow: 1px 1px 5px rgba(0,0,0,0.9); font-weight: bold; }

/* Sobre & Galeria */
.sobre { background-color: transparent; text-align: center; }
.sobre p { max-width: 700px; margin: 0 auto 2rem; font-size: 1.1rem; }
.sobre i { color: var(--cor-acento); margin: 0 10px; }
.galeria { background-color: transparent; }
.grid-galeria { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; padding: 0 2%; }

/* Cards */
.card-festa {
    background: var(--cor-branco); border-radius: 20px; overflow: hidden;
    box-shadow: var(--sombra-suave); transition: transform 0.3s ease;
    position: relative; border: 2px solid transparent;
}
.card-festa:hover { transform: scale(1.03); border-color: var(--cor-acento); }
.card-img-wrapper { height: 250px; overflow: hidden; position: relative; }
.card-festa img { width: 100%; height: 100%; object-fit: cover; }
.card-info {
    padding: 15px; text-align: center; background: var(--cor-branco);
    color: var(--cor-texto); border-top: 4px solid var(--cor-primaria);
}
.card-info h3 { font-size: 1.3rem; color: var(--cor-primaria); }

/* Depoimentos */
.depoimentos {
    background-color: white; padding: 4rem 5%; border-radius: 50px;
    margin-top: 4rem; box-shadow: var(--sombra-suave);
}
.grid-depoimentos { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 2rem; }
.card-depoimento {
    background-color: var(--cor-fundo-claro); padding: 2rem; border-radius: 20px;
    position: relative; box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05); transition: transform 0.3s;
}
.card-depoimento:hover { transform: translateY(-5px); border-color: var(--cor-acento); }
.quote-icon { font-size: 2rem; color: var(--cor-secundaria); opacity: 0.3; position: absolute; top: 20px; left: 20px; }
.depoimento-texto { font-style: italic; margin-bottom: 1.5rem; color: #555; margin-top: 1rem; font-size: 1rem; }
.cliente-nome { font-weight: bold; color: var(--cor-primaria); font-size: 1.1rem; }
.estrelas { color: var(--cor-acento); margin-bottom: 10px; font-size: 0.9rem; }

/* --- RODAPÉ (VERSÃO LIMPA: Sem Logo, Apenas Texto) --- */
footer {
    background-color: var(--cor-primaria); 
    color: var(--cor-branco);
    padding: 4rem 5% 1rem; 
    text-align: center; 
    margin-top: 4rem;
    border-top-left-radius: 50px; 
    border-top-right-radius: 50px;
}

.footer-content { 
    display: flex; 
    flex-wrap: wrap; 
    justify-content: space-around; 
    gap: 2rem; 
    margin-bottom: 2rem;
    align-items: flex-start; /* Alinha tudo pelo topo */
}

.footer-col { 
    flex: 1; 
    min-width: 250px; 
    margin-bottom: 20px; 
}

/* Títulos do Rodapé (Agora todos iguais) */
.footer-col h3 { 
    color: var(--cor-acento); 
    margin-bottom: 1rem; 
    font-size: 1.4rem;
    margin-top: 0; /* Removida a margem extra, agora é zero */
}

.social-icons a { 
    font-size: 1.8rem; 
    color: var(--cor-branco); 
    margin: 0 10px; 
    transition: 0.3s; 
    background: rgba(255,255,255,0.2); 
    width: 50px; 
    height: 50px;
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    border-radius: 50%;
}
.social-icons a:hover { background: var(--cor-acento); color: var(--cor-primaria); }

.copyright { margin-top: 2rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.2); font-size: 0.9rem; }

.contact-links a { color: var(--cor-branco); transition: 0.3s; display: flex; align-items: center; justify-content: center; gap: 8px; }
.contact-links p { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 10px; }
.contact-links a:hover { color: var(--cor-acento); text-decoration: underline; }
/* Botão Flutuante */
.zap-flutuante {
    position: fixed; bottom: 30px; right: 30px;
    background-color: #25D366; color: white; width: 60px; height: 60px;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 35px; box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 2000; transition: all 0.3s; border: 2px solid white;
}
.zap-flutuante:hover { transform: scale(1.1); background-color: #1EBE57; }

/* Responsivo */
@media (max-width: 768px) {
    h2 { font-size: 2rem; }
    .hero h1 { font-size: 2.5rem; }
    .nav-links { display: flex; font-size: 0.8rem; gap: 1rem; } 
    .logo-img { max-height: 90px; } 
    footer .logo-img { margin-top: 0; } /* No celular não precisa subir a logo */
    .zap-flutuante { width: 50px; height: 50px; font-size: 28px; bottom: 20px; right: 20px; }
}