:root {
    --primary: #2D0835;
    --primary-light: #4A1259;
    --accent: #6BAF48;
    --accent-dark: #4F8534;
    --text-dark: #121212;
    --text-light: #f8f8f8;
    --bg-light: #ffffff;
    --bg-off: #f9f7f5;
    --gold: #C5A059;
    --elegant: #F5E6D3;
    --premium: #1a1a2e;
}

body {
    font-family: 'Lato', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--bg-light);
    letter-spacing: 0.02em;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    letter-spacing: -0.03em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.6rem;
    letter-spacing: -0.01em;
}

a {
    text-decoration: none;
    transition: 0.3s ease;
}

ul {
    list-style: none;
}

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

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

/* Premium Typography */
.logo-text {
    font-family: 'Playfair Display', Georgia, serif;
    color: white;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.logo-text .highlight {
    color: var(--gold);
}

.hero-subtitle {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(0.85rem, 1.5vw, 1.1rem);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 25px;
    font-weight: 400;
}

.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    color: var(--primary);
    margin-bottom: 30px;
    position: relative;
    letter-spacing: -0.02em;
    font-weight: 700;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--gold);
    margin-top: 25px;
}

.story-content .lead {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.3rem, 2.5vw, 1.6rem);
    color: var(--text-dark);
    font-weight: 400;
    margin-bottom: 30px;
    font-style: italic;
    line-height: 1.6;
    letter-spacing: -0.01em;
}

.signature {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.6rem, 3vw, 2rem);
    font-style: italic;
    color: var(--primary);
    margin-top: 60px;
    letter-spacing: 0.05em;
}

.feature-card h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.7rem;
    margin-bottom: 15px;
    color: var(--primary);
    font-weight: 700;
    letter-spacing: -0.01em;
}

.product-info h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.9rem;
    margin-bottom: 12px;
    color: var(--primary);
    font-weight: 700;
    letter-spacing: -0.01em;
}

.cta-banner h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 35px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.footer-brand h3 {
    font-family: 'Playfair Display', Georgia, serif;
    color: white;
    font-size: 2.2rem;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    font-family: 'Lato', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background: var(--accent);
    color: white;
    box-shadow: 0 4px 20px rgba(107, 175, 72, 0.35);
    letter-spacing: 2.5px;
}

.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(107, 175, 72, 0.45);
}

.btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
    font-weight: 500;
}

.btn-outline:hover {
    background: white;
    color: var(--primary);
}

.btn-large {
    padding: 18px 45px;
    font-size: 1rem;
    letter-spacing: 2.5px;
}

.btn-sm {
    padding: 10px 25px;
    font-size: 0.75rem;
    background: var(--primary);
    color: white;
    font-weight: 500;
    letter-spacing: 1px;
}

.btn-sm:hover {
    background: var(--primary-light);
    transform: translateY(-1px);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(45, 8, 53, 0.95);
    backdrop-filter: blur(15px);
    padding: 20px 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

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

.nav-links {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    font-size: 0.9rem;
    font-family: 'Lato', sans-serif;
    letter-spacing: 0.5px;
}

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

.btn-order {
    background: var(--accent);
    color: white !important;
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 600 !important;
    letter-spacing: 1px;
    box-shadow: 0 2px 12px rgba(107, 175, 72, 0.35);
}

.btn-order:hover {
    background: white;
    color: var(--accent) !important;
    transform: translateY(-1px);
}

/* Hero Section */
.hero {
    height: 100vh;
    background-color: var(--primary);
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

/* Hero Background Images */
#hero-1 { background: url('./images/hero-1-palmito-com-acai.png') no-repeat center center/cover; }
#hero-2 { background: url('./images/hero-2-textura.png') no-repeat center center/cover; }
#hero-3 { background: url('./images/hero-3-plantacao.png') no-repeat center center/cover; }
#hero-4 { background: url('./images/hero-4-bowl.png') no-repeat center center/cover; }

.hero-content-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    z-index: 1;
}

.hero-content-item.active {
    opacity: 1;
    z-index: 2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(45, 8, 53, 0.55), rgba(45, 8, 53, 0.75));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero h1 {
    text-shadow: 0 6px 30px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    margin-bottom: 40px;
    font-weight: 300;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
}

/* Story Section */
.story-section {
    padding: 140px 0;
    background: white;
}

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

.story-image {
    position: relative;
}

.story-image img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.18);
}

.years-badge {
    position: absolute;
    bottom: -50px;
    right: -50px;
    background: var(--primary);
    color: white;
    padding: 35px;
    border-radius: 50%;
    text-align: center;
    width: 180px;
    height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 8px solid white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.years-badge .number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 4rem;
    font-weight: 700;
    line-height: 0.9;
    color: var(--gold);
}

.years-badge .text {
    font-size: 0.8rem;
    text-transform: uppercase;
    line-height: 1.3;
    letter-spacing: 2px;
    font-weight: 600;
}

.story-content p {
    color: #333;
    margin-bottom: 28px;
    font-weight: 300;
    font-size: 1.08rem;
    line-height: 1.75;
}

/* Quality Section */
.quality-section {
    padding: 140px 0;
    background: var(--bg-off);
}

.section-header h2 {
    font-size: clamp(2.2rem, 4vw, 3rem);
    color: var(--primary);
    margin-bottom: 25px;
}

.section-header p {
    color: #666;
    margin-bottom: 80px;
    font-size: 1.15rem;
    font-weight: 300;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 50px;
}

.feature-card {
    background: white;
    padding: 55px 45px;
    border-radius: 8px;
    text-align: center;
    transition: 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--accent);
}

.feature-card i {
    font-size: 2.8rem;
    color: var(--accent);
    margin-bottom: 30px;
}

.feature-card p {
    color: #555;
    font-weight: 300;
    font-size: 1.02rem;
    line-height: 1.65;
}

/* Products Section */
.products-section {
    padding: 140px 0;
    background: white;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 50px;
    margin-bottom: 90px;
}

.product-card {
    border-radius: 12px;
    overflow: hidden;
    background: white;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    transition: 0.4s ease;
    position: relative;
    border: 1px solid #f5f5f5;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.18);
}

.product-image {
    height: 320px;
    overflow: hidden;
    background: var(--elegant);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.03);
}

.product-info {
    padding: 40px 30px;
    text-align: center;
}

.product-info p {
    color: #555;
    margin-bottom: 28px;
    font-weight: 300;
    font-size: 1rem;
    line-height: 1.65;
}

.tag-featured {
    position: absolute;
    top: 25px;
    right: 25px;
    background: var(--gold);
    color: white;
    padding: 8px 22px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(197, 160, 89, 0.35);
}

.cta-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    padding: 90px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(45, 8, 53, 0.3);
}

/* Footer */
.footer {
    background: var(--premium);
    color: rgba(255, 255, 255, 0.7);
    padding: 120px 0 40px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 90px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 60px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    line-height: 1.6;
}

.footer-contact h4 {
    color: white;
    margin-bottom: 30px;
    font-family: 'Lato', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
}

.footer-contact p {
    margin-bottom: 18px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    transition: 0.3s;
}

.footer-contact a:hover {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.5;
    font-weight: 300;
}

/* Responsive */
@media (max-width: 900px) {
    h1 {
        font-size: clamp(2rem, 7vw, 3.2rem);
    }
    
    .story-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .years-badge {
        right: 0;
        width: 140px;
        height: 140px;
        bottom: -40px;
    }
    
    .years-badge .number {
        font-size: 3rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 60px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
