/* Reset e Variáveis */
:root {
    --primary-yellow: #FFD54F;
    /* Amarelo Padaria */
    --primary-yellow-dark: #FFC107;
    --primary-red: #D32F2F;
    /* Vermelho Marca */
    --primary-red-dark: #B71C1C;
    --text-dark: #212121;
    --text-light: #757575;
    --bg-light: #FAFAFA;
    --white: #FFFFFF;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
}

h1,
h2,
h3 {
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-logo {
    height: 50px;
    width: auto;
}

.logo h1 {
    color: var(--primary-red);
    font-size: 1.8rem;
    line-height: 1;
}

.logo span {
    font-size: 0.9rem;
    color: var(--text-light);
    display: block;
}

#nav-menu ul {
    display: flex;
    gap: 30px;
}

#nav-menu a {
    font-weight: 600;
    color: var(--text-dark);
    transition: color 0.3s;
}

#nav-menu a:hover {
    color: var(--primary-red);
}

.mobile-menu-icon {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #FFF8E1 0%, #FFFFFF 100%);
    padding: 60px 0;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-text {
    flex: 1;
}

.hero-text h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.subheadline {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.benefits-list {
    margin-bottom: 30px;
}

.benefits-list li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.benefits-list li::before {
    content: "✔";
    color: var(--primary-red);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.btn-cta {
    display: inline-block;
    background-color: var(--primary-red);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background-color 0.3s, transform 0.2s;
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.3);
}

.btn-cta:hover {
    background-color: var(--primary-red-dark);
    transform: translateY(-2px);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.img-placeholder {
    width: 100%;
    max-width: 400px;
    height: 300px;
    background-color: var(--primary-yellow);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    text-align: center;
    padding: 20px;
}

.icon-oven {
    font-size: 4rem;
    margin-bottom: 10px;
}

.hero-img-real {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: var(--radius);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hero-img-real:hover {
    transform: scale(1.02);
}

/* Products Section */
.products-section {
    padding: 80px 0;
    background-color: var(--white);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.section-header h2 {
    font-size: 2.2rem;
    color: var(--primary-red);
    margin-bottom: 15px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.product-category {
    background-color: #FFF8E1;
    /* Amarelo bem claro */
    padding: 25px;
    border-radius: var(--radius);
    border-left: 5px solid var(--primary-yellow-dark);
}

.product-category h3 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 1.3rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 10px;
}

.product-category ul li {
    margin-bottom: 8px;
    color: var(--text-dark);
    font-size: 0.95rem;
}

/* Gallery Section */
.gallery-section {
    padding: 60px 0;
    background-color: #FFF8E1;
    /* Light yellow background */
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    background-color: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
    text-align: center;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}

.gallery-item p {
    padding: 15px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
}

/* Prep Section */
.prep-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.prep-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.card {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.card h3 {
    color: var(--primary-red);
    margin-bottom: 10px;
}

.card .small-text {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 5px;
}

.card p {
    color: var(--text-dark);
}

.card p strong {
    color: var(--primary-red-dark);
}

.card ol {
    margin-top: 15px;
    padding-left: 20px;
}

.card ol li {
    margin-bottom: 8px;
}

/* Order Section */
.order-section {
    padding: 80px 0;
    background-color: var(--white);
}

.order-content {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.order-text {
    flex: 1;
    min-width: 300px;
}

.order-text h2 {
    font-size: 2.2rem;
    color: var(--primary-red);
    margin-bottom: 15px;
}

.steps {
    margin-top: 40px;
}

.step {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.step-num {
    background-color: var(--primary-yellow);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.order-form-container {
    flex: 1;
    min-width: 300px;
    background-color: #FFF3E0;
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.order-form-container h3 {
    margin-bottom: 20px;
    text-align: center;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-family: inherit;
}

.btn-submit {
    width: 100%;
    background-color: #25D366;
    /* WhatsApp Green */
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #128C7E;
}

/* Contact Section */
.contact-section {
    padding: 60px 0;
    background-color: var(--text-dark);
    color: var(--white);
    text-align: center;
}

.contact-section h2 {
    color: var(--primary-yellow);
    margin-bottom: 15px;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-item a:hover {
    color: var(--primary-yellow);
}

footer {
    background-color: #000;
    color: #757575;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .header-content {
        flex-direction: row;
    }

    .mobile-menu-icon {
        display: flex;
    }

    #nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        padding: 20px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    #nav-menu.active {
        display: block;
    }

    #nav-menu ul {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        flex-direction: column-reverse;
        text-align: center;
    }

    .benefits-list {
        text-align: left;
        display: inline-block;
    }

    .hero-text h2 {
        font-size: 2rem;
    }

    .contact-info {
        flex-direction: column;
        gap: 15px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 columns on mobile */
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        /* 1 column on very small screens */
    }
}