/* RESET E CONFIGURAÇÕES GLOBAIS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    color: #1a1a1a;
    line-height: 1.6;
    background-color: #ffffff;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

h1, h2, h3, h4 {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #1A2D4D;
}

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

/* SECTION TAGS */
.section-tag {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #C5A059;
    display: block;
    margin-bottom: 15px;
    font-weight: 500;
}

.section-tag.light {
    color: #C5A059;
}

/* HEADER */
.header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 12px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(197, 160, 89, 0.1);
    transition: all 0.3s ease;
}

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

/* LOGO */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 1001;
}

.logo-icon {
    width: 35px;
    height: 35px;
    background: #1A2D4D;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(26, 45, 77, 0.2);
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

.logo:hover .logo-icon {
    transform: rotate(90deg);
}

.logo-dot {
    width: 14px;
    height: 14px;
    background: #C5A059;
    border-radius: 4px;
    transform: rotate(-45deg);
    box-shadow: 0 0 15px rgba(197, 160, 89, 0.5);
}

.logo-text {
    font-size: 24px;
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    color: #1A2D4D;
    letter-spacing: 1px;
}

/* MENU MOBILE */
.menu-mobile {
    display: none;
    font-size: 28px;
    color: #1A2D4D;
    cursor: pointer;
    z-index: 1001;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    background: rgba(197, 160, 89, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.menu-mobile:hover,
.menu-mobile:active {
    background: rgba(197, 160, 89, 0.2);
}

.menu-mobile i {
    transition: transform 0.3s ease;
}

.menu-mobile.active i {
    transform: rotate(90deg);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu li a {
    color: #1A2D4D;
    text-decoration: none;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    position: relative;
    display: block;
    white-space: nowrap;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #C5A059, transparent);
    transition: width 0.3s;
}

.nav-menu li a:hover::after {
    width: 70%;
}

.nav-menu li a:hover {
    color: #C5A059;
}

.btn-reserva {
    border: 1px solid #1A2D4D;
    border-radius: 30px;
    padding: 8px 22px !important;
    background: transparent;
    transition: all 0.3s;
}

.btn-reserva:hover {
    background: #1A2D4D;
    color: #ffffff !important;
}

.btn-reserva:hover::after {
    display: none;
}

/* ===== HERO SECTION - DESIGN PREMIUM ===== */
.hero {
    min-height: 100vh;
    height: auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 60px;
    overflow: hidden;
    padding: 80px 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('img/restaurante.png') center/cover no-repeat;
    filter: brightness(0.6);
    z-index: -2;
    transform: scale(1.1);
    animation: slow-zoom 20s infinite alternate;
}

@keyframes slow-zoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 45, 77, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 1200px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-tag {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: rgba(197, 160, 89, 0.9);
    display: block;
    margin-bottom: 20px;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.hero-content h1 {
    font-size: clamp(4rem, 15vw, 7rem);
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero-content h1 span {
    color: #C5A059;
    font-weight: 300;
    font-size: 0.5em;
    display: block;
    letter-spacing: 8px;
    margin-top: 5px;
}

.hero-description {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    margin-bottom: 40px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    letter-spacing: 0.5px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin: 40px 0 45px;
}

.hero-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.hero-feature i {
    font-size: 1.5rem;
    color: #C5A059;
    background: rgba(255, 255, 255, 0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(197, 160, 89, 0.3);
    backdrop-filter: blur(5px);
    margin-bottom: 5px;
}

.hero-feature span {
    font-size: 0.9rem;
    color: #ffffff;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-feature strong {
    font-size: 1.1rem;
    color: #C5A059;
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0 10px;
    margin-top: 20px;
}

.btn-hero-primary {
    padding: 14px 35px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    letter-spacing: 2px;
    transition: all 0.3s;
    font-size: 0.85rem;
    min-width: 180px;
    text-align: center;
    background: #C5A059;
    color: #1A2D4D;
    border: none;
    text-transform: uppercase;
}

.btn-hero-primary:hover {
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.btn-hero-secondary {
    padding: 14px 35px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    letter-spacing: 2px;
    transition: all 0.3s;
    font-size: 0.85rem;
    min-width: 180px;
    text-align: center;
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #C5A059;
    transform: translateY(-2px);
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    text-align: center;
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 2;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.hero-scroll:hover {
    opacity: 1;
}

.hero-scroll span {
    display: block;
    font-size: 0.7rem;
    margin-bottom: 8px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* SOBRE SECTION */
.sobre {
    padding: 80px 0;
    background: #ffffff;
}

.sobre-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.sobre-texto h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 20px;
    color: #1A2D4D;
    line-height: 1.1;
}

.sobre-texto .destaque {
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    color: #C5A059;
    font-weight: 400;
    margin-bottom: 15px;
}

.sobre-texto p {
    color: #4a4a4a;
    margin-bottom: 25px;
    font-size: clamp(0.95rem, 2.5vw, 1.1rem);
    line-height: 1.7;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
    padding: 15px 10px;
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.1) 0%, rgba(26, 45, 77, 0.1) 100%);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(197, 160, 89, 0.2);
}

.stat-number {
    display: block;
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    font-weight: 700;
    color: #1A2D4D;
    font-family: 'Syne', sans-serif;
}

.stat-label {
    font-size: 0.8rem;
    color: #666;
}

/* MEDIA CONTAINER */
.media-container {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(26, 45, 77, 0.2);
    cursor: pointer;
    aspect-ratio: 3/3;
}

.chef-image,
.chef-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease;
}

.chef-image {
    opacity: 1;
    z-index: 1;
}

.chef-image.hidden {
    opacity: 0;
}

.chef-video {
    opacity: 0;
    z-index: 2;
    pointer-events: none;
    background: #000;
}

.chef-video.playing {
    opacity: 1;
    pointer-events: auto;
}

.media-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 45, 77, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(2px);
    z-index: 3;
    pointer-events: none;
}

.media-container:hover .media-overlay,
.media-container:active .media-overlay {
    opacity: 1;
}

.media-overlay i {
    font-size: clamp(2.5rem, 8vw, 4rem);
    color: #C5A059;
    margin-bottom: 10px;
    animation: pulse 2s infinite;
}

.media-overlay span {
    color: white;
    font-size: clamp(0.9rem, 3vw, 1.2rem);
    letter-spacing: 2px;
    font-weight: 600;
    text-transform: uppercase;
    border-bottom: 2px solid #C5A059;
    padding-bottom: 8px;
    text-align: center;
    max-width: 90%;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* CARDÁPIO */
.cardapio {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
}

.cardapio h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 40px;
    color: #1A2D4D;
}

.pratos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.prato-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px -10px rgba(26, 45, 77, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(197, 160, 89, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.prato-card:hover,
.prato-card:active {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -15px rgba(26, 45, 77, 0.2);
}

.prato-imagem {
    position: relative;
    padding-top: 75%;
    overflow: hidden;
}

.prato-imagem img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.prato-card:hover .prato-imagem img {
    transform: scale(1.05);
}

.prato-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(197, 160, 89, 0.9);
    backdrop-filter: blur(4px);
    color: #1A2D4D;
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 2;
}

.prato-info {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.prato-info h3 {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    margin-bottom: 10px;
    color: #1A2D4D;
    font-weight: 700;
}

.prato-info p {
    color: #6a6a6a;
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.5;
    flex: 1;
}

.prato-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    border-top: 1px dashed rgba(197, 160, 89, 0.2);
    padding-top: 15px;
}

.prato-footer .preco {
    font-size: clamp(1.3rem, 4vw, 1.6rem);
    font-weight: 700;
    color: #1A2D4D;
}

.prato-footer .preco::before {
    content: 'R$ ';
    font-size: 0.9rem;
    font-weight: 400;
    color: #C5A059;
}

.prato-order {
    width: 40px;
    height: 40px;
    background: #1A2D4D;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.prato-order:hover,
.prato-order:active {
    background: #C5A059;
    transform: rotate(90deg);
    border-color: #1A2D4D;
    color: #1A2D4D;
}

/* LOCALIZAÇÃO */
.localizacao {
    padding: 80px 0;
    background: #ffffff;
}

.localizacao h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 40px;
    color: #1A2D4D;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.info-card {
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    padding: 30px 20px;
    border-radius: 18px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid rgba(197, 160, 89, 0.1);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.info-card:hover,
.info-card:active {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(26, 45, 77, 0.1);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: #1A2D4D;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s;
}

.info-card:hover .info-icon {
    background: #C5A059;
    transform: scale(1.1);
}

.info-icon i {
    font-size: 1.8rem;
    color: #ffffff;
}

.info-card h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #1A2D4D;
}

.info-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

.telefone {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1A2D4D;
    margin-bottom: 8px;
}

.btn-whatsapp {
    display: inline-block;
    background: #25D366;
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s;
    border: none;
    -webkit-appearance: none;
}

.btn-whatsapp:hover,
.btn-whatsapp:active {
    background: #128C7E;
    transform: scale(1.05);
}

.mapa-wrapper {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(26, 45, 77, 0.15);
    border: 1px solid rgba(197, 160, 89, 0.2);
    margin-top: 40px;
}

.mapa-wrapper iframe {
    width: 100%;
    height: 350px;
    border: 0;
    display: block;
}

/* FORMAS DE PAGAMENTO */
.pagamento-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(197, 160, 89, 0.2);
    margin: 40px 0;
}

.pagamento-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 100px;
}

.pagamento-item i {
    font-size: 2rem;
    color: #1A2D4D;
}

.pagamento-item span {
    font-weight: 500;
    color: #1A2D4D;
}

/* RESERVA */
.reserva {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
}

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

.section-header h2 {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    color: #1A2D4D;
    margin-bottom: 10px;
}

.section-description {
    color: #666;
    font-size: 1rem;
    max-width: 500px;
    margin: 0 auto;
    padding: 0 15px;
}

.reserva-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Card de Informações */
.reserva-info-card {
    background: #1A2D4D;
    border-radius: 24px;
    padding: 30px 25px;
    color: white;
    box-shadow: 0 20px 40px rgba(26, 45, 77, 0.2);
    position: relative;
    overflow: hidden;
}

.reserva-info-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.info-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.info-card-header i {
    font-size: 2rem;
    color: #C5A059;
}

.info-card-header h3 {
    color: white;
    font-size: 1.5rem;
    margin: 0;
}

.info-card-body {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.info-item i {
    font-size: 1.3rem;
    color: #C5A059;
    width: 25px;
    margin-top: 2px;
}

.info-item div {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.info-item strong {
    font-size: 0.95rem;
    color: #C5A059;
    margin-bottom: 2px;
}

.info-item span {
    color: #e0e0e0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.btn-whatsapp-large {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25D366;
    color: white;
    text-decoration: none;
    padding: 14px;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid transparent;
    font-size: 1rem;
    -webkit-appearance: none;
}

.btn-whatsapp-large:hover,
.btn-whatsapp-large:active {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

/* Formulário de Reserva */
.reserva-form-card {
    background: white;
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(197, 160, 89, 0.2);
}

.reserva-form-card h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: #1A2D4D;
    text-align: center;
}

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

.form-group {
    position: relative;
    margin-bottom: 5px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #1A2D4D;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 40px 12px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s;
    background: #f8f8f8;
    -webkit-appearance: none;
    appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #C5A059;
    background: white;
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.1);
}

.form-group i {
    position: absolute;
    right: 12px;
    top: 38px;
    color: #C5A059;
    font-size: 1rem;
    pointer-events: none;
}

.form-group textarea {
    height: 90px;
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
}

.checkbox-group input {
    width: 18px;
    height: 18px;
    cursor: pointer;
    -webkit-appearance: checkbox;
    appearance: checkbox;
}

.checkbox-group label {
    color: #1A2D4D;
    font-size: 0.9rem;
    cursor: pointer;
}

.btn-reservar {
    width: 100%;
    background: #1A2D4D;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    -webkit-appearance: none;
}

.btn-reservar:hover,
.btn-reservar:active {
    background: #C5A059;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.2);
}

.form-note {
    text-align: center;
    margin-top: 12px;
    font-size: 0.8rem;
    color: #888;
}

/* FOOTER */
.footer {
    background: #0a0a0a;
    color: #ffffff;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 1px;
}

.footer-logo-icon {
    width: 35px;
    height: 35px;
    background: #C5A059;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(45deg);
}

.footer-logo-dot {
    width: 14px;
    height: 14px;
    background: #1A2D4D;
    border-radius: 4px;
    transform: rotate(-45deg);
}

.footer-brand p {
    color: #b0b0b0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-links h4 {
    color: #C5A059;
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-family: 'Space Grotesk', sans-serif;
}

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

.footer-links li {
    color: #b0b0b0;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.footer-links li i {
    color: #C5A059;
    width: 18px;
}

.social-icons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.social-icons a {
    color: #ffffff;
    font-size: 1.2rem;
    transition: all 0.3s;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: 1px solid rgba(197, 160, 89, 0.2);
}

.social-icons a:hover,
.social-icons a:active {
    background: #C5A059;
    color: #1A2D4D;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #b0b0b0;
    font-size: 0.9rem;
}

.footer-bottom i {
    color: #C5A059;
    margin: 0 3px;
}

/* WHATSAPP FLOATING BUTTON */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #ffffff;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
}

.whatsapp-float:hover,
.whatsapp-float:active {
    transform: scale(1.1);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

.whatsapp-float i {
    position: relative;
    z-index: 2;
}

/* ANIMAÇÕES */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-15px) translateX(-50%);
    }
    60% {
        transform: translateY(-8px) translateX(-50%);
    }
}

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

/* MEDIA QUERIES */
@media (max-width: 992px) {
    .pratos-grid,
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .reserva-wrapper {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .pagamento-grid {
        gap: 20px;
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .menu-mobile {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 25px;
        z-index: 1000;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 80px 20px 40px;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li a {
        font-size: 1.3rem;
        padding: 15px 25px;
        width: auto;
    }
    
    .nav-menu li a.btn-reserva {
        margin-top: 10px;
        padding: 12px 30px !important;
        font-size: 1.1rem;
    }
    
    .hero-content h1 {
        font-size: clamp(3rem, 12vw, 4.5rem);
    }
    
    .hero-content h1 span {
        font-size: 0.4em;
        letter-spacing: 6px;
    }
    
    .hero-features {
        gap: 20px;
        margin: 30px 0 35px;
    }
    
    .hero-feature i {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .hero-feature span {
        font-size: 0.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        max-width: 250px;
        padding: 12px 25px;
    }
    
    .sobre-grid,
    .pratos-grid,
    .info-grid,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .reserva-info-card,
    .reserva-form-card {
        padding: 25px 20px;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .mapa-wrapper iframe {
        height: 300px;
    }
    
    .footer-grid {
        gap: 30px;
    }
    
    .footer-brand {
        text-align: center;
        align-items: center;
    }
    
    .footer-links h4 {
        text-align: center;
    }
    
    .footer-links li {
        justify-content: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .pagamento-item {
        min-width: 80px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-content h1 span {
        font-size: 0.35em;
        letter-spacing: 4px;
    }
    
    .hero-tag {
        font-size: 0.7rem;
        letter-spacing: 4px;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .hero-feature i {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .hero-feature strong {
        font-size: 1rem;
    }
    
    .hero-feature span {
        font-size: 0.75rem;
    }
    
    .section-tag {
        font-size: 0.8rem;
        letter-spacing: 3px;
    }
    
    .prato-card {
        margin-bottom: 0;
    }
    
    .prato-info {
        padding: 15px;
    }
    
    .prato-info h3 {
        font-size: 1.2rem;
    }
    
    .prato-footer .preco {
        font-size: 1.3rem;
    }
    
    .info-card {
        padding: 25px 15px;
    }
    
    .info-card h4 {
        font-size: 1.2rem;
    }
    
    .telefone {
        font-size: 1rem;
    }
    
    .btn-whatsapp {
        padding: 8px 18px;
        font-size: 0.85rem;
    }
    
    .reserva-form-card h3 {
        font-size: 1.3rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 35px 10px 10px;
        font-size: 0.9rem;
    }
    
    .form-group i {
        top: 35px;
        font-size: 0.9rem;
    }
    
    .checkbox-group label {
        font-size: 0.85rem;
    }
    
    .btn-reservar {
        padding: 12px;
        font-size: 0.95rem;
    }
    
    .footer-logo {
        font-size: 22px;
    }
    
    .footer-logo-icon {
        width: 30px;
        height: 30px;
    }
    
    .footer-logo-dot {
        width: 12px;
        height: 12px;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
        bottom: 15px;
        right: 15px;
    }
    
    .pagamento-grid {
        gap: 15px;
        padding: 15px;
    }
    
    .pagamento-item {
        min-width: 70px;
    }
    
    .pagamento-item i {
        font-size: 1.5rem;
    }
    
    .pagamento-item span {
        font-size: 0.8rem;
    }
}

/* Utilitários */
.no-scroll {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

/* Melhorias de toque */
button,
a,
input,
select,
textarea {
    -webkit-tap-highlight-color: rgba(197, 160, 89, 0.2);
}

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

/* iOS specific */
@supports (-webkit-touch-callout: none) {
    .header {
        padding-top: env(safe-area-inset-top);
    }
    
    .hero {
        margin-top: calc(70px + env(safe-area-inset-top));
    }
    
    .whatsapp-float {
        bottom: calc(20px + env(safe-area-inset-bottom));
    }
}

.btn-ver-ar {
    appearance: none;
    border: 0;
    border-radius: 999px;
    background: #1A2D4D;
    color: #fff;
    padding: 10px 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font: 600 0.78rem 'Space Grotesk', sans-serif;
    letter-spacing: 0.02em;
    transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.btn-ver-ar:hover,
.btn-ver-ar:focus-visible {
    background: #C5A059;
    color: #1A2D4D;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(26, 45, 77, 0.2);
    outline: none;
}

/* EXPERIÊNCIA NA MESA */
.ar-modal {
    position: fixed;
    z-index: 2000;
    inset: 0;
    display: none;
    flex-direction: column;
    justify-content: flex-end;
    background: #080d16;
    color: #fff;
}

.ar-modal.is-open { display: flex; }

.ar-camera { position: relative; flex: 1; overflow: hidden; background: #18243a; }

#ar-camera-video,
.ar-camera-fallback {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

#ar-camera-video { z-index: 0; object-fit: cover; }

.ar-camera-fallback {
    display: none;
    place-items: center;
    align-content: center;
    gap: 12px;
    padding: 30px;
    text-align: center;
    background: radial-gradient(circle at 50% 40%, #2c4162, #101827 70%);
    color: rgba(255,255,255,.85);
}

.ar-camera-fallback i { font-size: 2rem; color: #C5A059; }
.ar-camera-fallback.is-visible { display: grid; }

.ar-hud { position: absolute; z-index: 6; top: 22px; left: 0; width: 100%; text-align: center; pointer-events: none; }
.ar-hud p { margin: 0 0 5px; color: #fff; font-size: .72rem; font-weight: 700; letter-spacing: .22em; }
.ar-hud span { font-size: .76rem; color: rgba(255,255,255,.8); }

.ar-prato {
    position: absolute;
    z-index: 5;
    left: 50%;
    bottom: 12%;
    width: min(78vw, 420px);
    max-height: 48vh;
    object-fit: contain;
    transform: translateX(-50%) perspective(500px) rotateX(6deg);
    filter: drop-shadow(0 22px 18px rgba(0,0,0,.46));
    animation: ar-float 3.5s ease-in-out infinite;
    user-select: none;
    display: block;
    visibility: visible;
    opacity: 1;
}

.ar-shadow { position: absolute; z-index: 0; left: 50%; bottom: 11%; width: min(55vw, 300px); height: 30px; transform: translateX(-50%); background: rgba(0,0,0,.42); filter: blur(15px); border-radius: 50%; }
.ar-close { position: absolute; z-index: 7; top: 18px; right: 18px; width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; background: rgba(0,0,0,.35); color: #fff; font-size: 1.1rem; cursor: pointer; }
.ar-caption { display: flex; align-items: center; gap: 12px; min-height: 84px; padding: 14px 24px max(14px, env(safe-area-inset-bottom)); background: #101a2b; }
.ar-caption i { color: #C5A059; font-size: 1.4rem; }
.ar-caption strong, .ar-caption span { display: block; }
.ar-caption strong { font-size: 1rem; }
.ar-caption span { margin-top: 3px; color: rgba(255,255,255,.68); font-size: .78rem; }

@keyframes ar-float { 50% { transform: translateX(-50%) perspective(500px) rotateX(6deg) translateY(-9px); } }

/* PRODUTO TESTE */
.produto-teste {
    padding: 88px 0;
    overflow: hidden;
    background: #142643;
    color: #fff;
}

.produto-teste-grid {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(300px, 1.1fr);
    align-items: center;
    gap: clamp(30px, 7vw, 100px);
}

.produto-teste-copy h2 { margin: 12px 0 18px; color: #fff; font-size: clamp(2.2rem, 5vw, 3.8rem); line-height: 1.05; }
.produto-teste-copy > p { max-width: 470px; margin-bottom: 26px; color: rgba(255,255,255,.75); font-size: 1.04rem; line-height: 1.65; }
.produto-teste .section-tag { color: #D9BD7D; }
.btn-ar-destaque { padding: 14px 20px; background: #C5A059; color: #142643; font-size: .9rem; }
.btn-ar-destaque:hover, .btn-ar-destaque:focus-visible { background: #fff; color: #142643; }
.produto-teste-copy small { display: block; margin-top: 18px; color: rgba(255,255,255,.56); font-size: .78rem; }
.produto-teste-copy small i { margin-right: 6px; color: #C5A059; }

.produto-teste-preview { position: relative; min-height: 340px; display: grid; place-items: center; }
.produto-teste-preview::after { content: ''; position: absolute; bottom: 8%; left: 17%; width: 70%; height: 11%; border-radius: 50%; background: rgba(0,0,0,.4); filter: blur(22px); }
.produto-teste-brilho { position: absolute; width: 340px; height: 340px; border-radius: 50%; background: radial-gradient(circle, rgba(197,160,89,.42), transparent 68%); filter: blur(5px); }
.produto-teste-preview img { position: relative; z-index: 1; width: min(100%, 620px); max-height: 440px; object-fit: contain; filter: drop-shadow(0 25px 22px rgba(0,0,0,.4)); animation: produto-flutuar 4s ease-in-out infinite; }

@keyframes produto-flutuar { 50% { transform: translateY(-12px); } }

@media (max-width: 768px) {
    .produto-teste { padding: 65px 0; }
    .produto-teste-grid { grid-template-columns: 1fr; }
    .produto-teste-preview { min-height: 260px; order: -1; }
    .produto-teste-preview img { max-height: 300px; }
}

/* INTERFACE DO PROTÓTIPO 3D EM AR */
.ar3d-ui { display: none; position: fixed; inset: 0; z-index: 2100; pointer-events: none; color: #fff; }
.ar3d-ui.is-open { display: block; }
.ar3d-instruction { position: absolute; top: max(24px, env(safe-area-inset-top)); left: 50%; transform: translateX(-50%); width: min(86vw, 390px); display: flex; align-items: center; justify-content: center; gap: 9px; padding: 11px 15px; border: 1px solid rgba(255,255,255,.24); border-radius: 999px; background: rgba(10,18,31,.58); backdrop-filter: blur(12px); text-align: center; font: 600 .76rem 'Space Grotesk', sans-serif; line-height: 1.35; }
.ar3d-instruction i, .ar3d-badge i { color: #e0bb71; }
.ar3d-close { pointer-events: auto; position: absolute; right: 18px; top: max(18px, env(safe-area-inset-top)); width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; background: rgba(10,18,31,.58); color: #fff; font-size: 1.1rem; }
.ar3d-badge { position: absolute; bottom: max(22px, env(safe-area-inset-bottom)); left: 50%; transform: translateX(-50%); padding: 8px 12px; border-radius: 999px; background: rgba(10,18,31,.58); backdrop-filter: blur(10px); font: 600 .7rem 'Space Grotesk', sans-serif; white-space: nowrap; }
.ar3d-ui canvas { position: fixed; inset: 0; width: 100%; height: 100%; }
