/* =========================================
   Variáveis CSS (Baseadas na Logo)
   ========================================= */
   :root {
    --bg-color: #fcf6e8; /* Creme de fundo */
    --text-color: #514e45; /* Marrom escuro da fonte */
    --accent-color: #78a265; /* Verde sol/detalhe */
    --accent-hover: #5d814d; /* Verde escuro para hover */
    --light-accent: #eef1ea; /* Verde super claro para fundos alternativos */
    
    --font-heading: 'Playfair Display', serif; /* Fonte elegante para títulos */
    --font-body: 'Poppins', sans-serif; /* Fonte moderna para textos */
    
    --transition: all 0.3s ease;
}

/* =========================================
   Reset Básico
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth; /* Rolagem suave */
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

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

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* =========================================
   Tipografia Global
   ========================================= */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-color);
    font-weight: 700;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
}

.text-center {
    text-align: center;
}

.text-center.section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-subtitle {
    margin-bottom: 3rem;
    font-size: 1.1rem;
    opacity: 0.8;
}

/* Botões */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

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

.btn-primary:hover {
    background-color: var(--accent-color);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(120, 162, 101, 0.3);
}

/* =========================================
   Header & Navegação
   ========================================= */
.header {
    background-color: var(--bg-color);
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(81, 78, 69, 0.05);
}

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

.logo-img {
    height: 50px; /* Ajuste o tamanho da logo */
}

/* Fallback do texto se não tiver imagem */
.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    letter-spacing: 1px;
}

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

.nav-link {
    font-weight: 500;
    position: relative;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--accent-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--text-color);
    transition: var(--transition);
}

/* =========================================
   Seção Hero
   ========================================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px; /* Altura do header */
    background: linear-gradient(135deg, var(--bg-color) 0%, var(--light-accent) 100%);
}

.hero-content {
    max-width: 600px;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* =========================================
   Sobre Nós
   ========================================= */
.about {
    padding: 100px 0;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.about-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

/* Um shape estético no lugar de uma imagem temporária */
.about-image-shape {
    width: 300px;
    height: 400px;
    background-color: var(--accent-color);
    border-radius: 150px 150px 0 0;
    position: relative;
    overflow: hidden;
}

.about-image-shape::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 0;
    background-color: var(--light-accent);
    border-radius: 130px 130px 0 0;
}

/* =========================================
   Nossos Serviços
   ========================================= */
.services {
    padding: 100px 0;
    background-color: var(--light-accent);
}

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

.service-card {
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border-bottom: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-bottom: 4px solid var(--accent-color);
    box-shadow: 0 15px 40px rgba(120, 162, 101, 0.1);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* =========================================
   Agendamento / Booking
   ========================================= */
.booking {
    padding: 100px 0;
    text-align: center;
    background-color: var(--text-color);
    color: var(--bg-color);
}

.booking .section-title {
    color: var(--bg-color);
}

.booking .section-title::after {
    background-color: var(--accent-color);
}

.booking-content p {
    max-width: 600px;
    margin: 0 auto 40px auto;
    font-size: 1.2rem;
    opacity: 0.9;
}

.btn-whatsapp {
    background-color: #25D366;
    color: #fff;
    font-size: 1.1rem;
    padding: 15px 35px;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.whatsapp-icon {
    margin-right: 10px;
}

/* =========================================
   Localização
   ========================================= */
.location {
    padding: 100px 0;
}

.location-wrapper {
    display: flex;
    gap: 40px;
    align-items: stretch;
}

.location-info {
    flex: 1;
    background-color: var(--bg-color);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid var(--light-accent);
}

.location-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.location-info p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.location-map {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    min-height: 300px;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background-color: #e3e3e3;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777;
    font-weight: bold;
}

/* =========================================
   Rodapé
   ========================================= */
.footer {
    background-color: var(--text-color);
    color: var(--bg-color);
    padding: 60px 0 20px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    color: var(--accent-color);
    margin-bottom: 15px;
}

.footer-links h4, .footer-social h4 {
    color: var(--bg-color);
    margin-bottom: 20px;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.social-icons a {
    display: inline-block;
    margin-right: 15px;
    opacity: 0.8;
    transition: var(--transition);
}

.social-icons a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(252, 246, 232, 0.1);
    opacity: 0.7;
    font-size: 0.9rem;
}

/* =========================================
   Responsividade (Mobile First Optimization)
   ========================================= */
@media (max-width: 992px) {
    .about-container, .location-wrapper {
        flex-direction: column;
    }
    .hero-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .d-none-mobile {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--bg-color);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
    }

    .nav.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .nav-link {
        font-size: 1.5rem;
    }

    /* Animação do Hamburger Menu */
    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 2rem;
    }
}
