@charset "utf-8";
/* CSS Document */

/* Variáveis de Cores (Paleta Verde, Marrom, Bege) */
:root {
    --primary-green: #2E5C46; /* Verde Nobre */
    --hover-green: #224534;
    --primary-brown: #5D4037; /* Marrom Madeira */
    --accent-beige: #F5F1E6;  /* Bege Fundo */
    --text-dark: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --whatsapp: #25D366;
}

/* Reset e Configurações Gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    color: --text-dark;
    background-color: var(--accent-beige);
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif; /* Fonte mais elegante para títulos */
    color: var(--primary-brown);
}

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

a {
    text-decoration: none;
}

/* Header */
header {
    background-color: var(--white);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

/* --- AQUI ESTÁ A ALTERAÇÃO DO LOGO --- */
.logo-link {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 60px; /* Ajuste este número se quiser o logo maior ou menor */
    width: auto;
    object-fit: contain;
    transition: transform 0.3s;
}

.logo-img:hover {
    transform: scale(1.05);
}
/* ------------------------------------- */

nav a {
    color: var(--text-dark);
    margin-left: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: 0.3s;
}

.btn-nav {
    background-color: var(--primary-brown);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: 5px;
}

.btn-nav:hover {
    background-color: var(--primary-green);
}

/* Hero Section */
.hero {
    background: url('https://images.unsplash.com/photo-1556228453-efd6c1ff04f6?q=80&w=2070&auto=format&fit=crop') no-repeat center center/cover;
    height: 80vh; /* Ocupa 80% da altura da tela */
    display: flex;
    align-items: center;
    position: relative;
    text-align: center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Escurece a foto para ler o texto */
}

.hero-text {
    position: relative;
    z-index: 1;
    color: var(--white);
    width: 100%;
}

.hero-text h2 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 15px;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.badge {
    background-color: var(--primary-green);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 50px;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: inline-block;
}

/* Botões */
.btn-cta {
    display: inline-block;
    background-color: var(--whatsapp);
    color: var(--white);
    padding: 15px 30px;
    font-size: 1.1rem;
    border-radius: 50px;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s;
}

.btn-cta:hover {
    transform: scale(1.05);
    background-color: #1ebc57;
}

.btn-inverse {
    background-color: var(--primary-brown);
    box-shadow: none;
}
.btn-inverse:hover {
    background-color: var(--primary-green);
}

/* Seções Gerais */
.section-padding {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 50px;
}

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

.card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    text-align: center;
    transition: 0.3s;
    border-bottom: 4px solid var(--primary-green);
}

.card:hover {
    transform: translateY(-5px);
}

.icon-box {
    font-size: 2.5rem;
    color: var(--primary-brown);
    margin-bottom: 20px;
}

.card ul {
    list-style: none;
    margin: 20px 0;
    color: var(--text-light);
}

.card ul li {
    margin-bottom: 8px;
    border-bottom: 1px dashed #eee;
    padding-bottom: 5px;
}

.link-card {
    color: var(--primary-green);
    font-weight: bold;
}

/* Diferenciais */
.bg-alt {
    background-color: var(--white);
}

.grid-diferenciais {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}

.item-dif i {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.map-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 30px auto;
    border-radius: 10px;
    overflow: hidden; /* Arredonda as pontas do mapa */
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.endereco-texto {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.endereco-texto p {
    margin: 10px 0;
}

.endereco-texto i {
    color: var(--primary-green);
    margin-right: 8px;
}

/* Footer */
footer {
    background-color: #f0ebe0; /* Bege um pouco mais escuro */
    padding: 60px 0 20px 0;
    text-align: center;
}

.footer-content h3 {
    margin-bottom: 15px;
}

.footer-content p {
    margin-bottom: 30px;
}

.copyright {
    margin-top: 50px;
    font-size: 0.8rem;
    color: #999;
    border-top: 1px solid #ddd;
    padding-top: 20px;
}

/* Botão Flutuante WhatsApp */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #1ebc57;
}

.tooltip {
    position: absolute;
    right: 70px;
    background-color: #333;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    opacity: 0;
    transition: 0.3s;
    white-space: nowrap;
}

.whatsapp-float:hover .tooltip {
    opacity: 1;
    right: 75px;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Mobile Responsivo */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
    }
    nav {
        margin-top: 15px;
    }
    .hero-text h2 {
        font-size: 2rem;
    }
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
.logo-img {
        height: 45px; /* Reduz o logo no celular */
    }
}