/* Favela Burger - Site Profissional */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --primary-color: #1c1917;
    --secondary-color: #292524;
    --accent-color: #d97706;
    --accent-dark: #b45309;
    --accent-gradient: linear-gradient(135deg, #d97706 0%, #b45309 50%, #92400e 100%);
    --text-color: #44403c;
    --text-light: #78716c;
    --bg-light: #fafaf9;
    --bg-white: #ffffff;
    --border-color: #e7e5e4;
    --shadow: 0 2px 10px rgba(217, 119, 6, 0.08);
    --shadow-lg: 0 10px 40px rgba(217, 119, 6, 0.12);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--bg-white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: #fff;
    box-shadow: 0 1px 0 var(--border-color);
    transition: box-shadow 0.25s ease;
}

.header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }

.header-top {
    background: var(--primary-color);
    padding: 0.5rem 0;
}

.header-top-inner {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.header-top-link {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-size: 0.8125rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: color 0.2s ease;
}

.header-top-link:hover { color: #fff; }

.header-top-icon {
    display: inline-block;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.95)' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.header-top-icon-email {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.95)' stroke-width='2' stroke-linecap='round'%3E%3Crect x='2' y='4' width='20' height='16' rx='2'/%3E%3Cpath d='m22 6-10 7L2 6'/%3E%3C/svg%3E");
}

.header-top-icon-location {
    display: inline-block;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.75)' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M20 10c0 6-8 12-8 12s-8-6-8-12a8 8 0 0 1 16 0Z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E") center/contain no-repeat;
}

.header-top-city {
    color: rgba(255,255,255,0.75);
    font-size: 0.8125rem;
    font-weight: 500;
    padding-left: 1rem;
    border-left: 1px solid rgba(255,255,255,0.25);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.header-main {
    background: #fff;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--border-color);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--primary-color);
    transition: opacity 0.2s ease;
}

.logo:hover { opacity: 0.9; }

.logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    min-width: 52px;
    min-height: 52px;
    background: var(--primary-color);
    border-radius: 8px;
    overflow: hidden;
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 6px;
}

.logo-fallback {
    display: none;
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
}

.logo-wrap .logo-img[style*="display: none"] ~ .logo-fallback,
.logo-fallback.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.02em;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.875rem;
    transition: color 0.2s ease;
    position: relative;
    padding: 0.4rem 0;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.2s ease;
}

.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

.nav-link:hover,
.nav-link.active { color: var(--accent-color); }

.header-cta {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.25rem;
    background: var(--accent-color);
    color: #fff;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.2s ease, color 0.2s ease;
}

.header-cta:hover {
    background: var(--accent-dark);
    color: #fff;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 26px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: var(--transition);
}

/* Hero */
.hero {
    background: linear-gradient(135deg, #1c1917 0%, #292524 50%, #1c1917 100%);
    color: #fff;
    padding: 140px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 120px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(217, 119, 6, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

.hero-inner { position: relative; z-index: 1; }

.hero-label {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.hero-title {
    font-size: clamp(2rem, 5.5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.25rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    margin-bottom: 2.5rem;
    opacity: 0.92;
    font-weight: 400;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-primary {
    background: var(--accent-gradient);
    color: #fff;
    box-shadow: 0 8px 24px rgba(217, 119, 6, 0.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(217, 119, 6, 0.45);
}

.btn-secondary {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border: 2px solid rgba(255,255,255,0.35);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-3px);
}

/* Destaques */
.section-destaques { padding: 4rem 0; }

.destaques-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.destaque-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.destaque-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(217, 119, 6, 0.2);
}

.destaque-icon {
    display: block;
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.destaque-icon-calendario {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d97706' stroke-width='2' stroke-linecap='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'/%3E%3Cline x1='16' y1='2' x2='16' y2='6'/%3E%3Cline x1='8' y1='2' x2='8' y2='6'/%3E%3Cline x1='3' y1='10' x2='21' y2='10'/%3E%3C/svg%3E");
}

.destaque-icon-entrega {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d97706' stroke-width='2' stroke-linecap='round'%3E%3Crect x='1' y='3' width='15' height='13'/%3E%3Cpolygon points='16 8 20 8 23 11 23 16 16 16 16 8'/%3E%3Ccircle cx='5.5' cy='18.5' r='2.5'/%3E%3Ccircle cx='18.5' cy='18.5' r='2.5'/%3E%3C/svg%3E");
}

.destaque-icon-qualidade {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d97706' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z'/%3E%3C/svg%3E");
}

.destaque-card h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.destaque-card p {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* Section global */
.section { padding: 100px 0; }

.section-alt {
    background: linear-gradient(180deg, var(--bg-light) 0%, #fff 100%);
}

.section-header { text-align: center; margin-bottom: 3.5rem; }

.section-title {
    font-size: clamp(1.9rem, 4.5vw, 3rem);
    font-weight: 900;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
}

.section-cta { text-align: center; margin-top: 2.5rem; }

/* Cardápio grid */
.cardapio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.cardapio-card {
    background: var(--bg-white);
    padding: 2rem 1.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
}

.cardapio-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(217, 119, 6, 0.2);
}

.cardapio-card-with-img {
    padding: 0;
    overflow: hidden;
}

.cardapio-card-img-wrap {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--bg-light);
}

.cardapio-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.cardapio-card:hover .cardapio-card-img-wrap img {
    transform: scale(1.05);
}

.cardapio-card-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    padding: 0.25rem 0.65rem;
    background: var(--accent-color);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    border-radius: 4px;
    z-index: 1;
}

.cardapio-card-body {
    padding: 1.5rem 1.25rem;
}

.cardapio-card h3 {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.cardapio-card p {
    font-size: 0.98rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* Atendentes online - Chrys Dias */
.section-atendentes {
    background: linear-gradient(180deg, var(--bg-light) 0%, #fff 100%);
    border-top: 1px solid var(--border-color);
}

.atendentes-online-wrap {
    max-width: 960px;
    margin: 0 auto;
}

.atendentes-online-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.atendentes-online-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.atendentes-online-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    line-height: 1.25;
}

.atendentes-online-title strong {
    color: var(--accent-dark);
}

.atendentes-online-desc {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.75;
    max-width: 560px;
    margin: 0 auto;
}

.atendentes-online-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

.atendente-destaque {
    background: var(--bg-white);
    padding: 2rem 1.75rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: var(--transition);
}

.atendente-destaque:hover {
    box-shadow: 0 12px 40px rgba(217, 119, 6, 0.12);
    border-color: rgba(217, 119, 6, 0.25);
}

.atendente-destaque-avatar {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 1.25rem;
}

.atendente-destaque-inicial {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--accent-gradient);
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    box-shadow: 0 8px 24px rgba(217, 119, 6, 0.35);
}

.atendente-destaque-status {
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 0.25rem 0.6rem;
    background: #22c55e;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 20px;
    border: 2px solid var(--bg-white);
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.4);
}

.atendente-destaque-nome {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.atendente-destaque-cargo {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1rem;
}

.atendente-destaque-texto {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.atendente-destaque-whatsapp-titulo {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.atendente-destaque-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.btn-atendente-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.9rem 1.25rem;
    font-size: 0.95rem;
}

.btn-atendente-cta-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    color: #fff;
}

.atendentes-produtos {
    background: var(--bg-white);
    padding: 2rem 1.75rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.atendentes-produtos-titulo {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.atendentes-produtos-sub {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1.25rem;
}

.atendentes-produtos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.atendentes-produto-mini {
    display: block;
    text-decoration: none;
    color: inherit;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.atendentes-produto-mini:hover {
    border-color: var(--accent-color);
    box-shadow: 0 4px 16px rgba(217, 119, 6, 0.15);
}

.atendentes-produto-mini img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
}

.atendentes-produto-mini span {
    display: block;
    padding: 0.6rem 0.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
}

.atendentes-produtos-link {
    display: block;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

.atendentes-produtos-link:hover {
    color: var(--accent-dark);
}

@media (max-width: 768px) {
    .atendentes-online-content {
        grid-template-columns: 1fr;
    }
    .atendente-destaque {
        order: 1;
    }
    .atendentes-produtos {
        order: 2;
    }
    .atendentes-produtos-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .atendentes-produtos-grid {
        grid-template-columns: 1fr;
    }
}

/* About */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.about-text p {
    margin-bottom: 1.25rem;
    line-height: 1.85;
    color: var(--text-light);
    font-size: 1.05rem;
}

.about-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.info-card {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.info-card h4 {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
}

.info-card p { font-size: 1rem; font-weight: 700; color: var(--primary-color); }

/* Localização / Contact items */
.localizacao-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }

.contact-item {
    padding: 1.75rem 1.75rem 1.75rem 4rem;
    background: var(--bg-light);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
}

.contact-item::before {
    content: '';
    position: absolute;
    left: 1.25rem;
    top: 1.75rem;
    width: 28px;
    height: 28px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.contact-item-icon-endereco::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b45309' stroke-width='2'%3E%3Cpath d='M20 10c0 6-8 12-8 12s-8-6-8-12a8 8 0 0 1 16 0Z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
}

.contact-item-icon-telefone::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b45309' stroke-width='2'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.127.96.361 1.903.7 2.81a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45c.907.339 1.85.573 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E");
}

.contact-item-icon-email::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b45309' stroke-width='2'%3E%3Crect x='2' y='4' width='20' height='16' rx='2'/%3E%3Cpath d='m22 6-10 7L2 6'/%3E%3C/svg%3E");
}

.contact-item-icon-empresa::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b45309' stroke-width='2'%3E%3Cpath d='M3 21h18'/%3E%3Cpath d='M5 21V7l7-4 7 4v14'/%3E%3Cpath d='M9 21v-4h6v4'/%3E%3Cpath d='M9 17h6'/%3E%3C/svg%3E");
}

.contact-item-icon-horario::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b45309' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpolyline points='12 6 12 12 16 14'/%3E%3C/svg%3E");
}

.contact-item:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow);
}

.contact-item h4 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: var(--accent-dark);
    font-weight: 800;
}

.contact-item p { color: var(--text-light); line-height: 1.75; font-size: 1rem; }

.contact-item a { color: var(--accent-color); text-decoration: none; font-weight: 600; }
.contact-item a:hover { text-decoration: underline; }

.contact-form-wrapper {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
}

.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }

.form-group label {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 0.875rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--bg-white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

#sobre, #cardapio, #atendentes, #localizacao, #contato { scroll-margin-top: 130px; }

/* Page header (internas) */
.page-header {
    background: linear-gradient(135deg, #1c1917 0%, #292524 100%);
    color: #fff;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    margin-top: 120px;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(217, 119, 6, 0.12) 0%, transparent 70%);
}

.page-title {
    font-size: clamp(1.9rem, 4.5vw, 3rem);
    font-weight: 900;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.page-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1c1917 0%, #292524 100%);
    color: #fff;
    padding: 3rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
    font-weight: 800;
}

.footer-section p,
.footer-section ul { color: rgba(255,255,255,0.85); font-size: 0.95rem; line-height: 1.75; }

.footer-section ul { list-style: none; }
.footer-section ul li { margin-bottom: 0.4rem; }
.footer-section ul li a { color: rgba(255,255,255,0.85); text-decoration: none; }
.footer-section ul li a:hover { color: var(--accent-color); }

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.75);
    font-size: 0.85rem;
}

.footer-bottom a { color: var(--accent-color); text-decoration: none; }
.footer-bottom a:hover { text-decoration: underline; }

/* WhatsApp float */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    z-index: 9998;
    transition: var(--transition);
    color: #fff;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.08) translateY(-4px);
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg { width: 28px; height: 28px; }

/* Legal */
.legal-content { max-width: 860px; margin: 0 auto; }

.legal-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
}

.legal-section h2 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-weight: 800;
}

.legal-section p,
.legal-section li { color: var(--text-light); line-height: 1.8; font-size: 1rem; margin-bottom: 0.5rem; }
.legal-section ul { margin-left: 1.5rem; }

/* Responsive */
@media (max-width: 992px) {
    .about-content { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .header-top { display: none; }
    .header-main { padding: 0.75rem 0; }
    .header-cta { display: none; }
    .nav { display: none; }
    .mobile-menu-toggle {
        display: flex;
        min-width: 44px;
        min-height: 44px;
        align-items: center;
        justify-content: center;
    }
    .hero {
        margin-top: 72px;
        padding: 100px 0 80px;
    }
    .destaques-grid { grid-template-columns: 1fr; }
    .section { padding: 70px 0; }
    .contact-content { grid-template-columns: 1fr; }
    .contact-item { padding: 1.5rem 1.5rem 1.5rem 3.5rem; }
    .contact-item::before { width: 24px; height: 24px; left: 1rem; top: 1.5rem; }
    .footer-content { grid-template-columns: 1fr; }
    .page-header { margin-top: 72px; padding: 100px 0 60px; }
}

@media (max-width: 768px) {
    .nav.active {
        display: block;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(255,255,255,0.98);
        padding: 100px 2rem 2rem;
        z-index: 999;
    }
    .nav.active .nav-list {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }
    .nav.active .nav-link { font-size: 1.25rem; }
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
        background: var(--accent-color);
    }
    .mobile-menu-toggle.active span:nth-child(2) { opacity: 0; }
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
        background: var(--accent-color);
    }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero { padding: 90px 0 70px; }
    .hero-title { font-size: 1.75rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; max-width: 280px; min-height: 48px; }
    .section { padding: 60px 0; }
    .contact-form-wrapper { padding: 1.5rem; }
    .btn { min-height: 48px; }
    .footer-bottom p { font-size: 0.8rem; word-break: break-word; }
    .page-header { padding: 90px 0 50px; }
}
