:root {
    --primary: #000000; /* Preto elegante do logo */
    --accent: #c5a059;  /* Dourado sofisticado do logo */
    --accent-light: #f4e9d5;
    --text: #1a1a1a;
    --text-light: #555555;
    --white: #ffffff;
    --bg-light: #fdfbf7; /* Off-white para destacar pratos */
    --whatsapp: #25d366;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

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

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 25px 0;
    transition: var(--transition);
}

header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.navbar {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
}

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary);
}

.logo span {
    font-weight: 300;
    color: var(--accent);
}

header.scrolled .logo { color: var(--primary); }

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

header.scrolled .nav-links a {
    color: var(--text);
}

.nav-links a:hover, .nav-links a.active {
    color: var(--accent);
}

.nav-cta {
    background: var(--accent);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: 5px;
}

.nav-cta:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    color: var(--white);
    cursor: pointer;
}

header.scrolled .mobile-menu-btn { color: var(--text); }

/* Hero Section */
.hero {
    height: 100vh;
    background: url('assets/images/hero.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.7));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 5%;
}

.badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(212, 163, 115, 0.2);
    border: 1px solid var(--accent);
    border-radius: 50px;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero h1 span {
    color: var(--accent);
    font-style: italic;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    font-weight: 300;
    opacity: 0.9;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-primary, .btn-secondary {
    padding: 15px 35px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

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

.btn-secondary {
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-5px);
}

/* Sabores Section */
.sabores {
    padding: 100px 0;
    background: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.dish-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.dish-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.dish-img {
    height: 300px;
    overflow: hidden;
}

.dish-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.dish-card:hover .dish-img img {
    transform: scale(1.1);
}

.dish-info {
    padding: 30px;
}

.dish-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.dish-info p {
    color: var(--text-light);
}

/* Experiencia Section */
.experiencia {
    padding: 100px 5%;
}

.exp-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
}

.exp-text {
    flex: 1;
}

.sub-title {
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.exp-text h2 {
    font-size: 3.5rem;
    color: var(--primary);
    margin: 15px 0 25px;
    line-height: 1.2;
}

.exp-text h2 span {
    color: var(--accent);
    font-style: italic;
}

.exp-features {
    list-style: none;
    margin-top: 30px;
}

.exp-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--primary);
}

.exp-features i {
    color: var(--accent);
}

.exp-visual {
    flex: 1;
}

.exp-img-wrapper {
    position: relative;
}

.exp-img-wrapper::after {
    content: '';
    position: absolute;
    top: 20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 5px solid var(--accent);
    z-index: -1;
    border-radius: 15px;
}

.exp-img-wrapper img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

/* Localização Section */
.localizacao {
    padding: 100px 0;
    background: #f8f9fa;
}

.location-card {
    background: var(--white);
    display: flex;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.location-info {
    flex: 1;
    padding: 60px;
}

.location-info h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 30px;
}

.location-info p {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.location-info i {
    color: var(--accent);
}

.btn-map {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
}

.location-map {
    flex: 1.2;
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder {
    text-align: center;
    color: var(--text-light);
}

.map-placeholder i {
    font-size: 3rem;
    margin-bottom: 10px;
    display: block;
}

/* Reservas Section */
.reservas {
    padding: 100px 5%;
    background: var(--primary);
    color: var(--white);
    text-align: center;
}

.reserva-content {
    max-width: 700px;
    margin: 0 auto;
}

.reservas h2 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.reserva-form {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    gap: 20px;
}

.reserva-form input, .reserva-form select {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-family: inherit;
    outline: none;
}

.btn-submit {
    padding: 18px;
    background: var(--accent);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
}

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

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--whatsapp);
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 9999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.05) translateY(-5px);
    background-color: #1ebe57;
}

.whatsapp-float i {
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .whatsapp-float span { display: none; }
    .whatsapp-float { padding: 15px; border-radius: 50%; }
}

/* Footer */
footer {
    padding: 80px 5% 40px;
    background: #0d1b2a;
    color: rgba(255,255,255,0.7);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 15px;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social a {
    color: var(--white);
    font-size: 1.5rem;
    transition: var(--transition);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    font-size: 0.9rem;
}

/* Reveal Animations */
[data-reveal] {
    opacity: 0;
    transition: 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

[data-reveal="bottom"] { transform: translateY(50px); }
[data-reveal="left"] { transform: translateX(-50px); }
[data-reveal="right"] { transform: translateX(50px); }

[data-reveal].active {
    opacity: 1;
    transform: translate(0,0);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero h1 { font-size: 3.5rem; }
    .exp-container, .location-card { flex-direction: column; }
    .location-info { padding: 40px; }
    .location-map { height: 300px; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-menu-btn { display: block; }
    .hero h1 { font-size: 2.8rem; }
    .hero-btns { flex-direction: column; }
    .form-group { flex-direction: column; }
    .footer-container { flex-direction: column; text-align: center; gap: 30px; }
}
