/* E-Restaurant Landing Page Styles - Clean Emerald Theme */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #10b981;
    --primary-dark: #059669;
    --primary-soft: #f0fdf4;
    --emerald: #10b981;
    --dark: #0f172a;
    --darker: #020617;
    --light: #f8fafc;
    --white: #ffffff;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    --white-10: rgba(255, 255, 255, 0.1);

    /* Gradients */
    --gradient-hero: linear-gradient(135deg, #064e3b 0%, #10b981 100%);
    --gradient-premium: linear-gradient(135deg, #10b981 0%, #059669 100%);

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    --shadow-emerald: 0 10px 25px -5px rgba(16, 185, 129, 0.2);

    /* Backgrounds */
    --bg-dark-section: #0f172a;
    --bg-light-gray: #f1f5f9;
}

html.scroll-smooth {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Accessibility: Focus States */
:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 2px;
}

.visually-hidden-focusable:not(:focus):not(:active) {
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

/* Navbar Premium */
.navbar-landing {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.brand-logo {
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.04em;
    color: var(--dark) !important;
}

.nav-link-premium {
    color: var(--text-main);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}

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

/* Hero Section - Clean Emerald Mesh Gradient */
.hero-section {
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 50%, #f1f5f9 100%);
    color: var(--dark);
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -15%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.18) 0%, rgba(16, 185, 129, 0) 70%);
    filter: blur(100px);
    border-radius: 50%;
    z-index: 0;
    animation: pulse-slow 15s infinite alternate;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, rgba(59, 130, 246, 0) 70%);
    filter: blur(100px);
    border-radius: 50%;
    z-index: 0;
    animation: pulse-slow 20s infinite alternate-reverse;
}

@keyframes pulse-slow {
    0% {
        transform: scale(1) translate(0, 0);
    }

    100% {
        transform: scale(1.1) translate(30px, -20px);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.text-emerald {
    color: var(--emerald) !important;
}

.bg-emerald {
    background-color: var(--emerald) !important;
}

.btn-emerald {
    background-color: var(--emerald) !important;
    color: var(--white) !important;
    transition: all 0.3s ease;
}

.btn-emerald:hover {
    background-color: var(--primary-dark) !important;
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

/* Buttons Custom */
.btn-primary {
    background: var(--gradient-premium);
    border: none;
    font-weight: 700;
    border-radius: 50rem;
    padding: 0.8rem 2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-emerald);
    filter: brightness(1.05);
}

.btn-outline-dark {
    border: 2px solid var(--dark);
    border-radius: 50rem;
    font-weight: 700;
}

.hover-up:hover {
    transform: translateY(-4px);
}

/* Features Refined */
.feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.02);
    box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-soft);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-soft);
    color: var(--primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bg-dark-section {
    background-color: var(--bg-dark-section) !important;
}

.bg-feature-gray {
    background-color: var(--bg-light-gray) !important;
}

/* Pricing - Clean Emerald version */
.pricing-section {
    background-color: var(--light);
}

.pricing-card {
    background: white;
    border-radius: 32px;
    padding: 3rem 2.5rem;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.pricing-card.featured {
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-emerald);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.06) translateY(-5px);
}

/* Footer Section */
.footer {
    background-color: var(--darker);
    color: #94a3b8;
    padding: 100px 0 40px;
}

.footer-links a {
    color: rgba(248, 250, 252, 0.5);
    text-decoration: none;
    transition: all 0.2s ease;
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(4px);
}

/* Animations */
@keyframes slideUp {
    from {
        transform: translateY(40px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.animate-slide-up {
    animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .hero-section {
        padding: 120px 0 60px;
        text-align: center;
    }

    .pricing-card.featured {
        transform: none;
    }
}

/* LGPD Cookie Banner & Glassmorphism */
.cookie-banner {
    position: fixed;
    bottom: 2rem;
    left: 0;
    right: 0;
    z-index: 1060;
    padding: 0 1rem;
    animation: slideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.bg-glass-dark {
    background: rgba(15, 23, 42, 0.85) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.cookie-card {
    max-width: 1000px;
    margin: 0 auto;
}

.cookie-icon-wrapper {
    width: 56px;
    height: 56px;
    background: rgba(16, 185, 129, 0.1);
    color: var(--emerald);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.border-white-10 {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* Legal Pages Styling */
.legal-header {
    background: linear-gradient(135deg, var(--primary-soft) 0%, #ffffff 100%);
    padding: 120px 0 60px;
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
}

.legal-sidebar-card {
    position: sticky;
    top: 100px;
    background: white;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-sm);
}

.legal-nav-link {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    border-radius: 10px;
    transition: all 0.2s ease;
}

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

.legal-content-card {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: var(--shadow-lg);
}

.legal-content h4,
.legal-content h5 {
    color: var(--dark);
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    font-weight: 700;
}

.legal-content p,
.legal-content li {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.breadcrumb-legal .breadcrumb-item a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb-legal .breadcrumb-item.active {
    color: var(--text-light);
}

.bg-emerald-soft {
    background-color: #ecfdf5 !important;
}

.text-rose {
    color: #e11d48 !important;
}