/* ============================================
   Soleil Cafe - Estilos Principais
   ============================================ */

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--background-alt);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--background-alt);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-hover);
}

body {
    font-family: 'SF Pro Text', 'SF Pro', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--background);
    overflow-x: hidden;
}

/* ===== TIPOGRAFIA ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'SF Pro Display', 'SF Pro', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 500;
    line-height: 1.2;
    color: var(--text);
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p { margin-bottom: 1rem; }

a {
    color: var(--primary-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover { color: var(--secondary); }

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===== UTILITÁRIOS ===== */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 5rem 0;
}

.section-alt {
    background-color: var(--background-alt);
}

.section-dark {
    background-color: var(--secondary);
    color: #fff;
}

.section-dark h2,
.section-dark h3 {
    color: var(--primary);
}

.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-muted { color: var(--text-muted); }

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

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.section-header .divider {
    width: 60px;
    height: 2px;
    background: var(--gradient-primary);
    margin: 1.5rem auto;
}

/* ===== BOTÕES ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-family: 'SF Pro Text', 'SF Pro', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-primary {
    background: var(--secondary);
    color: #fff;
}

.btn-primary:hover {
    background: var(--secondary-hover);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--primary-text);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: #fff;
}

.btn-ghost {
    background: transparent;
    color: var(--text);
    padding: 0.5rem 1rem;
}

.btn-ghost:hover {
    color: var(--primary-text);
}

.btn-lg {
    padding: 1.125rem 2.5rem;
    font-size: 1rem;
}

/* ===== HEADER ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(135deg, #fdfcfa 0%, #f2ede4 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(191, 161, 90, 0.38);
    box-shadow: 0 10px 24px rgba(49, 29, 12, 0.1);
    transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}

.site-header.scrolled {
    background: linear-gradient(135deg, #fdfcfa 0%, #f2ede4 100%);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom-color: #d9c7a8;
    box-shadow: 0 14px 30px rgba(49, 29, 12, 0.16);
}

/* Hero full mantém header sofisticado e legível */
.has-hero-full .site-header {
    background: linear-gradient(135deg, #fdfcfa 0%, #f2ede4 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom-color: rgba(191, 161, 90, 0.38);
    box-shadow: 0 10px 24px rgba(49, 29, 12, 0.1);
}

.has-hero-full .site-header.scrolled {
    background: linear-gradient(135deg, #fdfcfa 0%, #f2ede4 100%);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom-color: #d9c7a8;
    box-shadow: 0 14px 30px rgba(49, 29, 12, 0.16);
}

.has-hero-full .site-header:not(.scrolled) .nav-link {
    color: var(--text);
}

.has-hero-full .site-header:not(.scrolled) .nav-link::after {
    background: linear-gradient(90deg, #bfa15a 0%, #7a5a1e 100%);
}

.has-hero-full .site-header:not(.scrolled) .nav-link:hover,
.has-hero-full .site-header:not(.scrolled) .nav-link.active {
    color: var(--primary);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.68rem 1.4rem;
}

.logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.logo-picture {
    display: block;
}

.logo-picture-light {
    display: none;
}

.logo-img {
    height: 52px;
    width: auto;
}

/* Logo color sempre visível - sem troca no hero */

.main-nav {
    display: none;
}

@media (min-width: 1024px) {
    .main-nav {
        display: block;
    }
}

.nav-list {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: 0.03em;
    text-transform: uppercase;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.4s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #bfa15a 0%, #7a5a1e 100%);
    transition: width 0.3s ease, background 0.4s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

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

.header-cta {
    display: none;
    padding: 0.64rem 1.12rem;
    border-radius: 999px;
    border: 1px solid rgba(122, 90, 30, 0.26);
    background: linear-gradient(140deg, #d39a4a 0%, #b57d33 46%, #7a5a1e 100%);
    color: #fff8ed;
    text-transform: none;
    letter-spacing: 0.2px;
    box-shadow: 0 8px 20px rgba(58, 42, 18, 0.22);
}

.header-cta svg {
    width: 18px;
    height: 18px;
}

.header-cta:hover {
    background: linear-gradient(140deg, #d39a4a 0%, #b57d33 46%, #7a5a1e 100%);
    color: #fff8ed;
    border-color: rgba(122, 90, 30, 0.26);
    box-shadow: 0 8px 20px rgba(58, 42, 18, 0.22);
}

@media (min-width: 1024px) {
    .header-cta {
        display: inline-flex;
    }
}

/* Menu Toggle Mobile */
.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: rgba(253, 252, 252, 0.58);
    border: 1px solid rgba(191, 161, 90, 0.28);
    border-radius: 10px;
    cursor: pointer;
    padding: 0;
}

.has-hero-full .site-header:not(.scrolled) .menu-toggle {
    background: rgba(253, 252, 252, 0.58);
    border-color: rgba(191, 161, 90, 0.28);
}

@media (min-width: 1024px) {
    .menu-toggle {
        display: none;
    }
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--primary-darker);
    transition: all 0.3s ease;
}

.has-hero-full .site-header:not(.scrolled) .hamburger span {
    background: var(--primary-darker);
}

.menu-toggle.active .hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active .hamburger span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav */
body.menu-open .site-header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.mobile-nav {
    position: fixed;
    top: 74px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: linear-gradient(180deg, #fdfcfa 0%, #f2ede4 100%);
    border-top: 1px solid rgba(191, 161, 90, 0.32);
    padding: 2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.mobile-nav.active {
    transform: translateX(0);
}

.mobile-nav-list {
    list-style: none;
    margin-bottom: 2rem;
}

.mobile-nav-link {
    display: block;
    padding: 1rem 0;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text);
    border-bottom: 1px solid var(--border-light);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--primary-text);
}

.mobile-cta {
    width: 100%;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    border-radius: 14px;
    border: 1px solid rgba(122, 90, 30, 0.26);
    background: linear-gradient(140deg, #d39a4a 0%, #b57d33 46%, #7a5a1e 100%);
    color: #fff8ed;
    text-transform: none;
    letter-spacing: 0.2px;
    box-shadow:
        0 10px 24px rgba(58, 42, 18, 0.3),
        inset 0 1px 0 rgba(255, 241, 214, 0.32);
}

.mobile-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 120%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
    animation: goldButtonShimmer 3.2s infinite;
    pointer-events: none;
}

.mobile-cta > * {
    position: relative;
    z-index: 1;
}

.mobile-cta:hover {
    background: linear-gradient(140deg, #e0a856 0%, #c48a3a 48%, #8c6526 100%);
    color: #fffaf0;
    border-color: rgba(255, 244, 224, 0.8);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-background img,
.hero-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(45, 28, 60, 0.55) 0%,
        rgba(50, 25, 55, 0.6) 40%,
        rgba(55, 25, 50, 0.65) 70%,
        rgba(60, 22, 45, 0.7) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
    padding: 2rem;
    max-width: 800px;
}

.hero-content h1,
.hero-content h2,
.hero-content h3 {
    color: #fff;
}

.hero-logo {
    width: 280px;
    max-width: 80%;
    margin: 0 auto 2rem;
    animation: fadeInDown 1s ease;
}

.hero-title {
    font-size: clamp(0.8rem, 2vw, 1rem);
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: var(--primary);
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-subtitle {
    font-family: 'SF Pro Display', 'SF Pro', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.4;
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-cta .btn-outline {
    border-color: var(--primary);
    color: var(--primary);
}

.hero-cta .btn-outline:hover {
    background: var(--primary);
    color: var(--secondary);
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

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

@keyframes goldButtonShimmer {
    0% { left: -120%; }
    100% { left: 130%; }
}

/* ===== DESTAQUES / FEATURES ===== */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: -4rem;
    position: relative;
    z-index: 10;
}

.feature-card {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-lighter);
    border-radius: 50%;
    color: var(--primary-text);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    margin: 0;
}

/* ===== PRATOS GRID ===== */
.dishes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.dish-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dish-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.dish-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.dish-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.dish-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.25rem 0.75rem;
    background: var(--secondary);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 2px;
}

.dish-info {
    padding: 1.5rem;
}

.dish-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.dish-info p {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.dish-price {
    font-family: 'SF Pro Display', 'SF Pro', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.25rem;
    color: var(--primary-text);
    font-weight: 600;
}

/* ===== MENU CATEGORIAS ===== */
.menu-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.category-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text);
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-btn:hover,
.category-btn.active {
    background: var(--secondary);
    color: #fff;
    border-color: var(--secondary);
}

/* ===== MENU ITEMS LIST ===== */
.menu-section {
    margin-bottom: 4rem;
}

.menu-section-title {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: var(--secondary);
}

.menu-section-subtitle {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-style: italic;
}

.menu-items {
    display: grid;
    gap: 1.5rem;
}

.menu-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.3s ease;
}

.menu-item:hover {
    box-shadow: var(--shadow);
}

.menu-item-image {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    border-radius: 6px;
    overflow: hidden;
}

.menu-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-item-content {
    flex: 1;
    min-width: 0;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.menu-item-name {
    font-family: 'SF Pro Display', 'SF Pro', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.125rem;
    font-weight: 500;
}

.menu-item-price {
    font-family: 'SF Pro Display', 'SF Pro', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.125rem;
    color: var(--primary-text);
    font-weight: 600;
    white-space: nowrap;
}

.menu-item-description {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0;
}

.menu-item-tags {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.menu-item-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.5rem;
    font-size: 0.6875rem;
    color: var(--text-muted);
    background: var(--background-alt);
    border-radius: 3px;
}

/* ===== SOBRE / ABOUT ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Masonry layout para imagens about */
.about-images {
    columns: 2;
    column-gap: 1rem;
}

.about-images img {
    break-inside: avoid;
    margin-bottom: 1rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    width: 100%;
    height: auto;
    display: block;
}

.about-images img:first-child {
    /* Primeira imagem ocupa mais espaço visualmente */
    column-span: none;
}

.about-content h2 {
    margin-bottom: 1.5rem;
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.about-feature-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-lighter);
    border-radius: 50%;
    color: var(--primary-text);
    flex-shrink: 0;
}

.about-feature span {
    font-size: 0.875rem;
    font-weight: 500;
}

/* ===== DRINKS ===== */
.drinks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.drink-card {
    background: #fff;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary);
}

.drink-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--secondary);
}

.drink-card .price {
    font-family: 'SF Pro Display', 'SF Pro', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.125rem;
    color: var(--primary-text);
    margin-bottom: 1rem;
}

.drink-card p {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.drink-card .pairing {
    font-size: 0.8125rem;
    color: var(--text-light);
    font-style: italic;
    padding-top: 1rem;
    border-top: 1px solid var(--border-light);
}

/* ===== CONTATO ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-info h3 {
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-lighter);
    border-radius: 50%;
    color: var(--primary-text);
    flex-shrink: 0;
}

.contact-item-content h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.contact-item-content p,
.contact-item-content a {
    color: var(--text-muted);
    font-size: 0.9375rem;
}

.contact-map {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    aspect-ratio: 16/10;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ===== CTA SECTION ===== */
.cta-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(165deg, rgba(122, 90, 30, 0.92) 0%, rgba(79, 56, 24, 0.95) 52%, rgba(58, 42, 18, 0.96) 100%);
    color: rgba(255, 248, 237, 0.95);
    text-align: center;
    padding: 5.5rem 1.5rem;
    border-top: 1px solid rgba(255, 238, 205, 0.22);
    border-bottom: 1px solid rgba(255, 238, 205, 0.16);
    box-shadow: inset 0 1px 0 rgba(255, 241, 214, 0.12), inset 0 -1px 0 rgba(255, 241, 214, 0.08);
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 10%, rgba(196, 138, 58, 0.22), transparent 42%),
        radial-gradient(circle at 85% 0%, rgba(191, 161, 90, 0.2), transparent 46%);
    pointer-events: none;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    color: #F2D49C;
    margin-bottom: 1.1rem;
    letter-spacing: -0.01em;
}

.cta-section p {
    max-width: 720px;
    margin: 0 auto 2rem;
    color: rgba(233, 223, 201, 0.92);
    line-height: 1.8;
}

.cta-section .btn-primary {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background: linear-gradient(140deg, #D39A4A 0%, #B57D33 46%, #7A5A1E 100%);
    color: #FFF8ED;
    border: 1px solid rgba(255, 238, 205, 0.7);
    border-radius: 999px;
    padding: 1rem 2.3rem;
    text-transform: none;
    letter-spacing: 0.2px;
    font-weight: 600;
    text-shadow: 0 1px 1px rgba(58, 42, 18, 0.45);
    box-shadow:
        0 10px 24px rgba(58, 42, 18, 0.42),
        inset 0 1px 0 rgba(255, 241, 214, 0.35);
}

.cta-section .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 120%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: goldButtonShimmer 3.2s infinite;
    pointer-events: none;
}

.cta-section .btn-primary > * {
    position: relative;
    z-index: 1;
}

.cta-section .btn-primary svg {
    width: 18px;
    height: 18px;
}

.cta-section .btn-primary:hover {
    background: linear-gradient(140deg, #E0A856 0%, #C48A3A 48%, #8C6526 100%);
    color: #FFF8ED;
    border-color: rgba(255, 244, 224, 0.8);
    box-shadow:
        0 12px 26px rgba(58, 42, 18, 0.48),
        inset 0 1px 0 rgba(255, 246, 229, 0.4);
}

/* ===== FOOTER ===== */
.site-footer {
    --footer-primary: #7A5A1E;
    --footer-secondary: #C48A3A;
    --footer-neutral: #E9DFC9;
    --footer-dark: #3A2A12;
    --footer-accent: #BFA15A;

    position: relative;
    overflow: hidden;
    background: linear-gradient(165deg, rgba(122, 90, 30, 0.96) 0%, rgba(79, 56, 24, 0.97) 50%, rgba(58, 42, 18, 0.98) 100%);
    color: rgba(233, 223, 201, 0.88);
    padding-top: 4.5rem;
    border-top: 1px solid rgba(191, 161, 90, 0.5);
}

.site-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 8% 12%, rgba(196, 138, 58, 0.2), transparent 42%),
        radial-gradient(circle at 88% -10%, rgba(191, 161, 90, 0.22), transparent 45%);
    pointer-events: none;
}

.site-footer > * {
    position: relative;
    z-index: 1;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.75rem;
}

.footer-brand {
    max-width: 320px;
}

.footer-logo img {
    height: 64px;
    width: auto;
    margin-bottom: 1.1rem;
    filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.35));
}

.footer-tagline {
    font-size: 0.875rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
    color: rgba(233, 223, 201, 0.9);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.site-footer .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(233, 223, 201, 0.12);
    border: 1px solid rgba(191, 161, 90, 0.45);
    border-radius: 50%;
    color: rgba(255, 248, 237, 0.95);
    transition: all 0.3s ease;
}

.site-footer .social-link:hover {
    background: var(--footer-secondary);
    color: var(--footer-dark);
    border-color: var(--footer-secondary);
    transform: translateY(-2px);
}

.footer-links h4,
.footer-hours h4,
.footer-contact h4 {
    color: var(--footer-accent);
    font-size: 1rem;
    font-family: 'SF Pro Text', 'SF Pro', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(233, 223, 201, 0.88);
    font-size: 0.9375rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

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

.hours-list li {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    padding: 0.42rem 0;
    border-bottom: 1px solid rgba(233, 223, 201, 0.17);
}

.hours-list .day {
    text-transform: capitalize;
    color: rgba(233, 223, 201, 0.88);
}

.hours-list .time {
    color: rgba(255, 248, 237, 0.95);
    font-weight: 500;
}

.footer-contact address {
    font-style: normal;
}

.footer-contact .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: rgba(233, 223, 201, 0.9);
}

.footer-contact .contact-item svg {
    flex-shrink: 0;
    margin-top: 2px;
    opacity: 0.95;
    color: var(--footer-accent);
}

.footer-contact a {
    color: rgba(255, 248, 237, 0.95);
}

.footer-contact a:hover {
    color: var(--footer-secondary);
}

.footer-bottom {
    margin-top: 3rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(191, 161, 90, 0.32);
    background: rgba(0, 0, 0, 0.08);
}

.footer-bottom .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.8125rem;
    margin: 0;
    color: rgba(233, 223, 201, 0.78);
}

.footer-bottom .credits a {
    color: var(--footer-accent);
}

.footer-bottom .credits a:hover {
    color: #fff;
}

@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 2rem;
    }

    .footer-brand {
        max-width: none;
    }
}

@media (max-width: 640px) {
    .site-footer {
        padding-top: 3.25rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 1.75rem;
        padding: 0 1.25rem;
    }

    .footer-bottom .footer-container {
        justify-content: center;
        text-align: center;
    }
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 58px;
    height: 58px;
    background: linear-gradient(140deg, #D39A4A 0%, #B57D33 46%, #7A5A1E 100%);
    color: #FFF8ED;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 10px 24px rgba(58, 42, 18, 0.42),
        inset 0 1px 0 rgba(255, 241, 214, 0.35);
    z-index: 999;
    border: 1px solid rgba(255, 238, 205, 0.7);
}

.whatsapp-float:hover {
    background: linear-gradient(140deg, #D39A4A 0%, #B57D33 46%, #7A5A1E 100%);
    color: #FFF8ED;
    border-color: rgba(255, 238, 205, 0.7);
    box-shadow:
        0 10px 24px rgba(58, 42, 18, 0.42),
        inset 0 1px 0 rgba(255, 241, 214, 0.35);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    width: 58px;
    height: 58px;
    background: linear-gradient(140deg, #D39A4A 0%, #B57D33 46%, #7A5A1E 100%);
    color: #FFF8ED;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 10px 24px rgba(58, 42, 18, 0.42),
        inset 0 1px 0 rgba(255, 241, 214, 0.35);
    z-index: 999;
    border: 1px solid rgba(255, 238, 205, 0.7);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(0);
    background: linear-gradient(140deg, #D39A4A 0%, #B57D33 46%, #7A5A1E 100%);
    color: #FFF8ED;
    border-color: rgba(255, 238, 205, 0.7);
    box-shadow:
        0 10px 24px rgba(58, 42, 18, 0.42),
        inset 0 1px 0 rgba(255, 241, 214, 0.35);
}

.whatsapp-float:focus-visible,
.back-to-top:focus-visible {
    outline: 2px solid rgba(255, 244, 224, 0.9);
    outline-offset: 3px;
}

@media (max-width: 640px) {
    .whatsapp-float,
    .back-to-top {
        width: 52px;
        height: 52px;
        border-radius: 14px;
        bottom: 1rem;
    }

    .whatsapp-float { right: 1rem; }
    .back-to-top { left: 1rem; }
}

/* ===== LINK DA BIO ===== */
.bio-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--background-alt) 0%, var(--background) 100%);
}

.bio-container {
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.bio-logo {
    width: 180px;
    margin: 0 auto 1.5rem;
}

.bio-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.bio-subtitle {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.bio-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bio-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-weight: 500;
    transition: all 0.3s ease;
}

.bio-link:hover {
    border-color: var(--primary);
    background: var(--primary-lighter);
    color: var(--primary-text);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.bio-link.highlight {
    background: var(--secondary);
    border-color: var(--secondary);
    color: #fff;
}

.bio-link.highlight:hover {
    background: var(--secondary-hover);
    border-color: var(--secondary-hover);
    color: #fff;
}

.bio-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.bio-social a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary);
    color: #fff;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.bio-social a:hover {
    background: var(--primary);
    color: var(--secondary);
    transform: scale(1.1);
}

/* ===== GALERIA MASONRY ===== */
.gallery-grid {
    columns: 3;
    column-gap: 1rem;
}

.gallery-item {
    position: relative;
    break-inside: avoid;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

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

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.3s ease;
}

.gallery-item:hover::after {
    background: rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .gallery-grid {
        columns: 2;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        columns: 1;
    }
}

/* ===== ANIMAÇÕES AO SCROLL ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== LOADING STATE ===== */
.loading {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .section {
        padding: 3rem 0;
    }

    .menu-item {
        flex-direction: column;
    }

    .menu-item-image {
        width: 100%;
        height: 200px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .about-images {
        columns: 1;
    }

    .features {
        margin-top: -2rem;
    }
}

/* ===== TEXTURE OVERLAY (Opcional para aesthetic) ===== */
.texture-overlay {
    position: relative;
}

.texture-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
}
