﻿/* ===== SABOR & TRADIÇÃO — RESTAURANTE COMPLETO (349€) ===== */
:root {
    --c-primary: #1B3A2D;
    --c-primary-light: #2A5A43;
    --c-cream: #F5F0E8;
    --c-cream-dark: #EDE5D8;
    --c-gold: #B8945F;
    --c-gold-light: #D4B57A;
    --c-dark: #0D1B14;
    --c-text: #2C2C2C;
    --c-text-muted: #6B6B6B;
    --c-border: rgba(27, 58, 45, 0.1);
    --c-white: #fff;
    --ff-display: 'Playfair Display', Georgia, serif;
    --ff-body: 'Outfit', 'Segoe UI', sans-serif;
    --radius: 10px;
    --radius-lg: 16px;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.1);
    --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--ff-body);
    color: var(--c-text);
    background: var(--c-cream);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

.mt-3 {
    margin-top: 2rem;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1rem 2rem;
    transition: all var(--transition);
}

.header.scrolled {
    background: rgba(245, 240, 232, 0.97);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow);
    padding: 0.7rem 2rem;
}

.header-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: var(--ff-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    transition: color var(--transition);
}

.logo em {
    color: var(--c-gold-light);
    font-style: italic;
    transition: color var(--transition);
}

.header.scrolled .logo {
    color: var(--c-primary);
}

.header.scrolled .logo em {
    color: var(--c-gold);
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    transition: color 0.3s;
}

.header.scrolled .nav-link {
    color: var(--c-text-muted);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--c-gold);
    transition: width 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: #fff;
}

.header.scrolled .nav-link:hover,
.header.scrolled .nav-link.active {
    color: var(--c-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.8rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
}

.btn-reserva {
    background: var(--c-primary);
    color: #fff !important;
    border-radius: 50px;
    padding: 0.6rem 1.4rem;
}

.btn-reserva:hover {
    background: var(--c-gold);
}

.btn-gold {
    background: var(--c-gold);
    color: #fff;
}

.btn-gold:hover {
    background: var(--c-gold-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
}

.btn-whatsapp:hover {
    background: #1ebe5a;
    transform: translateY(-2px);
}

.btn-outline-dark {
    background: transparent;
    color: var(--c-primary);
    border: 2px solid var(--c-border);
}

.btn-outline-dark:hover {
    border-color: var(--c-gold);
    color: var(--c-gold);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: #fff;
    transition: all 0.3s;
}

.header.scrolled .hamburger span {
    background: var(--c-primary);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO ===== */
.hero {
    min-height: 90vh;
    background: url('https://images.unsplash.com/photo-1555396273-367ea4eb4db5?w=1600&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(13, 27, 20, 0.45) 0%, rgba(13, 27, 20, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 2rem;
    max-width: 750px;
}

.hero-badge {
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--c-gold-light);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero-badge i {
    margin-right: 0.4rem;
}

.hero-title {
    font-family: var(--ff-display);
    font-size: 3.8rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.2rem;
}

.hero-title span {
    display: block;
}

.hero-title .gold {
    color: var(--c-gold-light);
}

.hero-title em {
    font-weight: 400;
}

.hero-sub {
    font-size: 1.1rem;
    opacity: 0.85;
    margin-bottom: 2.5rem;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 1px;
    height: 50px;
    background: var(--c-gold);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% {
        top: -50px;
    }

    100% {
        top: 50px;
    }
}

/* ===== SECTION COMMON ===== */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--c-gold);
    font-weight: 600;
}

.section-header h2 {
    font-family: var(--ff-display);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--c-primary);
    margin-top: 0.4rem;
}

.title-accent {
    width: 50px;
    height: 3px;
    background: var(--c-gold);
    margin: 1rem auto 0;
    border-radius: 2px;
}

/* ===== HIGHLIGHTS ===== */
.highlights {
    padding: 5rem 0;
    background: var(--c-white);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.highlight-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--c-cream);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.h-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--c-primary);
    color: var(--c-gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-size: 1.3rem;
}

.highlight-card h3 {
    font-family: var(--ff-display);
    font-size: 1.2rem;
    color: var(--c-primary);
    margin-bottom: 0.5rem;
}

.highlight-card p {
    font-size: 0.9rem;
    color: var(--c-text-muted);
}

/* ===== MENU PREVIEW ===== */
.menu-preview {
    padding: 5rem 0;
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.preview-card {
    background: var(--c-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
    box-shadow: var(--shadow);
}

.preview-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.preview-img {
    height: 220px;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s;
}

.preview-card:hover .preview-img {
    transform: scale(1.05);
}

.preview-info {
    padding: 1.5rem;
}

.preview-info h3 {
    font-family: var(--ff-display);
    font-size: 1.15rem;
    color: var(--c-primary);
    margin-bottom: 0.3rem;
}

.preview-info p {
    font-size: 0.85rem;
    color: var(--c-text-muted);
    margin-bottom: 0.8rem;
}

.preview-price {
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--c-gold);
}

/* ===== SOCIAL CTA ===== */
.social-cta {
    padding: 5rem 0;
    background: var(--c-white);
}

.social-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.social-text h2 {
    font-family: var(--ff-display);
    font-size: 2rem;
    color: var(--c-primary);
    margin: 0.5rem 0;
}

.social-text p {
    color: var(--c-text-muted);
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--c-cream);
    color: var(--c-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--c-primary);
    color: var(--c-gold-light);
}

.social-links.small a {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
}

.social-cta-card {
    background: var(--c-primary);
    color: #fff;
    padding: 3rem 2.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
}

.social-cta-card h3 {
    font-family: var(--ff-display);
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

.social-cta-card p {
    opacity: 0.8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* ===== PAGE HERO ===== */
.page-hero {
    height: 45vh;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background-size: cover;
    background-position: center;
}

.page-hero-menu {
    background-image: url('img/hero_bg.jpg');
}

.page-hero-galeria {
    background-image: url('img/hero_bg.jpg');
}

.page-hero-sobre {
    background-image: url('img/hero_bg.jpg');
}

.page-hero-contacto {
    background-image: url('img/hero_bg.jpg');
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13, 27, 20, 0.65);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.page-hero-content h1 {
    font-family: var(--ff-display);
    font-size: 3rem;
    font-weight: 700;
    margin: 0.5rem 0;
}

.page-hero-content p {
    opacity: 0.8;
    font-size: 1.05rem;
}

/* ===== MENU FULL ===== */
.menu-full {
    padding: 4rem 0;
}

.menu-section {
    margin-bottom: 3.5rem;
}

.menu-section h2 {
    font-family: var(--ff-display);
    font-size: 1.6rem;
    color: var(--c-primary);
    padding-bottom: 0.8rem;
    border-bottom: 2px solid var(--c-border);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}

.menu-section h2 i {
    color: var(--c-gold);
    font-size: 1.1rem;
}

.menu-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.menu-item-card {
    background: var(--c-white);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    box-shadow: var(--shadow);
    transition: all var(--transition);
}

.menu-item-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.mic-img {
    width: 110px;
    min-height: 100px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}


.mic-info {
    padding: 1rem 1.2rem;
    flex: 1;
}

.mic-info h3 {
    font-family: var(--ff-display);
    font-size: 1rem;
    color: var(--c-primary);
    margin-bottom: 0.2rem;
}

.mic-info p {
    font-size: 0.8rem;
    color: var(--c-text-muted);
    margin-bottom: 0.5rem;
}

.mic-price {
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--c-gold);
}

/* ===== GALLERY ===== */
.gallery-section {
    padding: 4rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    grid-auto-rows: 250px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item.large {
    grid-column: span 2;
}

.gallery-item.tall {
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem 1.2rem;
    color: #fff;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
    font-weight: 600;
    font-size: 0.9rem;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

/* ===== ABOUT ===== */
.about-content {
    padding: 4rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-text h2 {
    font-family: var(--ff-display);
    font-size: 2rem;
    color: var(--c-primary);
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1rem;
    color: var(--c-text-muted);
}

.about-image img,
.about-img img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.about-value {
    text-align: center;
    padding: 2rem;
    background: var(--c-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.av-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--c-cream);
    color: var(--c-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.3rem;
}

.about-value h3 {
    font-family: var(--ff-display);
    font-size: 1.1rem;
    color: var(--c-primary);
    margin-bottom: 0.5rem;
}

.about-value p {
    font-size: 0.85rem;
    color: var(--c-text-muted);
}

/* ===== CONTACT ===== */
.contact-section {
    padding: 4rem 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
}

.contact-form-area h2 {
    font-family: var(--ff-display);
    font-size: 1.8rem;
    color: var(--c-primary);
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--c-primary);
    margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid var(--c-border);
    border-radius: var(--radius);
    font-family: var(--ff-body);
    font-size: 0.95rem;
    background: var(--c-white);
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--c-gold);
}

.cd-card {
    background: var(--c-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    margin-bottom: 1.5rem;
}

.cd-card h3 {
    font-family: var(--ff-display);
    font-size: 1.3rem;
    color: var(--c-primary);
    margin-bottom: 1.5rem;
}

.cd-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.cd-item i {
    color: var(--c-gold);
    font-size: 1.1rem;
    margin-top: 0.2rem;
    width: 20px;
    text-align: center;
}

.cd-item strong {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--c-text-muted);
}

.cd-item p {
    margin-top: 0.2rem;
}

.closed {
    color: #c44;
    font-size: 0.85rem;
    font-style: italic;
}

.map-container {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* ===== ABOUT STATS ===== */
.about-stats {
    padding: 4rem 0;
    background: var(--c-primary);
    color: #fff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item .stat-number {
    display: block;
    font-family: var(--ff-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--c-gold-light);
    margin-bottom: 0.3rem;
}

.stat-item .stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ===== ABOUT VALUES (new) ===== */
.about-values-section {
    padding: 5rem 0;
    background: var(--c-cream);
}

.about-values-section .about-values {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.value-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--c-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: all var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--c-primary);
    color: var(--c-gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-size: 1.3rem;
}

.value-card h3 {
    font-family: var(--ff-display);
    font-size: 1.15rem;
    color: var(--c-primary);
    margin-bottom: 0.6rem;
}

.value-card p {
    font-size: 0.85rem;
    color: var(--c-text-muted);
    line-height: 1.6;
}

/* ===== ABOUT CTA ===== */
.about-cta {
    padding: 5rem 0;
    background: var(--c-primary);
    color: #fff;
}

.about-cta-inner {
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
}

.about-cta blockquote {
    margin-bottom: 2.5rem;
}

.about-cta blockquote p {
    font-family: var(--ff-display);
    font-size: 1.8rem;
    font-style: italic;
    color: var(--c-gold-light);
    line-height: 1.4;
    margin-bottom: 0.8rem;
}

.about-cta blockquote cite {
    font-size: 0.9rem;
    opacity: 0.6;
    font-style: normal;
}

.about-cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== CONTACT QUICK CARDS ===== */
.contact-cards-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
    margin-bottom: 3rem;
}

.contact-quick-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.2rem;
    background: var(--c-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    text-decoration: none;
    color: var(--c-text);
    transition: all var(--transition);
    border: 2px solid transparent;
}

.contact-quick-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--c-gold);
}

.contact-quick-card.highlight {
    background: var(--c-primary);
    color: #fff;
}

.contact-quick-card.highlight .cqc-icon {
    background: rgba(255, 255, 255, 0.15);
    color: var(--c-gold-light);
}

.contact-quick-card.highlight:hover {
    border-color: var(--c-gold-light);
}

.cqc-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--c-cream);
    color: var(--c-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.contact-quick-card h3 {
    font-family: var(--ff-display);
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.contact-quick-card p {
    font-size: 0.8rem;
    opacity: 0.7;
}

/* ===== CONTACT GRID (redesigned) ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 3rem;
    align-items: start;
}

.contact-info-inner {
    background: var(--c-white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.contact-info-inner h2,
.contact-form-col h2 {
    font-family: var(--ff-display);
    font-size: 1.6rem;
    color: var(--c-primary);
    margin-bottom: 1.5rem;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-detail i {
    color: var(--c-gold);
    font-size: 1.1rem;
    margin-top: 0.2rem;
    width: 20px;
    text-align: center;
}

.contact-detail strong {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--c-text-muted);
    margin-bottom: 0.2rem;
}

.contact-actions {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.contact-social {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--c-border);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-social span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--c-text-muted);
}

.form-subtitle {
    font-size: 0.9rem;
    color: var(--c-text-muted);
    margin-top: -1rem;
    margin-bottom: 1.5rem;
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--c-dark);
    color: rgba(255, 255, 255, 0.6);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-logo {
    font-family: var(--ff-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--c-gold);
    display: block;
    margin-bottom: 0.8rem;
}

.footer-logo em {
    font-style: italic;
}

.footer-col h4 {
    color: #fff;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul li a:hover {
    color: var(--c-gold);
}

.footer-col p {
    font-size: 0.85rem;
    margin-bottom: 0.3rem;
}

.footer-col p i {
    color: var(--c-gold);
    margin-right: 0.4rem;
    width: 16px;
}

.muted {
    opacity: 0.5;
    font-style: italic;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.footer-bottom p {
    font-size: 0.8rem;
}

.made-by a {
    color: var(--c-gold);
}

.made-by a:hover {
    text-decoration: underline;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 58px;
    height: 58px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
    transition: all 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* ===== REVEAL ANIMATION ===== */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s ease;
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {

    /* Mobile Nav Drawer — dark background for readability */
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--c-primary);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        gap: 2rem;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
    }

    .nav.active {
        right: 0;
    }

    .nav-link {
        font-size: 1.3rem;
        color: rgba(255, 255, 255, 0.85) !important;
        padding: 0.5rem 1rem;
    }

    .nav-link:hover {
        color: var(--c-gold-light) !important;
    }

    .nav .btn-reserva {
        background: var(--c-gold) !important;
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

    .nav-link::after {
        display: none;
    }

    /* Nav backdrop overlay */
    .nav::before {
        content: '';
        position: fixed;
        top: 0;
        right: 100%;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        transition: opacity 0.4s ease;
        pointer-events: none;
    }

    .nav.active::before {
        opacity: 1;
        pointer-events: auto;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    /* Header mobile */
    .header {
        padding: 0.8rem 1rem;
    }

    .header.scrolled {
        padding: 0.6rem 1rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    /* Hero mobile */
    .hero {
        min-height: 75vh;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-sub {
        font-size: 0.95rem;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }

    .hero-ctas .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    /* Grids → single column */
    .highlights-grid {
        grid-template-columns: 1fr;
    }

    .preview-grid {
        grid-template-columns: 1fr;
    }

    .social-inner {
        grid-template-columns: 1fr;
    }

    .menu-items {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }

    .gallery-item.large {
        grid-column: span 1;
    }

    .gallery-item.tall {
        grid-row: span 1;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-values {
        grid-template-columns: 1fr;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-bottom {
        justify-content: center;
        text-align: center;
    }

    .page-hero-content h1 {
        font-size: 2.2rem;
    }

    /* Menu item cards stack */
    .menu-item-card {
        flex-direction: column;
    }

    .mic-img {
        width: 100%;
        height: 180px;
    }

    /* WhatsApp float — larger on mobile */
    .whatsapp-float {
        width: 60px;
        height: 60px;
        font-size: 1.7rem;
        bottom: 1.2rem;
        right: 1.2rem;
    }

    /* Section padding */
    .highlights,
    .menu-preview,
    .social-cta {
        padding: 3rem 0;
    }

    /* New Sobre responsive */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-values-section .about-values {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-cta blockquote p {
        font-size: 1.4rem;
    }

    /* New Contacto responsive */
    .contact-cards-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .about-values-section .about-values {
        grid-template-columns: 1fr;
    }

    .contact-cards-row {
        grid-template-columns: 1fr;
    }
}

/* ===== SCROLL ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-content {
    animation: fadeInUp 0.8s ease forwards;
}

.hero-badge {
    animation: fadeInUp 0.8s 0.2s ease both;
}

.hero-title {
    animation: fadeInUp 0.8s 0.4s ease both;
}

.hero-sub {
    animation: fadeInUp 0.8s 0.6s ease both;
}

.hero-ctas {
    animation: fadeInUp 0.8s 0.8s ease both;
}