/* =============================================
   BOIZÃO GRILL ANÁLIA FRANCO – STYLES
   ============================================= */

/* ---------- CSS Variables ---------- */
:root {
    --bg: hsl(0, 0%, 8%);
    --fg: hsl(0, 0%, 95%);
    --primary: hsl(30, 90%, 48%);
    --primary-fg: hsl(0, 0%, 100%);
    --secondary: hsl(0, 0%, 15%);
    --muted: hsl(0, 0%, 18%);
    --muted-fg: hsl(0, 0%, 65%);
    --border-color: hsl(0, 0%, 20%);
    --card-bg: hsl(0, 0%, 12%);
    --radius: 0.25rem;
    --font-display: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--fg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-display); }

/* ---------- Scroll Reveal ---------- */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.scroll-reveal[data-direction="left"] { transform: translateX(-40px); }
.scroll-reveal[data-direction="right"] { transform: translateX(40px); }
.scroll-reveal[data-direction="up"] { transform: translateY(30px); }
.scroll-reveal.revealed {
    opacity: 1;
    transform: translate(0, 0);
}

/* ========== HEADER ========== */
.site-header {
    position: absolute;
    top: 0; left: 0; right: 0;
    z-index: 50;
    padding: 1rem 1.5rem;
    background: transparent;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo-img { height: 2.5rem; width: auto; }
.main-nav ul {
    display: flex;
    gap: 1.5rem;
}
.main-nav a {
    font-size: 0.875rem;
    font-family: var(--font-body);
    color: var(--fg);
    letter-spacing: 0.05em;
    transition: color 0.3s;
}
.main-nav a:hover { color: var(--primary); }
.header-social {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.header-social a {
    color: var(--fg);
    transition: color 0.3s;
}
.header-social a:hover { color: var(--primary); }
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--fg);
    cursor: pointer;
}

/* Mobile nav */
@media (min-width: 769px) {
    .logo-img { height: 3.5rem; }
}
@media (max-width: 768px) {
    .main-nav { display: none; }
    .main-nav.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        background: rgba(20,20,20,0.97);
        backdrop-filter: blur(8px);
        padding: 1.5rem;
        gap: 1rem;
        border-radius: 0 0 var(--radius) var(--radius);
    }
    .main-nav.open ul {
        flex-direction: column;
        gap: 1rem;
    }
    .menu-toggle { display: block; }
}

/* ========== HERO ========== */
.hero-section {
    position: relative;
    height: 80vh;
    min-height: 500px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--bg), rgba(20,20,20,0.4), transparent);
}
.hero-content {
    position: relative;
    z-index: 10;
    padding: 0 1.5rem 4rem;
    max-width: 64rem;
}
.hero-subtitle {
    font-size: 1rem;
    font-family: var(--font-body);
    color: var(--fg);
    margin-bottom: 0.5rem;
}
.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.1;
}
@media (min-width: 769px) {
    .hero-content { padding: 0 2rem 4rem; }
    .hero-subtitle { font-size: 1.125rem; }
    .hero-title { font-size: 4.5rem; }
}

/* ========== PRICING ========== */
.pricing-section {
    position: relative;
    padding: 4rem 2rem;
    overflow: hidden;
}
.pricing-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.pricing-overlay {
    position: absolute;
    inset: 0;
    background: rgba(20,20,20,0.8);
}
.pricing-content {
    position: relative;
    z-index: 10;
    max-width: 64rem;
    margin: 0 auto;
    text-align: center;
}
.section-subtitle {
    font-size: 0.875rem;
    font-family: var(--font-body);
    color: var(--muted-fg);
    margin-bottom: 0.25rem;
}
.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--fg);
    margin-bottom: 2.5rem;
}
.pricing-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    align-items: flex-end;
}
.pricing-card {
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
    min-width: 160px;
    background: rgba(20,20,20,0.6);
    backdrop-filter: blur(8px);
}
.pricing-card--promo {
    border: 2px solid var(--primary);
    padding: 1.5rem 2rem;
    min-width: 180px;
    position: relative;
}
.promo-badge {
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--primary-fg);
    font-size: 0.75rem;
    padding: 0.125rem 0.75rem;
    border-radius: var(--radius);
    font-weight: 700;
    font-family: var(--font-body);
}
.card-period {
    font-size: 0.75rem;
    font-family: var(--font-body);
    color: var(--muted-fg);
    margin-bottom: 0.5rem;
}
.card-price {
    font-size: 1.875rem;
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--fg);
}
.card-price--promo { color: var(--primary); font-size: 2.25rem; }
.currency { font-size: 0.875rem; vertical-align: top; }
.card-desc {
    font-size: 0.75rem;
    font-family: var(--font-body);
    color: var(--muted-fg);
    margin-top: 0.5rem;
}
.pricing-note {
    font-size: 0.75rem;
    color: var(--muted-fg);
    font-family: var(--font-body);
    margin-top: 2rem;
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

/* ========== ABOUT ========== */
.about-section {
    background: #ffffff;
    padding: 5rem 1.5rem;
}
.about-grid {
    max-width: 64rem;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.about-subtitle {
    font-size: 0.875rem;
    color: #6b7280;
    font-family: var(--font-body);
    margin-bottom: 0.25rem;
}
.about-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}
.about-divider {
    width: 12rem;
    height: 2px;
    background: var(--primary);
    margin-bottom: 2rem;
}
.about-text p {
    font-size: 0.875rem;
    font-family: var(--font-body);
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 1rem;
}
.about-image img {
    border-radius: var(--radius);
    width: 100%;
    height: auto;
    /*height: 20rem;*/
    object-fit: cover;
}
@media (max-width: 768px) {
    .about-grid { grid-template-columns: 1fr; }
}

/* ========== SERVICES ========== */
.services-section { padding: 0; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.service-card {
    position: relative;
    height: 450px;
    overflow: hidden;
}
.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.service-card:hover img { transform: scale(1.05); }
.service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--bg), rgba(20,20,20,0.6), transparent);
}
.service-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
}
.service-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.75rem;
}
.service-content p {
    font-size: 0.75rem;
    font-family: var(--font-body);
    color: var(--muted-fg);
    line-height: 1.6;
}
@media (max-width: 768px) {
    .services-grid { grid-template-columns: 1fr; }
}

/* ========== TESTIMONIALS ========== */
.testimonials-section {
    background: #ffffff;
    padding: 5rem 2rem;
}
.testimonials-grid {
    max-width: 64rem;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
}
.testimonials-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}
.testimonials-subtitle {
    font-size: 0.875rem;
    font-family: var(--font-body);
    color: var(--primary);
}
.testimonial-quote {
    font-size: 0.875rem;
    font-family: var(--font-body);
    color: #4b5563;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1.5rem;
}
.testimonial-author {
    font-size: 0.875rem;
    font-family: var(--font-body);
    color: #111827;
    font-weight: 700;
}
@media (max-width: 768px) {
    .testimonials-grid { grid-template-columns: 1fr; }
}

/* ========== SPACES ========== */
.spaces-section { padding: 0; }
.spaces-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.space-card {
    position: relative;
    height: 350px;
    overflow: hidden;
}
.space-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.space-card:hover img { transform: scale(1.05); }
.space-overlay {
    position: absolute;
    inset: 0;
    background: rgba(20,20,20,0.6);
}
.space-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}
.space-content h3 {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}
.space-content p {
    font-size: 0.875rem;
    font-family: var(--font-body);
    color: var(--fg);
    max-width: 20rem;
}
.btn-primary {
    display: inline-block;
    background: var(--primary);
    color: var(--primary-fg);
    padding: 0.5rem 1.5rem;
    font-size: 0.875rem;
    font-family: var(--font-body);
    border-radius: var(--radius);
    transition: opacity 0.3s;
}
.btn-primary:hover { opacity: 0.9; }
@media (max-width: 768px) {
    .spaces-grid { grid-template-columns: 1fr; }
}

/* ========== FOOTER ========== */
.site-footer {
    background: var(--secondary);
    padding: 4rem 1.5rem;
}
.footer-grid {
    max-width: 64rem;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}
.footer-logo {
    height: 3rem;
    width: auto;
    margin-bottom: 1rem;
}
.footer-col p {
    font-size: 0.75rem;
    font-family: var(--font-body);
    color: var(--muted-fg);
    margin-bottom: 0.25rem;
    line-height: 1.6;
}
.footer-col h4 {
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--primary);
    font-size: 0.875rem;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}
.delivery-label {
    margin-top: 0.75rem !important;
    font-weight: 700 !important;
    color: var(--fg) !important;
}
.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    text-align: center;
}
.footer-social-label {
    font-size: 0.75rem;
    font-family: var(--font-body);
    color: var(--muted-fg);
    margin-bottom: 1rem;
}
.footer-social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.footer-social-icons a {
    color: var(--fg);
    transition: color 0.3s;
}
.footer-social-icons a:hover { color: var(--primary); }
.footer-copy {
    font-size: 0.75rem;
    font-family: var(--font-body);
    color: var(--muted-fg);
}
@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ========== WHATSAPP FLOAT ========== */
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 50;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: background 0.3s;
}
.whatsapp-float:hover { background: #1ebe57; }
.whatsapp-float svg { width: 28px; height: 28px; }
