:root {
    --primary: #C41E3A; /* Deep Red */
    --primary-dark: #8B0000;
    --secondary: #FFD700; /* Gold */
    --accent: #FF4500; /* Orange-Red */
    --dark: #1A1A1A;
    --light: #F9F9F9;
    --white: #FFFFFF;
    --glass: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    background-color: var(--light);
}

h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
}

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

/* Header */
.header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 1000 !important;
    padding: 15px 0 !important;
    background: #FFFFFF !important;
    backdrop-filter: blur(10px) !important;
    border-bottom: 2px solid var(--primary) !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
}

.header .container {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
}

.logo img {
    height: 90px !important; /* Aumentado um pouco mais */
    transition: height 0.3s !important;
}

.nav ul {
    list-style: none !important;
    display: flex !important;
    gap: 30px !important;
}

.nav a {
    text-decoration: none !important;
    color: #000000 !important; /* Forçado para preto puro */
    font-weight: 700 !important;
    transition: color 0.3s !important;
    text-transform: uppercase !important;
    font-size: 0.95rem !important;
}

.nav a:hover {
    color: var(--primary) !important;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 10px;
}

.mobile-menu-btn span {
    display: block;
    width: 30px;
    height: 3px;
    background: var(--primary);
    transition: all 0.3s;
    border-radius: 3px;
}

/* Hamburger Animation */
.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    text-align: center;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(196, 30, 58, 0.4);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--dark);
}

.btn-secondary:hover {
    background: #FFC000;
    transform: scale(1.05);
}

.btn-block {
    display: block;
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 800px; /* Aumentado de 700px para 800px */
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 150px; /* Aumentado de 80px para 150px para não sobrepor o logo */
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease;
}

.slide.active {
    opacity: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

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

.hero-text p {
    color: #EEE;
    font-size: 1.1rem;
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-text p span {
    background: rgba(196, 30, 58, 0.3);
    padding: 2px 10px;
    border-radius: 5px;
    border: 1px solid rgba(255,255,255,0.1);
}

.hero-form .form-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 20px;
    color: var(--white);
    box-shadow: var(--shadow);
}

.hero-form h3 {
    margin-bottom: 10px;
    font-size: 1.8rem;
    color: var(--secondary);
}

.hero-form p {
    margin-bottom: 25px;
    opacity: 0.9;
}

.form-group {
    margin-bottom: 15px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

input, label {
    display: block;
    width: 100%;
}

label {
    font-size: 0.8rem;
    margin-bottom: 5px;
    color: var(--secondary);
}

input {
    padding: 12px 15px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.1);
    color: var(--white);
    font-family: inherit;
}

input::placeholder {
    color: rgba(255,255,255,0.6);
}

input:focus {
    outline: none;
    border-color: var(--secondary);
    background: rgba(255,255,255,0.15);
}

/* Sections */
section {
    padding: 100px 0;
}

.section-subtitle {
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--secondary);
}

.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

/* About Section */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.rounded { border-radius: 20px; }
.img-responsive { width: 100%; height: auto; }
.shadow-lg { box-shadow: 0 20px 40px rgba(0,0,0,0.1); }

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    transition: transform 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-bottom: 4px solid var(--primary);
}

.service-card:hover {
    transform: translateY(-10px);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 15px;
    height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
    cursor: pointer;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Menu Section */
.menu-section {
    background: var(--dark);
    color: var(--white);
}

.menu-container {
    background: rgba(255,255,255,0.03);
    padding: 60px;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.05);
}

.menu-header {
    text-align: center;
    margin-bottom: 50px;
}

.menu-divider {
    height: 2px;
    background: linear-gradient(to right, transparent, var(--primary), transparent);
    margin: 60px 0;
    opacity: 0.3;
}

.menu-header h2 {
    font-size: 3rem;
    color: var(--secondary);
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.menu-column h3 {
    border-bottom: 2px solid var(--primary);
    padding-bottom: 10px;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 1.2rem;
}

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

.menu-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    position: relative;
    padding-left: 20px;
}

.menu-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
}

.menu-featured {
    margin-top: 50px;
    text-align: center;
}

.card-glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 20px;
    max-width: 800px;
    margin: 20px auto;
}

/* Footer */
.footer-bottom {
    background: #000;
    color: #666;
    padding: 30px 0;
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 992px) {
    .grid-2, .hero-content {
        grid-template-columns: 1fr;
    }
    
    .hero {
        height: auto;
        padding-top: 120px; /* Aumentado para mobile */
        padding-bottom: 50px;
    }
    
    .hero-text h1 {
        font-size: 3rem;
    }
    
    .hero-slider {
        filter: brightness(0.4);
    }

    /* Mobile Nav */
    .mobile-menu-btn {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--white);
        padding: 100px 40px;
        transition: right 0.4s ease;
        box-shadow: -5px 0 20px rgba(0,0,0,0.1);
        z-index: 1000;
    }

    .nav.active {
        right: 0;
    }

    .nav ul {
        flex-direction: column;
        gap: 25px;
    }

    .nav a {
        font-size: 1.2rem;
        color: var(--dark) !important;
    }
}

@media (max-width: 600px) {
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* Animations */
.fade-in {
    animation: fadeIn 1s ease forwards;
}

.fade-in-delayed {
    animation: fadeIn 1s ease 0.5s forwards;
    opacity: 0;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
