/* Variables */
:root {
    --brown-dark: #5f432c;
    --orange-burnt: #d37c2b;
    --beige-caramel: #c99a5b;
    --bg-light: #fff9ea;
    --text-dark: #333333;
    --text-light: #ffffff;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    --border-radius: 4px;
    --transition: all 0.3s ease;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
    line-height: 1.3;
    color: var(--brown-dark);
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
    position: relative;
    padding-bottom: var(--spacing-sm);
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--orange-burnt);
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: var(--spacing-sm);
}

a {
    color: var(--orange-burnt);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--brown-dark);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

section {
    padding: var(--spacing-xl) 0;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--orange-burnt);
    color: var(--text-light);
}

.btn-primary:hover {
    background-color: var(--brown-dark);
    color: var(--text-light);
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 249, 234, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 65px;
    width: auto;
    padding: 5px;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 15px;
}

nav ul li a {
    color: var(--brown-dark);
    font-weight: 500;
    font-size: 0.9rem;
}

nav ul li a:hover {
    color: var(--orange-burnt);
}

.mobile-menu-icon {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
}

.mobile-menu-icon span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--brown-dark);
    transition: var(--transition);
}

/* Hero Section */
#hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

#hero .container {
    position: relative;
    z-index: 1;
    padding-top: 60px; /* Account for header height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#hero h1 {
    color: var(--text-light);
    margin-bottom: var(--spacing-sm);
    font-size: 3.5rem;
    max-width: 800px;
}

#hero p {
    color: var(--text-light);
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
    max-width: 600px;
}

/* Quem Somos */
#quem-somos .content {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

#quem-somos .text {
    flex: 1;
}

#quem-somos .image {
    flex: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
}

/* Serviços */
#servicos {
    background-color: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.service-card {
    background-color: var(--text-light);
    padding: var(--spacing-md);
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-card .icon {
    margin: 0 auto var(--spacing-sm);
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card .icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.service-card h3 {
    color: var(--brown-dark);
    margin-bottom: var(--spacing-sm);
}

/* Cardápio */
/* Quem Somos */
#quem-somos {
    background: linear-gradient(135deg, var(--bg-light) 0%, #f8f0e3 100%);
    position: relative;
    overflow: hidden;
}

#quem-somos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%23d37c2b" opacity="0.1"/></svg>') repeat;
    background-size: 80px 80px;
    pointer-events: none;
}

.about-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--orange-burnt);
    font-weight: 400;
    font-style: italic;
    margin-top: -1rem;
}

.about-content {
    position: relative;
    z-index: 1;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
    padding: var(--spacing-lg);
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(95, 67, 44, 0.1);
}

.stat-item {
    text-align: center;
    padding: var(--spacing-sm);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--orange-burnt);
    line-height: 1;
    margin-bottom: var(--spacing-xs);
    background: linear-gradient(45deg, var(--orange-burnt), var(--beige-caramel));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--brown-dark);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: start;
}

.about-text {
    padding: var(--spacing-md);
}

.text-block {
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-md);
    border-left: 4px solid var(--orange-burnt);
    background: rgba(255, 255, 255, 0.6);
    border-radius: 0 15px 15px 0;
    transition: var(--transition);
}

.text-block:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(95, 67, 44, 0.1);
}

.text-block h3 {
    color: var(--brown-dark);
    margin-bottom: var(--spacing-sm);
    font-size: 1.3rem;
}

.text-block p {
    line-height: 1.8;
    color: var(--text-dark);
}

.features-grid {
    display: grid;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm);
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(95, 67, 44, 0.15);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--orange-burnt), var(--beige-caramel));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.feature-content h4 {
    color: var(--brown-dark);
    font-size: 1rem;
    margin-bottom: 4px;
}

.feature-content p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.about-visual {
    position: relative;
    padding: var(--spacing-md);
}

.image-stack {
    position: relative;
    height: 500px;
}

.image-main {
    position: relative;
    width: 100%;
    height: 350px;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(95, 67, 44, 0.2);
    z-index: 2;
}

.image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.image-main:hover img {
    transform: scale(1.05);
}

.image-floating {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: 6px solid var(--bg-light);
    box-shadow: 0 15px 30px rgba(95, 67, 44, 0.3);
    z-index: 3;
    animation: float 6s ease-in-out infinite;
}

.image-floating img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}



/* Responsividade para Quem Somos */
@media (max-width: 768px) {
    .about-main {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .about-stats {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        padding: var(--spacing-md);
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .image-stack {
        height: 400px;
    }
    
    .image-main {
        height: 280px;
    }
    
    .image-floating {
        width: 150px;
        height: 150px;
        top: -10px;
        right: -10px;
    }
    
    .features-grid {
        gap: var(--spacing-sm);
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        padding: var(--spacing-md);
    }
    
    .quality-badges {
        flex-wrap: wrap;
        gap: var(--spacing-xs);
    }
}

/* Cardápio */
.menu-tabs {
    margin-top: var(--spacing-md);
}

.tabs {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: var(--spacing-md);
}

.tab-btn {
    background: none;
    border: none;
    padding: var(--spacing-sm) var(--spacing-md);
    border-bottom: 3px solid transparent;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn.active {
    border-bottom-color: var(--orange-burnt);
    color: var(--orange-burnt);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.menu-item {
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item h3 {
    margin-bottom: var(--spacing-xs);
    color: var(--brown-dark);
}

/* Equipe */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.team-member {
    text-align: center;
}

.team-member .photo {
    border-radius: 15%;
    overflow: hidden;
    width: 200px;
    height: 200px;
    margin: 0 auto var(--spacing-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-member .photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    margin-bottom: var(--spacing-xs);
}

.team-member p {
    color: var(--orange-burnt);
    font-weight: 500;
}

/* Contato */
.contact-wrapper {
    display: flex;
    gap: var(--spacing-lg);
}

.contact-form {
    flex: 1;
}

.contact-info {
    flex: 1;
}

.form-group {
    margin-bottom: var(--spacing-sm);
}

.form-group label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: 'Montserrat', sans-serif;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    background-color: #25D366;
    color: white;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    margin-top: var(--spacing-xs);
}

.whatsapp-btn img {
    height: 24px;
    margin-right: 10px;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    color: white;
}

.info-item {
    margin-bottom: var(--spacing-md);
}

.info-item h3 {
    margin-bottom: var(--spacing-sm);
}

.info-item ul li {
    margin-bottom: var(--spacing-xs);
}

/* Footer */
footer {
    background-color: var(--brown-dark);
    color: var(--text-light);
    padding: var(--spacing-lg) 0 var(--spacing-sm);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: var(--spacing-lg);
}

.footer-logo img {
    height: 80px;
    width: auto;
    padding: 10px;
}

.footer-links ul {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.footer-links a {
    color: var(--text-light);
}

.footer-links a:hover {
    color: var(--beige-caramel);
}

.footer-social {
    display: flex;
    gap: var(--spacing-md);
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--orange-burnt);
    transform: translateY(-3px);
}

.footer-social img {
    width: 22px;
    height: 22px;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin-bottom: 5px;
}

.footer-bottom a {
    color: var(--beige-caramel);
    font-weight: 500;
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--text-light);
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    #quem-somos .content {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .contact-wrapper {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    /* Estilos melhorados para o menu mobile */
    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(255, 249, 234, 0.98);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        padding: 0;
        z-index: 999;
    }
    
    nav.mobile-active {
        display: block;
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
        margin: 0;
        padding: 0;
    }
    
    nav ul li {
        margin: 0;
        padding: 15px 0;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(95, 67, 44, 0.1);
    }
    
    nav ul li:last-child {
        border-bottom: none;
    }
    
    nav ul li a {
        display: block;
        font-size: 1rem;
        font-weight: 600;
    }
    
    /* Hamburger icon */
    .mobile-menu-icon {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 20px;
        cursor: pointer;
        z-index: 1000;
    }
    
    .mobile-menu-icon span {
        display: block;
        height: 3px;
        width: 100%;
        background-color: var(--brown-dark);
        transition: transform 0.3s ease, opacity 0.3s ease;
    }
    
    /* Resto dos estilos mobile */
    .footer-content {
        flex-direction: column;
        gap: var(--spacing-md);
        align-items: center;
        text-align: center;
    }
    
    .footer-links ul {
        justify-content: center;
    }
}

/* Portfolio Section */
#portfolio {
    background: linear-gradient(135deg, var(--bg-light) 0%, #f5f0e8 100%);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: var(--spacing-lg);
}

.portfolio-category {
    margin-bottom: var(--spacing-xl);
}

.portfolio-category h3 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: var(--spacing-lg);
    position: relative;
}

.portfolio-category h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--beige-caramel);
}

/* Equipment Grid */
.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.equipment-card {
    background: white;
    border-radius: 12px;
    padding: var(--spacing-md);
    box-shadow: 0 4px 20px rgba(95, 67, 44, 0.1);
    transition: var(--transition);
    border: 1px solid #f0f0f0;
}

.equipment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(95, 67, 44, 0.15);
}

.equipment-image {
    text-align: center;
    margin-bottom: var(--spacing-md);
    padding: var(--spacing-sm);
    background: #fafafa;
    border-radius: 8px;
}

.equipment-image img {
    max-height: 180px;
    width: auto;
    object-fit: contain;
}

.equipment-info h4 {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-xs);
    color: var(--brown-dark);
}

.equipment-type {
    color: var(--orange-burnt);
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.equipment-specs {
    list-style: none;
    margin-bottom: var(--spacing-md);
}

.equipment-specs li {
    padding: 0.25rem 0;
    color: #666;
    font-size: 0.9rem;
}

.equipment-price {
    text-align: center;
    padding: var(--spacing-sm);
    background: linear-gradient(135deg, var(--brown-dark), var(--orange-burnt));
    border-radius: 8px;
    color: white;
}

.price-from {
    display: block;
    font-size: 0.8rem;
    opacity: 0.8;
    margin-bottom: 0.25rem;
}

.price-value {
    font-size: 1.4rem;
    font-weight: 700;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.service-package {
    background: white;
    border-radius: 12px;
    padding: var(--spacing-lg);
    text-align: center;
    box-shadow: 0 4px 20px rgba(95, 67, 44, 0.1);
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
}

.service-package:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(95, 67, 44, 0.15);
}

.service-package.featured {
    border-color: var(--orange-burnt);
    transform: scale(1.05);
}

.package-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--orange-burnt);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.service-package h4 {
    font-size: 1.4rem;
    margin-bottom: var(--spacing-sm);
}

.package-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--brown-dark);
    margin-bottom: var(--spacing-md);
}

.package-price span {
    font-size: 1rem;
    color: #666;
    font-weight: 400;
}

.package-includes {
    list-style: none;
    text-align: left;
    margin-bottom: var(--spacing-md);
}

.package-includes li {
    padding: 0.5rem 0;
    color: #666;
    border-bottom: 1px solid #f0f0f0;
}

.package-includes li:last-child {
    border-bottom: none;
}

.package-min {
    font-size: 0.9rem;
    color: var(--orange-burnt);
    font-weight: 500;
    font-style: italic;
}

/* Ingredients Grid */
.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.ingredient-item {
    background: white;
    padding: var(--spacing-md);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    border-left: 4px solid var(--beige-caramel);
}

.ingredient-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.ingredient-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.ingredient-item p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: var(--spacing-sm);
}

.ingredient-price {
    display: inline-block;
    background: var(--orange-burnt);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Portfolio CTA */
.portfolio-cta {
    background: linear-gradient(135deg, var(--brown-dark), var(--orange-burnt));
    color: white;
    text-align: center;
    padding: var(--spacing-xl);
    border-radius: 15px;
    margin-top: var(--spacing-xl);
}

.portfolio-cta h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
}

.portfolio-cta p {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-lg);
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-secondary img {
    height: 20px;
    width: 20px;
}

/* Responsive Portfolio */
@media (max-width: 768px) {
    .equipment-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-package.featured {
        transform: none;
    }
    
    .ingredients-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .portfolio-cta h3 {
        font-size: 1.5rem;
    }
}