:root {
    --bg-color: #F3E7DA;
    --primary: #E10600;
    --primary-hover: #b80500;
    --black: #0f0f0f;
    --white: #ffffff;
    --text-muted: #4a4a4a;
    --border: rgba(15, 15, 15, 0.1);

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Outfit', sans-serif;

    --transition-fast: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-smooth: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--black);
    overflow-x: hidden;
    line-height: 1.6;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    margin: 0;
    line-height: 1.2;
    font-weight: 800;
}

.text-center {
    text-align: center;
}

.highlight {
    color: var(--primary);
}

img {
    max-width: 100%;
    display: block;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
    letter-spacing: -0.01em;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(225, 6, 0, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(225, 6, 0, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--black);
    border: 2px solid var(--black);
}

.btn-secondary:hover {
    background-color: var(--black);
    color: var(--white);
}

.hero .btn-secondary {
    color: var(--white);
    border-color: var(--white);
}

.hero .btn-secondary:hover {
    background-color: var(--white);
    color: var(--black);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    z-index: 1000;
    box-sizing: border-box;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    padding: 1rem 5%;
    background: rgba(243, 231, 218, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.logo {
    font-size: 1.8rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-weight: 600;
    font-size: 1.05rem;
    transition: var(--transition-fast);
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.navbar.scrolled .nav-links a {
    color: var(--black);
    text-shadow: none;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--primary);
    transition: var(--transition-fast);
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition-fast);
    box-shadow: 0 4px 15px rgba(225, 6, 0, 0.3);
}

.navbar.scrolled .nav-btn {
    background: var(--black);
    box-shadow: none;
}

.nav-btn:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 5%;
    position: relative;
    box-sizing: border-box;
    background-color: var(--black);
    color: var(--white);
    overflow: hidden;
    /* Ensure canvas stays within */
}

.hero-visual {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

#hero-canvas {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
    position: relative;
}

.hero-content {
    flex: 1;
    max-width: 50%;
    position: relative;
    z-index: 10;
    padding-top: 80px;
    /* Adicionando sombra no texto para que fique mais legível não importa o fundo */
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.hero-title {
    font-size: 5rem;
    text-transform: uppercase;
    letter-spacing: -0.04em;
    margin-bottom: 1.5rem;
    text-wrap: balance;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
    max-width: 90%;
}

.hero-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    max-width: 80%;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
}

.glow-effect {
    position: absolute;
    width: 100%;
    height: 100%;
    /* Gradient overlay on the left to guarantee text readability instead of circular glow */
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 40%, transparent 100%);
    top: 0;
    left: 0;
    transform: none;
    z-index: 3;
    /* Between canvas and text */
}

/* Section Title global */
.section-title {
    font-size: 3rem;
    margin-bottom: 3.5rem;
    letter-spacing: -0.03em;
    text-align: center;
}

/* About Section */
.about-section {
    padding: 8rem 5%;
    background: var(--white);
    position: relative;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--bg-color);
    border-radius: 20px;
    transition: var(--transition-smooth);
    border: 1px solid var(--border);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    background: var(--white);
    border-color: var(--primary);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    background: var(--black);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: var(--transition-smooth);
}

.benefit-card:hover .icon-wrapper {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: var(--text-muted);
}

/* Products Section */
.products-section {
    padding: 8rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.product-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    transition: var(--transition-smooth);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.product-img-wrapper {
    height: 250px;
    background: #e8dccf;
    position: relative;
    overflow: hidden;
}

.product-img-wrapper.placeholder-img::before {
    content: '🍗 Imagem Premium';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 700;
    color: rgba(0, 0, 0, 0.2);
    font-size: 1.5rem;
}

.product-card:hover .product-img-wrapper {
    transform: scale(1.05);
    transition: var(--transition-smooth);
}

.product-info {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: var(--white);
    z-index: 2;
}

.product-info h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.product-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex: 1;
}

.product-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.btn-add {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    background: var(--black);
    color: var(--white);
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition-fast);
}

.btn-add:hover {
    background: var(--primary);
}

/* Reviews Section */
.reviews-section {
    padding: 8rem 5%;
    background: var(--white);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    background: var(--bg-color);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border);
}

.stars {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.review-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--black);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.review-author {
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Delivery CTA Section */
.delivery-cta {
    background: var(--primary);
    padding: 8rem 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.delivery-cta::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    top: -300px;
    right: -100px;
}

.delivery-cta::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    bottom: -200px;
    left: -100px;
}

.cta-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.cta-btn {
    background: var(--black);
    color: var(--white);
    font-size: 1.3rem;
    padding: 1.2rem 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cta-btn:hover {
    background: var(--white);
    color: var(--black);
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Footer */
.site-footer {
    background: var(--black);
    color: var(--white);
    padding: 5rem 5% 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 1rem;
    display: block;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    max-width: 300px;
}

.site-footer h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.site-footer p,
.site-footer a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    display: block;
    margin-bottom: 0.8rem;
    transition: var(--transition-fast);
}

.site-footer a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 4rem;
    }

    .hero-content {
        max-width: 65%;
    }

    .benefits-grid,
    .products-grid,
    .reviews-grid {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem 5%;
    }

    .nav-links {
        display: none;
        /* simple mobile hide for now */
    }

    .hero {
        align-items: flex-end;
        /* Text somewhat lower on mobile */
        padding-bottom: 60px;
    }

    .hero-content {
        max-width: 100%;
        padding-top: 100px;
        z-index: 10;
        margin-bottom: 20px;
    }

    .hero-actions {
        flex-wrap: wrap;
    }

    .hero-visual {
        width: 100%;
        height: 100%;
        /* Keeps full screen behind */
    }

    .glow-effect {
        /* On mobile, gradient goes from bottom to top for readability */
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 45%, transparent 100%);
    }

    .benefits-grid,
    .products-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .site-footer a:hover {
        transform: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .cta-content h2 {
        font-size: 2.5rem;
    }
}