/* Style variables */
:root {
    --terracotta: #C85A32;
    --deep-green: #2C3E2E;
    --olive: #556B2F;
    --warm-cream: #FAF6F0;
    --sand: #E8DFD1;
    --text-dark: #2B2927;
    --text-muted: #5A5652;
    --gold: #D4AF37;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lora', serif;
    background-color: var(--warm-cream);
    color: var(--text-dark);
    line-height: 1.8;
}

header {
    text-align: center;
    padding: 2.5rem 1rem 1.5rem;
    background-color: var(--warm-cream);
}

.brand-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    letter-spacing: 4px;
    color: var(--deep-green);
    text-transform: uppercase;
    font-weight: 700;
}

.tagline-top {
    font-style: italic;
    color: var(--terracotta);
    margin-top: 0.5rem;
    font-size: 1.1rem;
}

/* Hero Image Area */
.hero-container {
    position: relative;
    width: 100%;
    height: 65vh;
    min-height: 400px;
    background: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.45)), 
                url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #FFFFFF;
    padding: 0 1.5rem;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.25rem;
    max-width: 750px;
    margin: 0 auto;
    font-weight: 400;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
}

/* Main Content */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

.intro-text {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 4rem;
    line-height: 2;
}

.features-section {
    background-color: #FFFFFF;
    padding: 3rem 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--sand);
    margin-bottom: 4rem;
}

.features-section h2 {
    font-family: 'Playfair Display', serif;
    color: var(--deep-green);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.features-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.features-list li {
    padding: 1rem;
    border-left: 3px solid var(--terracotta);
    background-color: var(--warm-cream);
}

.features-list strong {
    color: var(--deep-green);
    display: block;
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

/* Community / CTA Section */
.community-section {
    text-align: center;
    margin-bottom: 4rem;
    padding: 0 1rem;
}

.community-section h3 {
    font-family: 'Playfair Display', serif;
    color: var(--terracotta);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.community-section p {
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto;
}

/* Prominent Contact Section */
.contact-card {
    background-color: var(--deep-green);
    color: var(--warm-cream);
    padding: 3.5rem 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.contact-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--sand);
    margin-bottom: 1rem;
}

.contact-card p.lead {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    color: #E0E6E0;
}

.contact-details {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    font-size: 1.1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-item a {
    color: var(--sand);
    text-decoration: none;
    border-bottom: 1px dashed var(--sand);
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

/* Footer */
footer {
    text-align: center;
    padding: 2.5rem 1rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    border-top: 1px solid var(--sand);
    margin-top: 2rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.2rem; }
    .hero-content p { font-size: 1.1rem; }
    .contact-details { flex-direction: column; gap: 1rem; }
}