:root {
    /* Color Palette - Premium Parada do Chef */
    --color-cream: #FAF7EF;
    --color-white: #FFFFFF;
    --color-red: #CA1A1A;
    --color-red-dark: #671D1D;
    --color-gold: #FEC227;
    --color-green: #5FA25F;
    --color-ink: #1A1A1A;
    --color-muted: #62584d;
    --color-line: #E5D8C7;

    /* Typography */
    --font-display: 'Marcellus', serif;
    --font-body: 'Manrope', sans-serif;

    /* Spacing */
    --section-padding: 80px 0;
    --container-width: 1200px;
}

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

body {
    font-family: var(--font-body);
    color: var(--color-ink);
    background-color: var(--color-cream);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
}

/* UI Components */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

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

.btn-primary:hover {
    background-color: var(--color-red-dark);
}

.btn-secondary {
    background-color: transparent;
    border: 1px solid var(--color-line);
    color: var(--color-ink);
}

.btn-secondary:hover {
    background-color: var(--color-white);
    border-color: var(--color-gold);
}

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

.section-title span {
    color: var(--color-red);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}

.section-title h2 {
    font-size: clamp(2rem, 5vw, 3rem);
}

/* Header */
header {
    height: 90px;
    display: flex;
    align-items: center;
    background-color: rgba(250, 247, 239, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--color-line);
}

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

/* Responsive */
@media (max-width: 1024px) {
    header {
        height: 70px;
    }

    .logo img {
        width: 40px;
        height: 40px;
    }

    .logo span {
        font-size: 1.2rem;
    }

    .nav-links {
        position: fixed;
        right: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--color-white);
        width: 100%;
        height: calc(100vh - 70px);
        gap: 0;
        transition: 0.4s ease-in-out;
        z-index: 999;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        padding-top: 20px;
        align-items: center;
        overflow-y: auto;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        padding: 20px;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid var(--color-line);
        font-size: 1.1rem;
    }

    .mobile-menu-toggle {
        display: block !important;
        cursor: pointer;
    }

    .nav-container .btn-primary {
        display: none;
        /* Esconde no header mobile para não poluir */
    }

    .nav-links .btn-mobile {
        display: block !important;
        margin: 30px auto;
        width: 80%;
    }

    .hero-grid,
    .about-grid,
    .specials-banner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-actions,
    .social-links {
        justify-content: center;
    }

    .hero-stats {
        position: relative;
        right: 0;
        bottom: auto;
        margin-top: 20px;
        justify-content: center;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.logo img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.logo span {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-ink);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 600;
    font-size: 0.95rem;
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.8rem;
    color: var(--color-red);
}

.btn-mobile {
    display: none;
}

.nav-links a:hover {
    color: var(--color-red);
}

/* Hero Section */
.hero {
    padding: 60px 0 80px;
    background: radial-gradient(circle at top right, rgba(254, 194, 39, 0.05), transparent);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.badge {
    color: var(--color-red);
    background-color: rgba(202, 26, 26, 0.08);
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
    display: inline-block;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.2rem);
    margin-bottom: 24px;
}

.hero p {
    font-size: 1.15rem;
    color: var(--color-muted);
    max-width: 52ch;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

/* Google Badge from V2 */
.google-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(26, 26, 26, 0.05);
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.stars-v2 {
    color: var(--color-gold);
    font-size: 1.1rem;
}

.google-badge strong {
    font-size: 0.85rem;
    font-weight: 700;
}

.hero-visual-content {
    position: relative;
    width: 100%;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
    border: 1px solid var(--color-line);
}

.hero-slides-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

.hero-slide.active {
    opacity: 1;
}

.hero-image-main {
    display: none;
    /* Substituído pelas slides */
}

.hero-stats {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 30px;
    border: 1px solid var(--color-line);
}

.stat-item strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--color-red);
}

.stat-item span {
    font-size: 0.75rem;
    color: var(--color-muted);
    text-transform: uppercase;
    font-weight: 700;
}

/* About Section */
.about {
    padding: var(--section-padding);
}

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

.about-image {
    position: relative;
    width: 100%;
}

.about-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--color-line);
}

.about-slides-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

.about-slide.active {
    opacity: 1;
}

.about-content p {
    margin-bottom: 20px;
    color: var(--color-muted);
}

.about-features {
    margin-top: 40px;
    display: grid;
    gap: 24px;
}

.feature {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--color-white);
    border-radius: 12px;
    border: 1px solid var(--color-line);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateX(10px);
}

.feature h3 {
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.feature p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Menu Highlight */
.menu-highlight {
    padding: var(--section-padding);
    background-color: var(--color-white);
}

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

.menu-card {
    background-color: var(--color-cream);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--color-line);
    transition: all 0.4s ease;
}

.menu-card img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.menu-card:hover img {
    transform: scale(1.15);
}

.menu-card .card-body {
    padding: 24px;
}

.menu-card h3 {
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.menu-card p {
    font-size: 0.9rem;
    color: var(--color-muted);
    margin-bottom: 15px;
}

.menu-card .price {
    font-weight: 800;
    color: var(--color-red);
    font-size: 1.2rem;
}

/* Specials Section */
.specials {
    padding: var(--section-padding);
}

.specials-banner {
    background: var(--color-white);
    border-radius: 32px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    border: 1px solid var(--color-line);
    min-height: 400px;
    /* Reduzi de 500px para 400px para ser mais compacto */
}

.specials-content {
    padding: 60px;
    /* Reduzi de 80px */
}

/* Selo Sucesso da Casa */
.badge-sucesso {
    display: inline-block;
    background: var(--color-red);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.1rem;
    margin-bottom: 20px;
    box-shadow: 0 10px 20px rgba(144, 40, 44, 0.2);
}

.specials-content span {
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    font-size: 0.8rem;
    margin-bottom: 15px;
    display: block;
}

.specials-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.specials-content p {
    margin-bottom: 30px;
    opacity: 0.8;
}

.specials-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Floating Reviews from V2 */
.reviews-v2 {
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), url('assets/assets-cardapio/isca-de-file-semente-de-mostarda-Restaurante-Em-Marilia.webp');
    background-attachment: fixed;
    background-size: cover;
    padding: 120px 0;
    color: var(--color-white);
}

.review-card-v2 {
    background: rgba(255, 255, 255, 0.05);
    padding: 60px;
    border-radius: 24px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.review-card-v2 p {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-style: italic;
    margin-bottom: 30px;
    line-height: 1.4;
}

.review-card-v2 strong {
    display: block;
    margin-top: 20px;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.review-card-v2 span {
    display: block;
    opacity: 0.6;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-top: 5px;
}

/* Footer */
footer {
    background-color: var(--color-ink);
    color: var(--color-white);
    padding: 80px 0 30px;
}

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

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand .logo span {
    color: var(--color-white);
}

.footer-brand p {
    opacity: 0.6;
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links a:hover {
    color: var(--color-gold);
    transform: translateY(-3px);
}

.social-links svg,
.social-links img {
    width: 24px;
    height: 24px;
    fill: currentColor;
    object-fit: contain;
}

/* WhatsApp Flutuante */
.whatsapp-float {
    position: fixed;
    width: 65px;
    height: 65px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    text-decoration: none;
    padding: 0;
    margin: 0;
    overflow: hidden;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-float img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float img {
        width: 32px;
        height: 32px;
    }
}

.footer-grid h3 {
    font-size: 1.3rem;
    margin-bottom: 24px;
    color: var(--color-gold);
}

.footer-grid p {
    opacity: 0.7;
    margin-bottom: 10px;
}

.link-map {
    color: var(--color-gold);
    font-size: 0.9rem;
    font-weight: 700;
}

.footer-bottom {
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-whatsapp-footer {
    display: none;
    /* Escondido por padrão */
}

.footer-bottom p {
    font-size: 0.85rem;
    opacity: 0.4;
}

/* Responsive */
@media (max-width: 1024px) {
    header {
        height: 70px;
    }

    .logo img {
        width: 40px;
        height: 40px;
    }

    .logo span {
        font-size: 1.2rem;
    }

    .nav-links {
        position: fixed;
        right: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--color-white);
        width: 100%;
        height: calc(100vh - 70px);
        gap: 0;
        transition: 0.4s ease-in-out;
        z-index: 999;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        padding-top: 20px;
        align-items: center;
        overflow-y: auto;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        padding: 20px;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid var(--color-line);
        font-size: 1.1rem;
    }

    .mobile-menu-toggle {
        display: block !important;
        cursor: pointer;
    }

    .nav-container .btn-primary {
        display: none;
    }

    .nav-links .btn-mobile {
        display: block !important;
        margin: 30px auto;
        width: 80%;
    }

    .hero-grid,
    .about-grid,
    .specials-banner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-actions,
    .social-links {
        justify-content: center;
    }

    .hero-stats {
        position: relative;
        right: 0;
        bottom: auto;
        margin-top: 20px;
        justify-content: center;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .btn-whatsapp-footer {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        background: #25D366;
        color: white;
        padding: 15px 30px;
        border-radius: 12px;
        font-weight: 700;
        text-decoration: none;
        margin-top: 20px;
        width: 100%;
        max-width: 300px;
        transition: transform 0.3s ease;
    }

    .btn-whatsapp-footer:active {
        transform: scale(0.95);
    }
}

/* Animations for Reveals */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease;
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

/* Pop-up Special Style */
.popup-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.popup-box {
    background: var(--color-white);
    padding: 60px;
    border-radius: 30px;
    max-width: 500px;
    width: 90%;
    position: relative;
    text-align: center;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--color-line);
}

.close-popup {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--color-ink);
}

.popup-tag {
    color: var(--color-red);
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 3px;
    font-size: 0.8rem;
    margin-bottom: 20px;
    display: block;
}

.popup-box h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.popup-box p {
    color: var(--color-muted);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Highlights Grid Enhancement */
.h-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-gold) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

/* Responsive Fixes */
@media (max-width: 900px) {
    .highlights-grid {
        grid-template-columns: 1fr !important;
    }
}
/* Google Reviews Button */
.btn-google-reviews {
    display: inline-block;
    color: white;
    border: 2px solid white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    max-width: 90%;
}

.btn-google-reviews:hover {
    background: white;
    color: var(--color-red);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .btn-google-reviews {
        font-size: 0.9rem;
        padding: 12px 15px;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        line-height: 1.4;
        box-sizing: border-box;
    }
}
