/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cores principais */
    --primary-color: #e8d8c4;    /* Bege claro */
    --secondary-color: #800200;   /* Vermelho escuro */
    --accent-color: #d4a574;      /* Dourado suave */
    --white: #ffffff;
    --black: #000000;
    --text-dark: #2c2c2c;
    --text-light: #666666;
    --background-light: #faf8f5;
    
    /* Tipografia */
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Inter', sans-serif;
    
    /* Sombras */
    --shadow-light: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-medium: 0 4px 20px rgba(0,0,0,0.15);
    --shadow-heavy: 0 8px 30px rgba(0,0,0,0.2);
}

body {
    font-family: var(--font-secondary);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--secondary-color);
}

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

.nav-link:hover::after {
    width: 100%;
}

.btn-cta {
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-light);
}

.btn-cta:hover {
    background: #a00300;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Hero Culinary */
.hero-culinary {
    position: relative;
    height: 120vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background-culinary {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}
.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(44, 44, 44, 0.7) 0%,
        rgba(128, 2, 0, 0.3) 100%
    );
    z-index: 2;
}

.hero-content-culinary {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 120vh;
    text-align: center;
    padding-top: 15%;
    padding-bottom: 10%;
}

.hero-text {
    max-width: 600px;
    color: var(--white);
}

.hero-title {
    font-family: var(--font-primary);
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.accent-text {
    color: var(--accent-color);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.hero-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
    margin-top: 2rem;
}

.btn-primary-culinary {
    background: var(--secondary-color);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-medium);
}

.btn-primary-culinary:hover {
    background: #a00300;
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

.btn-secondary-culinary {
    background: transparent;
    color: var(--white);
    padding: 1rem 2rem;
    border: 2px solid var(--white);
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary-culinary:hover {
    background: var(--white);
    color: var(--text-dark);
}

/* Hero Welcome Styles */
.hero-welcome {
    margin-bottom: 1rem;
    background: rgba(0, 0, 0, 0.4);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    backdrop-filter: blur(5px);
}

.welcome-text {
    font-size: 1rem;
    font-weight: 400;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0;
}

/* Hero Logo Styles */
.hero-logo-3d {
    margin-bottom: 2rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.4);
    padding: 1rem;
    border-radius: 20px;
    backdrop-filter: blur(5px);
}

.hero-logo-img {
    max-width: 320px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

/* Hero Slogan Styles */
.hero-slogan {
    text-align: center;
    margin: 2rem 0;
    background: rgba(0, 0, 0, 0.4);
    padding: 1rem 2rem;
    border-radius: 25px;
    backdrop-filter: blur(5px);
}
    max-width: 600px;
}

/* Container para elementos centrados */
.hero-welcome,
.hero-logo-3d,
.hero-slogan {
    margin-bottom: 2rem;
}

.hero-description {
    font-size: 1.5rem;
    line-height: 1.4;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Chef Section */
.chef-section {
    padding: 6rem 0;
    background: var(--background-light);
}

.chef-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.chef-image-container {
    position: relative;
}

.chef-image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
}

.chef-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.chef-quote-card {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
    max-width: 300px;
}

.chef-quote-card blockquote {
    font-family: var(--font-primary);
    font-style: italic;
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.chef-quote-card cite {
    font-size: 0.9rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.section-title {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.chef-name {
    font-family: var(--font-primary);
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.chef-description {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.chef-specialties h4 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.specialties-list {
    list-style: none;
}

.specialties-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.specialties-list li::before {
    content: '🍴';
    position: absolute;
    left: 0;
}

/* Specialties Section */
.specialties-section {
    padding: 6rem 0;
    background: var(--white);
}

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

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-top: 1rem;
}

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

.specialty-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.specialty-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.specialty-card.featured {
    background: linear-gradient(135deg, var(--secondary-color), #a00300);
    color: var(--white);
    transform: scale(1.05);
}

.specialty-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.specialty-card.featured .specialty-icon {
    background: var(--white);
    color: var(--secondary-color);
}

.specialty-card h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.specialty-card.featured h3 {
    color: var(--white);
}

.specialty-card p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.specialty-card.featured p {
    color: rgba(255, 255, 255, 0.9);
}

.specialty-features {
    list-style: none;
}

.specialty-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.specialty-card.featured .specialty-features li {
    color: rgba(255, 255, 255, 0.9);
}

.specialty-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.specialty-card.featured .specialty-features li::before {
    color: var(--white);
}

/* Ingredients Section */
.ingredients-section {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.ingredients-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.ingredients-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ingredients-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 44, 44, 0.8);
    z-index: 2;
}

.ingredients-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
}

.ingredients-title {
    font-family: var(--font-primary);
    font-size: 3rem;
    margin-bottom: 2rem;
}

.ingredients-description {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

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

.ingredient-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.feature-icon {
    font-size: 3rem;
}

/* Menus Section */
.menus-section {
    padding: 6rem 0;
    background: var(--background-light);
}

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

.menu-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.menu-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.menu-card.premium {
    border: 3px solid var(--secondary-color);
    transform: scale(1.02);
}

.menu-card.custom {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

.menu-header {
    padding: 2rem;
    text-align: center;
    position: relative;
}

.menu-name {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.menu-card.custom .menu-name {
    color: var(--white);
}

.menu-price {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.menu-card.custom .menu-price {
    color: var(--white);
}

.menu-price span {
    font-size: 1rem;
    font-weight: 400;
}

.menu-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.menu-badge.premium {
    background: linear-gradient(45deg, var(--secondary-color), #a00300);
}

.menu-content {
    padding: 0 2rem 2rem;
}

.menu-items {
    list-style: none;
    margin-bottom: 1.5rem;
}

.menu-items li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.menu-card.custom .menu-items li {
    color: rgba(255, 255, 255, 0.9);
}

.menu-items li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.menu-card.custom .menu-items li::before {
    color: var(--white);
}

.menu-description {
    color: var(--text-light);
    font-style: italic;
}

.menu-card.custom .menu-description {
    color: rgba(255, 255, 255, 0.9);
}

.menu-info {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    margin-top: 2rem;
}

.menu-info h4 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.included-items {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.included-items li {
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.included-items li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.additional-info {
    color: var(--text-light);
    font-size: 0.9rem;
    border-top: 1px solid #eee;
    padding-top: 1rem;
}

/* Process Section */
.process-section {
    padding: 6rem 0;
    background: var(--white);
}

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

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 2rem;
    box-shadow: var(--shadow-medium);
}

.step-content h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.step-content p {
    color: var(--text-light);
}

/* Contact Section */
.contact-section {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.contact-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.contact-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 44, 44, 0.85);
    z-index: 2;
}

.contact-content {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    color: var(--white);
}

.contact-info .section-title {
    color: var(--white);
    margin-bottom: 2rem;
}

.contact-description {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
}

.contact-icon {
    font-size: 1.5rem;
}

.contact-cta {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.contact-cta h3 {
    font-family: var(--font-primary);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-cta p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 3rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-info {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Hero Mobile Optimizations */
    .hero-culinary {
        height: 100vh;
    }
    
    .hero-content-culinary {
        height: 100vh;
        padding: 0 15px;
        padding-bottom: 15%;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-logo-img {
        max-width: 250px;
    }
    
    .welcome-text {
        font-size: 0.9rem;
        letter-spacing: 2px;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-cta-buttons {
        flex-direction: column;
        gap: 0.8rem;
        margin-top: 1.5rem;
    }
    
    .btn-primary-culinary,
    .btn-secondary-culinary {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
        max-width: 280px;
    }
    
    /* Navigation Mobile */
    .nav-menu {
        display: none;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .logo {
        max-width: 60px;
    }
    
    .btn-cta {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
    
    /* Sections Mobile */
    .hero-stats {
        gap: 2rem;
    }
    
    .chef-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .chef-quote-card {
        position: static;
        margin-top: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .ingredients-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    /* Specialties Mobile */
    .specialties-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Menus Mobile */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Process Mobile */
    .process-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Extra Small Mobile */
@media (max-width: 480px) {
    .hero-logo-img {
        max-width: 200px;
    }
    
    .welcome-text {
        font-size: 0.8rem;
        letter-spacing: 1px;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .btn-primary-culinary,
    .btn-secondary-culinary {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .hero-content-culinary {
        padding-bottom: 20%;
    }
}


/* Mobile Touch Optimizations */
@media (hover: none) and (pointer: coarse) {
    .btn-primary-culinary,
    .btn-secondary-culinary,
    .btn-cta {
        min-height: 44px;
        touch-action: manipulation;
    }
    
    .nav-menu a {
        padding: 1rem;
    }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-culinary {
        height: 100vh;
    }
    
    .hero-content-culinary {
        padding-bottom: 10%;
    }
    
    .hero-logo-img {
        max-width: 180px;
    }
    
    .welcome-text {
        font-size: 0.8rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .hero-cta-buttons {
        margin-top: 1rem;
        gap: 0.6rem;
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}


/* Hero Sections Layout */
.hero-top-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.hero-middle-section {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bottom-section {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Remove backgrounds from individual elements for cleaner look */
.hero-welcome {
    margin-bottom: 0;
    background: none;
    padding: 0;
    border-radius: 0;
    backdrop-filter: none;
}

.hero-logo-3d {
    margin-bottom: 0;
    background: none;
    padding: 0;
    border-radius: 0;
    backdrop-filter: none;
}

.hero-slogan {
    margin: 0;
    background: none;
    padding: 0;
    border-radius: 0;
    backdrop-filter: none;
}

.hero-cta-buttons {
    margin-top: 0;
}

