:root {
    --primary-color: #004B23;
    --secondary-color: #FF4500;
    --text-color: #333333;
    --text-light: #f4f4f4;
    --bg-light: #f9f9f9;
    --bg-dark: #00381a;
    --font-main: 'Outfit', sans-serif;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.6;
}

/* Utilitários */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.bg-light {
    background-color: var(--bg-light);
}

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

.text-white {
    color: var(--text-light);
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

@media (max-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }
}

/* Cabeçalho */
.header {
    background-color: var(--primary-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--secondary-color);
}

/* Botões */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: #fff;
}

.btn-primary:hover {
    background-color: #e03e00;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 69, 0, 0.3);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.btn-secondary:hover {
    background-color: #fff;
    color: var(--primary-color);
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 20px;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Seção Hero */
.hero {
    background: linear-gradient(rgba(0, 75, 35, 0.8), rgba(0, 75, 35, 0.6)), url('img/Baoba-color.webp');
    /* Fallback/Placeholder se necessário, ou cor sólida */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Sobre & Endereço */
.section {
    padding: 80px 0;
}

.about-text h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

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

address {
    font-style: normal;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-left: 5px solid var(--secondary-color);
}

/* Métodos de Pagamento */
.payment-methods h3 {
    margin-bottom: 24px;
    color: var(--primary-color);
}

.cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.card-icon {
    width: 60px;
    height: 40px;
    object-fit: contain;
    background: white;
    padding: 5px;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 1px solid #eee;
}

.card-icon:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

/* Eventos */
.section-subtitle {
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 1.2rem;
    opacity: 0.9;
}

.event-cta {
    background: rgba(255, 69, 0, 0.1);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 69, 0, 0.3);
    max-width: 600px;
    margin: 0 auto;
}

.event-cta p {
    margin-bottom: 24px;
    font-size: 1.2rem;
}

/* Rodapé */
.footer {
    background-color: #002611;
    color: rgba(255, 255, 255, 0.6);
    padding: 40px 0;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        /* Simplificação para protótipo */
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .hero-actions {
        flex-direction: column;
    }
}