/* CSS RESET & VARIABLES */
:root {
    --primary: #1A4331; 
    --primary-light: #2A5A44; 
    --secondary: #B3985B; 
    --bg-color: #FDFBF7; 
    --bg-cream: #F4F1E1; 
    --text-dark: #1E2923;
    --text-light: #4A534D;
    --white: #FFFFFF;
    
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

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

.section { padding: 60px 0; }
.bg-cream { background-color: var(--bg-cream); }

.section-subtitle {
    display: block;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary);
    margin-bottom: 10px;
}

.section-title { margin-bottom: 35px; max-width: 800px; margin-left: auto; margin-right: auto; }
.section-title h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 15px;
}
.section-title p {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* Alterações Específicas da Seção Produtos */
.section-compact {
    padding-top: 35px;
    padding-bottom: 35px;
}
.title-compact {
    margin-bottom: 20px;
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    text-align: center;
    white-space: nowrap;
}
.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(26, 67, 49, 0.2);
}
.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 67, 49, 0.3);
}
.btn-secondary {
    background-color: transparent;
    color: var(--white); 
    border-color: var(--white);
}
.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary);
}
.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
    padding: 10px 24px;
}
.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
}

/* HEADER */
#header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #FFFFFF; /* Fundo totalmente branco para igualar com o fundo da logo */
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.03);
    padding: 15px 0;
    transition: var(--transition);
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 6%;
}
.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0; 
}
.logo img {
    height: 75px; /* Tamanho da logo aumentado */
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 30px; 
}
.nav-links li a {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}
.nav-links li a:hover {
    color: var(--secondary);
}

.nav-btn {
    flex-shrink: 0; 
    padding: 10px 24px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}
.menu-toggle .bar {
    width: 25px;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

/* HERO */
#hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    background-color: var(--primary);
    overflow: hidden;
    padding-top: 100px;
}
.leaf-deco {
    position: absolute;
    background-color: var(--primary-light);
    border-radius: 50%;
    opacity: 0.4;
    z-index: 0;
}
.leaf-top-right {
    width: 650px;
    height: 650px;
    top: -200px;
    right: -150px;
}
.leaf-bottom-left {
    width: 350px;
    height: 350px;
    bottom: -100px;
    left: -100px;
    opacity: 0.2;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px; 
    color: var(--white);
}
.badge {
    display: inline-block;
    margin-top: 15px; 
    padding: 6px 18px;
    background-color: var(--secondary);
    color: var(--white);
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
}
#hero h1 {
    font-family: var(--font-heading);
    font-size: 3.8rem; 
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 700;
}
.hero-subtitle {
    font-size: 1.15rem; 
    font-weight: 300;
    margin-bottom: 30px;
    opacity: 0.95;
    line-height: 1.6;
}
.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 25px; 
}

/* SOBRE */
.sobre-container {
    display: flex;
    align-items: center;
    gap: 40px;
}
.sobre-image-wrapper {
    flex: 1;
    position: relative;
    max-width: 400px;
}
.sobre-image-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    background-color: var(--primary);
    border-radius: 200px 200px 0 0; 
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(26, 67, 49, 0.1);
    overflow: hidden; /* Corta a imagem no formato curvo */
}
.sobre-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* A imagem cobre todo o elemento sem distorcer */
}
.circle-deco {
    position: absolute;
    width: 150px;
    height: 150px;
    border: 2px solid var(--secondary);
    border-radius: 50%;
    bottom: -30px;
    left: -30px;
    z-index: 1;
}
.sobre-text { flex: 1.2; }
.sobre-text h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}
.text-spacing p {
    margin-bottom: 15px;
    font-size: 1.05rem;
    color: var(--text-light);
}
.quote-box {
    margin-top: 25px;
    padding: 20px;
    border-left: 4px solid var(--secondary);
    background-color: rgba(179, 152, 91, 0.08);
}
.quote-box em {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    line-height: 1.4;
    color: var(--primary);
    display: block;
}

/* SERVIÇOS */
.grid-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 20px; 
}
.card {
    background: var(--bg-cream);
    padding: 35px 25px; 
    border-radius: 12px;
    border: 1px solid rgba(179, 152, 91, 0.2);
    transition: var(--transition);
}
.card:hover {
    transform: translateY(-10px);
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 15px 30px rgba(26, 67, 49, 0.15);
}
.card:hover h3, .card:hover p {
    color: var(--white);
}
.card-icon {
    font-size: 2.5rem; 
    margin-bottom: 15px;
}
.card h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem; 
    margin-bottom: 10px;
    color: var(--primary);
    transition: var(--transition);
}
.card p {
    color: var(--text-light);
    font-size: 0.95rem; 
    transition: var(--transition);
}

/* VALORES / PRICING */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}
.pricing-card {
    background: var(--white);
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    position: relative;
    border: 1px solid rgba(179, 152, 91, 0.2);
    transition: var(--transition);
}
.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(26, 67, 49, 0.1);
}
.pricing-card.highlight {
    border: 2px solid var(--secondary);
}
.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}
.pricing-header {
    text-align: center;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding-bottom: 15px;
}
.pricing-header h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--primary);
}
.pricing-header p {
    color: var(--text-light);
    font-size: 0.95rem;
}
.pricing-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px dashed rgba(0,0,0,0.08);
    flex-wrap: wrap;
    gap: 8px;
}
.pricing-list li:last-child {
    border-bottom: none;
}
.pricing-list span {
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 500;
}
.pricing-item-right {
    text-align: right;
}
.pricing-list strong {
    color: var(--primary);
    font-size: 1.3rem;
    font-weight: 700;
    display: block;
}
.pricing-list small {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 400;
}
.pricing-list .total {
    display: block;
    font-size: 0.85rem;
    color: var(--secondary);
    font-weight: 600;
    margin-top: 3px;
}
.pricing-note {
    text-align: center;
    margin-top: 20px;
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
}

/* PRODUTOS DESTAQUE */
.produtos-destaque {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
}
.produtos-imagem {
    width: 100%;
    max-width: 340px;
    margin: 0 auto 35px auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(26, 67, 49, 0.15);
    border: 2px solid rgba(179, 152, 91, 0.2);
}
.produtos-imagem img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}
.produtos-imagem:hover img {
    transform: scale(1.03);
}
.produtos-botoes {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}

/* LOCALIZAÇÃO */
.dual-col {
    display: flex;
    gap: 40px; 
    align-items: center;
}
.horarios-box, .map-box { flex: 1; }
.contact-card {
    background: var(--white);
    padding: 35px; 
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}
.info-item {
    padding: 8px 0;
}
.info-item strong {
    display: block;
    color: var(--primary);
    margin-bottom: 5px;
    font-size: 1.1rem;
    font-family: var(--font-heading);
}
.info-item p {
    color: var(--text-light);
    font-size: 1rem;
    margin-left: 15px; 
}
.link-highlight {
    color: var(--secondary);
    font-weight: 600;
}
.divider {
    border: 0;
    height: 1px;
    background: rgba(179, 152, 91, 0.2);
    margin: 12px 0;
}

.iframe-container {
    width: 100%;
    height: 350px; 
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.iframe-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* FOOTER */
footer {
    background-color: var(--primary);
    color: var(--white);
    padding: 50px 0 20px;
    text-align: center;
}
.footer-brand h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 5px;
    color: var(--secondary);
}
.footer-slogan {
    font-style: italic;
    margin-top: 10px;
    opacity: 0.8;
    font-size: 1.05rem;
}
.footer-links {
    margin: 25px 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}
.footer-links a {
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1.2px;
    font-weight: 600;
    transition: var(--transition);
}
.footer-links a:hover { color: var(--secondary); }
.copyright {
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

/* FLOATING WHATSAPP */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
}
.floating-wa svg {
    flex-shrink: 0;
}
.floating-wa:hover {
    transform: scale(1.1);
}

/* ANIMATIONS */
.fade-in { animation: fadeIn 1.2s ease forwards; }
.slide-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.slide-up.visible {
    opacity: 1;
    transform: translateY(0);
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* RESPONSIVE */
@media (max-width: 1150px) {
    .nav-links { gap: 15px; }
    .nav-links li a { font-size: 0.8rem; }
    .btn-primary.nav-btn { padding: 8px 16px; font-size: 0.8rem; }
    .logo img { height: 60px; } /* Aumentado proporcionalmente para responsivo */
}

@media (max-width: 992px) {
    .sobre-container, .dual-col { flex-direction: column; gap: 40px; }
    #hero h1 { font-size: 3rem; }
}

@media (max-width: 768px) {
    .nav-links, .nav-btn { display: none; }
    .menu-toggle { display: flex; }
    
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #FFFFFF; /* Fundo branco no menu mobile */
        padding: 30px 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        align-items: center;
    }
    
    #hero { padding-top: 100px; min-height: 85vh; }
    #hero h1 { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1.05rem; }
    .hero-buttons { flex-direction: column; }
    .leaf-top-right { width: 400px; height: 400px; top: -100px; right: -100px; }
    .sobre-image-wrapper { width: 100%; max-width: 400px; margin: 0 auto; }
    .sobre-text h2 { font-size: 2.5rem; }
    
    .card { padding: 30px 20px; }
    .contact-card { padding: 30px 20px; }
    .info-item p { margin-left: 0; margin-top: 5px; }
    .footer-links { flex-direction: column; gap: 20px; }
    
    .produtos-botoes {
        flex-direction: column;
        align-items: center;
    }
    .produtos-botoes .btn {
        width: 100%;
        max-width: 300px;
    }
    .pricing-card.highlight {
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .pricing-list li {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    .pricing-item-right {
        text-align: left;
    }
}
