/* ============================================
   VARIÁVEIS E RESET
   ============================================ */

:root {
    --primary: #2d5016;
    --primary-light: #3d6b1f;
    --secondary: #d4af37;
    --accent: #4a90e2;
    --accent-light: #6ba3f5;
    --background: #ffffff;
    --foreground: #1a1a1a;
    --muted: #f5f5f5;
    --muted-foreground: #666666;
    --border: #e0e0e0;
    --success: #27ae60;
    --warning: #f39c12;
    --error: #e74c3c;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--foreground);
    background-color: var(--background);
    line-height: 1.6;
}

/* ============================================
   TIPOGRAFIA
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
    color: var(--primary);
}

h3 {
    font-size: 1.5rem;
    color: var(--primary);
}

h4 {
    font-size: 1.25rem;
    color: var(--primary);
}

p {
    margin-bottom: 1rem;
    color: var(--muted-foreground);
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-light);
}

/* ============================================
   CONTAINER
   ============================================ */

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

/* ============================================
   NAVEGAÇÃO
   ============================================ */

.navbar {
    background-color: var(--background);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.navbar-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.navbar-menu a {
    color: var(--foreground);
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-menu a:hover {
    color: var(--primary);
}

.lang-selector {
    margin-left: auto;
    display: flex;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.lang-selector a {
    color: var(--muted-foreground);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.lang-selector a.active {
    color: var(--primary);
    background-color: var(--muted);
}

.lang-selector a:hover {
    color: var(--primary);
    background-color: var(--muted);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.hero-text {
    max-width: 600px;
}

.badge {
    display: inline-block;
    background-color: var(--secondary);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero h1 {
    color: white;
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.hero-info {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.info-item .icon {
    font-size: 1.5rem;
}

/* ============================================
   SEÇÕES
   ============================================ */

section {
    padding: 5rem 0;
}

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

.section-dark {
    background-color: var(--muted);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   INTRO SECTION
   ============================================ */

.intro {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    padding: 4rem 0;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.intro h2 {
    color: white;
    text-align: center;
    margin-bottom: 2rem;
}

.intro p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    text-align: justify;
}

/* ============================================
   GRIDS
   ============================================ */

.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

/* ============================================
   CARDS
   ============================================ */

.card {
    background-color: var(--background);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.card-content {
    padding: 2rem;
}

.card h3 {
    margin-bottom: 1rem;
}

.card p {
    margin-bottom: 1rem;
}

.card ul {
    list-style: none;
    padding: 0;
}

.card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--muted-foreground);
}

.card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

/* ============================================
   INFO BOX
   ============================================ */

.info-box {
    background-color: var(--muted);
    padding: 3rem;
    border-radius: 12px;
    border-left: 4px solid var(--secondary);
}

.info-box h3 {
    margin-bottom: 2rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.info-grid > div {
    padding: 1.5rem;
    background-color: var(--background);
    border-radius: 8px;
    border: 1px solid var(--border);
}

.info-grid h4 {
    margin-bottom: 0.5rem;
}

.info-grid p {
    font-size: 0.95rem;
}

/* ============================================
   FOOD CARDS
   ============================================ */

.food-card {
    background-color: var(--background);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.food-card h3 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.food-card ul {
    list-style: none;
}

.food-card li {
    padding: 0.75rem 0;
    color: var(--muted-foreground);
    border-bottom: 1px solid var(--border);
}

.food-card li:last-child {
    border-bottom: none;
}

.food-card li:before {
    content: "🍽️ ";
    margin-right: 0.5rem;
}

/* ============================================
   PRODUCTS BOX
   ============================================ */

.products-box {
    margin-top: 3rem;
    padding: 3rem;
    background-color: var(--background);
    border-radius: 12px;
    border: 1px solid var(--border);
}

.products-box h3 {
    text-align: center;
    margin-bottom: 2rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.product-item {
    text-align: center;
    padding: 2rem;
}

.product-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.product-item h4 {
    margin-bottom: 0.5rem;
}

.product-item p {
    font-size: 0.95rem;
    color: var(--muted-foreground);
}

/* ============================================
   SEASON CARDS
   ============================================ */

.season-card {
    background-color: var(--background);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.season-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.season-card.featured {
    border: 2px solid var(--secondary);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 100%);
}

.season-emoji {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.season-card h3 {
    margin-bottom: 0.5rem;
}

.season-months {
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.best-season {
    display: inline-block;
    background-color: var(--secondary);
    color: var(--primary);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.season-card ul {
    list-style: none;
    text-align: left;
    margin-top: 1rem;
}

.season-card li {
    padding: 0.5rem 0;
    color: var(--muted-foreground);
}

.season-card li:before {
    content: "→ ";
    color: var(--secondary);
    font-weight: bold;
    margin-right: 0.5rem;
}

.seasons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

.seasons h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.seasons ul {
    list-style: none;
    font-size: 0.9rem;
}

.seasons li {
    padding: 0.25rem 0;
}

.seasons li:before {
    content: "• ";
    color: var(--secondary);
    margin-right: 0.5rem;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background-color: var(--primary);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--secondary);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--secondary);
}

.footer-section li:not(a) {
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.25rem;
    }

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

    .hero p {
        font-size: 1rem;
    }

    .navbar-menu {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .hero-info {
        gap: 1rem;
    }

    .info-item {
        font-size: 0.95rem;
        padding: 0.5rem 1rem;
    }

    section {
        padding: 3rem 0;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .grid-2 {
        gap: 1.5rem;
    }

    .grid-4 {
        gap: 1.5rem;
    }

    .card img {
        height: 200px;
    }

    .card-content {
        padding: 1.5rem;
    }

    .info-box {
        padding: 2rem;
    }

    .info-grid {
        gap: 1rem;
    }

    .products-box {
        padding: 2rem;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .container {
        padding: 0 1rem;
    }

    .navbar .container {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .navbar-menu {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
    }

    .navbar-menu a {
        padding: 0.5rem 0;
    }

    .hero h1 {
        font-size: 1.75rem;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .hero-info {
        flex-direction: column;
        gap: 0.5rem;
    }

    .info-item {
        font-size: 0.85rem;
        padding: 0.5rem;
    }

    section {
        padding: 2rem 0;
    }

    .section-header {
        margin-bottom: 1.5rem;
    }

    .grid-2,
    .grid-4 {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .card img {
        height: 150px;
    }

    .card-content {
        padding: 1rem;
    }

    .card h3 {
        font-size: 1.1rem;
    }

    .info-box {
        padding: 1.5rem;
        border-left-width: 3px;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .products-box {
        padding: 1.5rem;
    }

    .seasons {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .footer-section h4 {
        font-size: 1rem;
    }
}

/* ============================================
   ANIMAÇÕES
   ============================================ */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card {
    animation: fadeIn 0.5s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.section-header {
    animation: slideInLeft 0.5s ease-out;
}
