:root {
    --bg-dark: #0f0f0f;
    --bg-darker: #050505;
    --bg-card: #1a1a1a;
    --gold: #D4AF37;
    --gold-light: #F3E5AB;
    --gold-dark: #aa8c2c;
    --wine: #722F37;
    --text-main: #f0f0f0;
    --text-muted: #a0a0a0;
    
    --font-title: 'Playfair Display', serif;
    --font-text: 'Montserrat', sans-serif;
    
    --container-width: 1200px;
    --section-padding: 80px 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: var(--font-title);
    color: var(--gold);
    font-weight: 700;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    transition: 0.3s;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

.text-center {
    text-align: center;
}

.divider {
    height: 2px;
    width: 60px;
    background: var(--gold);
    margin: 20px auto 40px;
}

/* --- Hero Section --- */
.hero {
    height: 100vh;
    background: url('images/header-fundo-desktop.png') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), var(--bg-dark));
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 60px; /* Offset for any fixed header if needed */
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    letter-spacing: 1px;
}

.hero .subtitle {
    font-size: 1.5rem;
    font-family: var(--font-title);
    color: var(--gold);
    margin-bottom: 20px;
    font-style: italic;
}

.hero .hero-text {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 40px;
    color: #ddd;
}

/* --- Buttons --- */
.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(45deg, var(--gold-dark), var(--gold));
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 2px; /* Sharp minimal edges or slight round */
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
    background: linear-gradient(45deg, var(--gold), var(--gold-light));
}

.cta-button.outline {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    box-shadow: none;
}

.cta-button.outline:hover {
    background: var(--gold);
    color: #000;
}

.cta-button.large {
    font-size: 1.2rem;
    padding: 20px 50px;
}

/* --- About Section --- */
.section-desc {
    font-size: 1.2rem;
    color: #ccc;
    max-width: 800px;
    margin: 0 auto;
}

/* --- Benefits Section --- */
.bg-darker {
    background-color: var(--bg-darker);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.05);
    transition: 0.3s;
}

.benefit-card:hover {
    border-color: var(--gold-dark);
    transform: translateY(-5px);
}

.benefit-icon {
    height: 60px;
    margin: 0 auto 20px;
    object-fit: contain;
}
.icon-placeholder img {
    height: 60px;
    width: auto;
    margin: 0 auto 20px;
}  


.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #fff;
    font-family: var(--font-text);
}

.benefit-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* --- Plans Section --- */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 40px auto 0;
    align-items: center; /* Align cards vertically */
}

.plan-card {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
    transition: 0.3s;
}

.plan-card:hover {
    transform: translateY(-5px);
}

.plan-card.featured {
    border: 2px solid var(--gold);
    background: linear-gradient(to bottom, #2a2a2a, #1a1a1a);
    transform: scale(1.05);
    z-index: 2;
    padding: 50px 30px;
}

.plan-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.best-value {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: #000;
    padding: 5px 15px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 20px;
}

.plan-name {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 5px;
}

.plan-tagline {
    font-size: 0.9rem;
    color: var(--gold);
    margin-bottom: 20px;
    font-style: italic;
    font-family: var(--font-title);
}

.plan-bottles {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.plan-features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.plan-features li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    color: #ccc;
}

.plan-features li::before {
    content: '•';
    color: var(--gold);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    line-height: 1rem;
}

/* --- Manifesto Section --- */
.manifesto {
    position: relative;
    background: url('images/bg-desktop-essenciais.png') no-repeat center center/cover; 
    /* Fallback or specific background */
}

.manifesto .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
}

.manifesto-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 40px;
    border: 1px solid var(--gold);
}

.manifesto h2 {
    color: var(--gold);
    margin-bottom: 30px;
    font-size: 2.2rem;
}

.manifesto p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 300;
}

.relative {
    position: relative;
}

/* --- Risk Free Section --- */
.risk-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.risk-item {
    text-align: center;
    max-width: 150px;
}

.risk-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 15px;
    /* Optional: Filter to make SVGs gold if they aren't already */
    filter: invert(79%) sepia(27%) saturate(966%) hue-rotate(2deg) brightness(92%) contrast(87%);
}

.risk-quote {
    font-size: 1.4rem;
    font-family: var(--font-title);
    font-style: italic;
    color: #fff;
    margin-top: 40px;
}

/* --- Footer CTA --- */
.footer-cta {
    background: linear-gradient(var(--bg-darker), #151515);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-sub {
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: 40px;
    font-family: var(--font-title);
    font-style: italic;
}

/* --- Animations --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 1s ease-out forwards;
    opacity: 0;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

/* --- Responsive --- */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero .subtitle {
        font-size: 1.2rem;
    }
    .hero {
        background-image: url('images/header-fundo-mobile.png'); 
    }
    .plans-grid {
        grid-template-columns: 1fr;
    }
    .plan-card.featured {
        transform: none;
    }
    .plan-card.featured:hover {
        transform: translateY(-5px);
    }
}
