/* --- PADRÕES GERAIS --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

:root {
    --cor-primaria: #111216; /* Preto da logo */
    --cor-secundaria: #d59b8b; /* Marrom/Salmão da logo */
    --cor-fundo: #f9f9f9; 
    --cor-texto: #444444;
}

body {
    background-color: var(--cor-fundo);
    color: var(--cor-texto);
    line-height: 1.6;
}

/* --- CABEÇALHO --- */
header {
    background-color: white;
    padding: 10px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
}

/* AJUSTE FINAL DA LOGO - Quadrada e proporcional */
.logo-img {
    height: 85px; 
    width: auto;
    border-radius: 0; /* Remove o círculo para não cortar o texto */
    object-fit: contain;
}

.btn-contato-topo {
    background-color: var(--cor-primaria);
    color: white;
    padding: 10px 25px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--cor-primaria);
}

.btn-contato-topo:hover {
    background-color: transparent;
    color: var(--cor-primaria);
}

/* --- HERO SECTION --- */
.hero {
    background: linear-gradient(rgba(17, 18, 22, 0.9), rgba(17, 18, 22, 0.9)), 
                url('https://images.unsplash.com/photo-1554224155-8d04cb21cd6c?q=80&w=1920&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 8%;
    text-align: center;
}

.hero h1 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero h1 span {
    color: var(--cor-secundaria);
}

.hero p {
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    color: #cccccc;
}

.btn-principal {
    background-color: var(--cor-secundaria);
    color: var(--cor-primaria);
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(213, 155, 139, 0.3);
}

.btn-principal:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(213, 155, 139, 0.4);
}

/* --- SERVIÇOS --- */
.servicos {
    padding: 80px 8%;
}

.servicos h2 {
    color: var(--cor-primaria);
    font-size: 32px;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 700;
}

.grid-servicos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.card {
    background-color: white;
    padding: 35px 25px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border-bottom: 4px solid var(--cor-secundaria);
}

.card:hover {
    transform: translateY(-10px);
}

.icone-principal {
    font-size: 35px;
    color: var(--cor-secundaria);
    margin-bottom: 20px;
}

.card h3 {
    color: var(--cor-primaria);
    font-size: 20px;
    margin-bottom: 20px;
}

.card ul { list-style: none; }

.card ul li {
    margin-bottom: 12px;
    font-size: 14px;
    color: #666;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.card ul li i { color: var(--cor-secundaria); margin-top: 4px; }

/* --- ANIMAÇÕES (JS) --- */
.animar-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.animar-scroll.aparecer {
    opacity: 1;
    transform: translateY(0);
}

/* --- WHATSAPP FLOAT --- */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 1000;
    text-decoration: none;
    transition: 0.3s;
}

.whatsapp-float:hover { transform: scale(1.1); }

/* --- RODAPÉ --- */
footer {
    background-color: var(--cor-primaria);
    color: white;
    padding: 60px 8% 40px;
    text-align: center;
}

.email-link {
    color: var(--cor-secundaria);
    text-decoration: none;
    display: block;
    margin: 15px 0;
    font-weight: 600;
}

.redes-sociais a {
    color: white;
    font-size: 28px;
    margin: 0 15px;
    transition: 0.3s;
}

.redes-sociais a:hover { color: var(--cor-secundaria); }

/* --- RESPONSIVIDADE (Celular e Tablet) --- */
@media (max-width: 1024px) {
    header { padding: 10px 5%; }
    .hero h1 { font-size: 36px; }
}

@media (max-width: 768px) {
    header { flex-direction: column; gap: 15px; padding: 20px; }
    .btn-contato-topo { display: none; }
    .hero { padding: 60px 5%; }
    .hero h1 { font-size: 28px; }
    .btn-principal { width: 100%; justify-content: center; }
    .whatsapp-float { width: 50px; height: 50px; bottom: 20px; right: 20px; font-size: 30px; }
}