/* =========================================================================
   APIÁRIO JMR - DESIGN SYSTEM E VARIÁVEIS
   ========================================================================= */
:root {
    /* Paleta de Cores: Amarelo, Dourado, Variações, Branco e Preto */
    --color-primary: #FFC107;      /* Amarelo vibrante */
    --color-secondary: #D4AF37;    /* Dourado rico */
    --color-accent: #FFF59D;       /* Amarelo claro/pastel */
    --color-dark: #212121;         /* Preto/Grafite suave (Textos principais) */
    --color-darker: #111111;       /* Preto profundo */
    --color-light: #FAFAFA;        /* Quase branco (fundos alternativos) */
    --color-white: #FFFFFF;        /* Branco puro */
    --color-text: #424242;         /* Cinza escuro para melhor leitura de parágrafos */
    
    /* Tipografia */
    --font-heading: 'Playfair Display', serif; /* Elegante para títulos */
    --font-body: 'Montserrat', sans-serif;     /* Moderna e limpa para leitura */

    /* Efeitos e Medidas */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.05);
    --shadow-premium: 0 10px 40px rgba(212, 175, 55, 0.15); /* Sombra levemente dourada */
    --transition-fast: 0.3s ease;
}

/* =========================================================================
   RESETS E BASE
   ========================================================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-dark);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: var(--color-primary);
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

.text-center { text-align: center; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.bg-light { background-color: var(--color-light); }

/* =========================================================================
   UTILITÁRIOS (Botões, Divisores, Imagens Premium)
   ========================================================================= */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: var(--color-darker);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
    color: var(--color-darker);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--color-white);
    color: var(--color-white);
}

.btn-outline:hover {
    background-color: var(--color-white);
    color: var(--color-darker);
    transform: translateY(-3px);
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.divider {
    height: 4px;
    width: 60px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    margin: 15px 0 25px 0;
    border-radius: 2px;
}

.divider.center {
    margin: 15px auto 25px auto;
}

.rounded-premium {
    border-radius: var(--radius-lg);
}

.shadow-premium {
    box-shadow: var(--shadow-premium);
}

/* =========================================================================
   HEADER & NAVBAR
   ========================================================================= */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s ease;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    padding: 15px 0;
}

header.scrolled {
    padding: 10px 0;
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-secondary);
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--color-dark);
    font-weight: 600;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.btn-nav {
    padding: 10px 24px;
    font-size: 0.9rem;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--color-dark);
    cursor: pointer;
}

/* =========================================================================
   HERO SECTION
   ========================================================================= */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background: url('https://images.unsplash.com/photo-1471943311424-646960669fbc?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(17, 17, 17, 0.7), rgba(17, 17, 17, 0.4)); /* Fundo escuro para contraste */
}

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

.hero-title {
    color: var(--color-white);
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 2px 4px 10px rgba(0,0,0,0.5);
}

.hero-subtitle {
    color: var(--color-white);
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 40px;
    text-shadow: 1px 2px 5px rgba(0,0,0,0.5);
}

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

/* =========================================================================
   SECTIONS GENERAL
   ========================================================================= */
.section {
    padding: 100px 0;
}

.section-title {
    font-size: 2.5rem;
    color: var(--color-dark);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text);
    max-width: 700px;
    margin: 0 auto;
}

/* =========================================================================
   SOBRE (MUITO ALÉM DO DOCE)
   ========================================================================= */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.about-text strong {
    color: var(--color-secondary);
}

.about-image img {
    border: 8px solid white;
}

/* =========================================================================
   BENEFÍCIOS (CARDS)
   ========================================================================= */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background: var(--color-white);
    padding: 40px 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
    border-bottom: 4px solid transparent;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-premium);
    border-color: var(--color-primary);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--color-secondary);
    margin-bottom: 20px;
    background: var(--color-accent);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.card-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.card-text {
    font-size: 1rem;
    color: var(--color-text);
    margin-bottom: 20px;
    flex-grow: 1;
}

.card-link {
    font-weight: 700;
    color: var(--color-dark);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.card-link:hover {
    color: var(--color-primary);
}

.card-link i {
    transition: transform 0.3s ease;
}

.card-link:hover i {
    transform: translateX(5px);
}

/* =========================================================================
   GASTRONOMIA (O TOQUE DE CHEF)
   ========================================================================= */
.chef-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.image-wrapper {
    position: relative;
}

.chef-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--color-darker);
    color: var(--color-primary);
    padding: 20px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: var(--shadow-premium);
}

.chef-badge i {
    font-size: 2rem;
}

.chef-badge span {
    font-weight: 700;
    font-size: 1.1rem;
    font-family: var(--font-heading);
}

.chef-text p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.chef-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.list-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--color-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.list-content strong {
    display: block;
    color: var(--color-dark);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.list-content span {
    color: var(--color-text);
    font-size: 0.95rem;
}

/* =========================================================================
   FOOTER
   ========================================================================= */
.footer {
    background-color: var(--color-darker);
    color: var(--color-white);
    padding: 80px 0 20px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer h3 {
    color: var(--color-primary);
    font-family: var(--font-heading);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.footer-about p {
    color: #bbb;
    max-width: 400px;
}

.footer-links ul li,
.footer-contact ul li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #bbb;
}

.footer-links a:hover {
    color: var(--color-primary);
    padding-left: 5px;
}

.footer-contact i {
    color: var(--color-secondary);
    margin-right: 10px;
    width: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #888;
    font-size: 0.9rem;
}

/* =========================================================================
   RESPONSIVIDADE
   ========================================================================= */
@media (max-width: 992px) {
    .about-grid, .chef-grid {
        grid-template-columns: 1fr;
    }
    .about-image {
        order: -1;
    }
    .hero-title {
        font-size: 3rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-about p {
        margin: 0 auto;
    }
    .footer-contact i {
        margin-right: 5px;
    }
}

@media (max-width: 768px) {
    .nav-links, .btn-nav {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--color-white);
        padding: 20px;
        box-shadow: var(--shadow-soft);
        text-align: center;
    }
    
    .btn-nav.active {
        display: inline-block;
        margin: 20px auto 0 auto;
    }

    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .chef-badge {
        right: 0;
        bottom: 0;
    }
}
