/* style.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
}

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

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-image: url('bg.jpg'); /* Imagem enviada */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-card {
    background-color: rgba(181, 165, 132, 0.9); /* Sand/beige color similar to reference */
    padding: 50px 45px;
    border-radius: 15px;
    max-width: 580px;
    color: #fff;
    backdrop-filter: blur(8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.brand-text {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.5rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-text i {
    font-size: 1rem;
}

.hero-card h1 {
    font-size: 1.9rem;
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.3;
}

.hero-card p {
    font-size: 1rem;
    margin-bottom: 15px;
    font-weight: 400;
}

.hero-card p strong {
    font-weight: 600;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #1a9e3d; /* Vibrant Green */
    color: #fff;
    text-decoration: none;
    padding: 16px 30px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: 25px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 6px 20px rgba(26, 158, 61, 0.4);
    width: 100%;
    text-align: center;
}

.cta-button i {
    margin-left: 10px;
    font-size: 1.4rem;
}

.cta-button:hover {
    background-color: #148030;
    transform: translateY(-2px);
}

/* Benefits Section */
.benefits-section {
    padding: 90px 0;
    background-color: #fff;
    text-align: center;
}

.benefits-section h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 60px;
    font-weight: 700;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
}

.benefit-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 35px 25px;
    width: calc(33.333% - 20px);
    min-width: 250px;
    max-width: 320px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.benefit-card i {
    font-size: 2.8rem;
    color: #1a9e3d; /* Green icon */
    margin-bottom: 25px;
}

.benefit-card p {
    font-size: 1.05rem;
    color: #444;
    font-weight: 600;
    line-height: 1.5;
}

.scarcity-text {
    font-size: 1.1rem;
    color: #e74c3c;
    font-weight: 600;
    margin-bottom: 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
}

.mt-4 {
    margin-top: 2rem !important;
}

.benefits-section .cta-button {
    width: auto;
    min-width: 320px;
}

/* Responsive */
@media (max-width: 1024px) {
    .benefit-card {
        width: calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .hero {
        align-items: flex-start;
        padding-top: 120px;
        background-attachment: scroll; /* Better performance on mobile */
    }
    
    .hero-card {
        padding: 35px 25px;
        margin: 0 auto;
    }
    
    .hero-card h1 {
        font-size: 1.6rem;
    }
    
    .hero-card p {
        font-size: 0.95rem;
    }
    
    .benefits-section h2 {
        font-size: 1.6rem;
        padding: 0 15px;
    }
    
    .benefit-card {
        width: 100%;
        max-width: 100%;
    }
    
    .benefits-section .cta-button {
        width: 100%;
        min-width: auto;
    }
}
