/* 
========================================
PIZZARIA ARTESANAL - STYLES.CSS
========================================
Design minimalista inspirado no estilo Apple
- Tipografia limpa e espaçamento generoso
- Cores neutras com destaque terracota
- Micro-interações sutis
- Totalmente responsivo
========================================
*/

/* ========================================
   RESET & BASE STYLES
======================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display",
    "SF Pro Text", "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.5;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  overflow-x: hidden;
  font-feature-settings: "kern" 1, "liga" 1, "calt" 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ========================================
   CSS VARIABLES (THEME SYSTEM)
======================================== */
:root {
  /* Light Theme (Default) */
  --bg-primary: #f7f7f8;
  --bg-secondary: #ffffff;
  --bg-tertiary: #f8f9fa;
  --text-primary: #1d1d1f;
  --text-secondary: #6e6e73;
  --text-tertiary: #86868b;
  --accent-primary: #d9534f;
  --accent-secondary: #c9302c;
  --accent-light: #f2dede;
  --border-light: #e5e5e7;
  --border-medium: #d2d2d7;
  --shadow-light: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 4px 12px rgba(0, 0, 0, 0.15);
  --shadow-heavy: 0 8px 24px rgba(0, 0, 0, 0.2);

  /* Spacing Scale */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Typography Scale */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 50%;

  /* Transitions */
  --transition-fast: 0.15s ease-out;
  --transition-normal: 0.3s ease-out;
  --transition-slow: 0.5s ease-out;
}

/* Dark Theme */
[data-theme="dark"] {
  --bg-primary: #1c1c1e;
  --bg-secondary: #2c2c2e;
  --bg-tertiary: #3a3a3c;
  --text-primary: #ffffff;
  --text-secondary: #8e8e93;
  --text-tertiary: #636366;
  --accent-primary: #ff6b6b;
  --accent-secondary: #ff5252;
  --accent-light: #2d1b1b;
  --border-light: #38383a;
  --border-medium: #48484a;
  --shadow-light: 0 1px 3px rgba(0, 0, 0, 0.3);
  --shadow-medium: 0 4px 12px rgba(0, 0, 0, 0.4);
  --shadow-heavy: 0 8px 24px rgba(0, 0, 0, 0.5);
}

/* ========================================
   UTILITY CLASSES
======================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.section__header {
  text-align: center;
  margin-bottom: var(--space-4xl);
}

.section__title {
  font-size: var(--text-4xl);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
  letter-spacing: -0.022em;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display",
    "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.section__subtitle {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  font-weight: 400;
  letter-spacing: -0.011em;
  line-height: 1.4;
}

/* ========================================
   BUTTONS
======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md) var(--space-xl);
  border: none;
  border-radius: var(--radius-lg);
  font-size: var(--text-base);
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Helvetica Neue", Helvetica, Arial, sans-serif;
  letter-spacing: -0.003em;
}

.btn--primary {
  background-color: var(--accent-primary);
  color: white;
  box-shadow: var(--shadow-light);
}

.btn--primary:hover {
  background-color: var(--accent-secondary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.btn--secondary {
  background-color: transparent;
  color: var(--text-primary);
  border: 2px solid var(--border-medium);
}

.btn--secondary:hover {
  background-color: var(--bg-tertiary);
  border-color: var(--accent-primary);
  color: var(--accent-primary);
}

/* Botão "Ver cardápio" destacado */
#ver-cardapio-btn {
  background-color: rgba(255, 255, 255, 0.95);
  color: var(--text-primary);
  border: 2px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  font-weight: 600;
}

#ver-cardapio-btn:hover {
  background-color: rgba(255, 255, 255, 1);
  border-color: rgba(255, 255, 255, 1);
  color: var(--accent-primary);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Modo escuro para o botão "Ver cardápio" */
[data-theme="dark"] #ver-cardapio-btn {
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] #ver-cardapio-btn:hover {
  background-color: rgba(0, 0, 0, 0.9);
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--accent-primary);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
}

.btn--large {
  padding: var(--space-lg) var(--space-2xl);
  font-size: var(--text-lg);
}

.btn--full {
  width: 100%;
}

/* ========================================
   HEADER
======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(247, 247, 248, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  z-index: 1000;
  transition: all var(--transition-normal);
}

[data-theme="dark"] .header {
  background-color: rgba(28, 28, 30, 0.8);
}

.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg) 0;
}

.logo h1 {
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--accent-primary);
  letter-spacing: -0.016em;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display",
    "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.nav__list {
  display: flex;
  list-style: none;
  gap: var(--space-xl);
}

.nav__link {
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 500;
  transition: color var(--transition-fast);
  position: relative;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Helvetica Neue", Helvetica, Arial, sans-serif;
  letter-spacing: -0.003em;
}

.nav__link:hover {
  color: var(--accent-primary);
}

.nav__link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-primary);
  transition: width var(--transition-normal);
}

.nav__link:hover::after {
  width: 100%;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.theme-toggle {
  background: none;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  padding: var(--space-sm);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.theme-toggle:hover {
  background-color: var(--bg-tertiary);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-sm);
  gap: 4px;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background-color: var(--text-primary);
  transition: all var(--transition-fast);
}

/* ========================================
   HERO SECTION
======================================== */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero__image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.5) 100%
  );
  z-index: 1;
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4) contrast(1.1);
}

.hero__content {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero__title {
  font-size: var(--text-5xl);
  font-weight: 700;
  margin-bottom: var(--space-lg);
  letter-spacing: -0.025em;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.6), 0 2px 4px rgba(0, 0, 0, 0.4);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display",
    "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.08;
}

.hero__subtitle {
  font-size: var(--text-xl);
  margin-bottom: var(--space-2xl);
  opacity: 0.95;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.5), 0 1px 2px rgba(0, 0, 0, 0.3);
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: -0.008em;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.hero__actions {
  display: flex;
  gap: var(--space-lg);
  justify-content: center;
  flex-wrap: wrap;
}

/* ========================================
   SOBRE SECTION
======================================== */
.sobre {
  padding: var(--space-4xl) 0;
  background-color: var(--bg-secondary);
}

.sobre__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.sobre__text p {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

.sobre__image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-medium);
}

/* ========================================
   CARDÁPIO SECTION
======================================== */
.cardapio {
  padding: var(--space-4xl) 0;
  background-color: var(--bg-primary);
}

.cardapio__filters {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-3xl);
  flex-wrap: wrap;
}

.filter-btn {
  padding: var(--space-md) var(--space-lg);
  border: 2px solid var(--border-medium);
  background-color: transparent;
  color: var(--text-primary);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-normal);
  font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--accent-primary);
  color: white;
  border-color: var(--accent-primary);
}

.cardapio__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
}

.cardapio__item {
  background-color: var(--bg-secondary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: all var(--transition-normal);
  position: relative;
}

.cardapio__item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-heavy);
}

.cardapio__item-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.cardapio__item-content {
  padding: var(--space-lg);
}

.cardapio__item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-md);
}

.cardapio__item-name {
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display",
    "Helvetica Neue", Helvetica, Arial, sans-serif;
  letter-spacing: -0.011em;
}

.cardapio__item-price {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--accent-primary);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display",
    "Helvetica Neue", Helvetica, Arial, sans-serif;
  letter-spacing: -0.008em;
}

.cardapio__item-description {
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
  line-height: 1.5;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Helvetica Neue", Helvetica, Arial, sans-serif;
  letter-spacing: -0.003em;
}

.cardapio__item-badge {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  background-color: var(--accent-primary);
  color: white;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cardapio__item-actions {
  display: flex;
  gap: var(--space-md);
}

.btn--small {
  padding: var(--space-sm) var(--space-md);
  font-size: var(--text-sm);
}

.btn svg {
  margin-right: var(--space-xs);
  flex-shrink: 0;
}

/* ========================================
   COMO PEDIR SECTION
======================================== */
.como-pedir {
  padding: var(--space-4xl) 0;
  background-color: var(--bg-secondary);
}

.como-pedir__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-2xl);
}

.step {
  text-align: center;
  padding: var(--space-xl);
}

.step__icon {
  width: 60px;
  height: 60px;
  background-color: var(--accent-light);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  color: var(--accent-primary);
}

.step h3 {
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display",
    "Helvetica Neue", Helvetica, Arial, sans-serif;
  letter-spacing: -0.011em;
}

.step p {
  color: var(--text-secondary);
  line-height: 1.5;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Helvetica Neue", Helvetica, Arial, sans-serif;
  letter-spacing: -0.003em;
}

/* ========================================
   DEPOIMENTOS SECTION
======================================== */
.depoimentos {
  padding: var(--space-4xl) 0;
  background-color: var(--bg-primary);
}

.depoimentos__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
}

.depoimento {
  background-color: var(--bg-secondary);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-light);
  transition: all var(--transition-normal);
}

.depoimento:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.depoimento__content {
  margin-bottom: var(--space-lg);
}

.depoimento__content p {
  font-size: var(--text-lg);
  color: var(--text-primary);
  font-style: italic;
  line-height: 1.5;
  position: relative;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Helvetica Neue", Helvetica, Arial, sans-serif;
  letter-spacing: -0.003em;
}

.depoimento__content p::before {
  content: '"';
  font-size: var(--text-3xl);
  color: var(--accent-primary);
  position: absolute;
  top: -10px;
  left: -10px;
}

.depoimento__author strong {
  color: var(--text-primary);
  font-weight: 600;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display",
    "Helvetica Neue", Helvetica, Arial, sans-serif;
  letter-spacing: -0.003em;
}

.depoimento__author span {
  color: var(--text-secondary);
  font-size: var(--text-sm);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Helvetica Neue", Helvetica, Arial, sans-serif;
  letter-spacing: -0.001em;
}

/* ========================================
   CONTATO SECTION
======================================== */
.contato {
  padding: var(--space-4xl) 0;
  background-color: var(--bg-secondary);
}

.contato__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: start;
}

.info-item {
  display: flex;
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.info-item__icon {
  width: 40px;
  height: 40px;
  background-color: var(--accent-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-primary);
  flex-shrink: 0;
}

.info-item__content h3 {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display",
    "Helvetica Neue", Helvetica, Arial, sans-serif;
  letter-spacing: -0.008em;
}

.info-item__content p {
  color: var(--text-secondary);
  line-height: 1.5;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Helvetica Neue", Helvetica, Arial, sans-serif;
  letter-spacing: -0.003em;
}

#horario-status {
  color: var(--accent-primary);
  font-weight: 600;
  display: flex;
  align-items: center;
}

#horario-status svg {
  margin-right: var(--space-xs);
  flex-shrink: 0;
}

.contato__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.contato__map iframe {
  width: 100%;
  height: 300px;
  border: none;
}

/* ========================================
   FOOTER
======================================== */
.footer {
  background-color: var(--bg-primary);
  padding: var(--space-3xl) 0 var(--space-lg);
  border-top: 1px solid var(--border-light);
}

.footer__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.footer__brand h3 {
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--accent-primary);
  margin-bottom: var(--space-sm);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display",
    "Helvetica Neue", Helvetica, Arial, sans-serif;
  letter-spacing: -0.016em;
}

.footer__brand p {
  color: var(--text-secondary);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Helvetica Neue", Helvetica, Arial, sans-serif;
  letter-spacing: -0.003em;
}

.footer__social h4,
.footer__contact h4 {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display",
    "Helvetica Neue", Helvetica, Arial, sans-serif;
  letter-spacing: -0.008em;
}

.social-links {
  display: flex;
  gap: var(--space-md);
}

.social-link {
  width: 40px;
  height: 40px;
  background-color: var(--bg-tertiary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all var(--transition-normal);
}

.social-link:hover {
  background-color: var(--accent-primary);
  color: white;
  transform: translateY(-2px);
}

.footer__contact p {
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
}

.footer__bottom {
  text-align: center;
  padding-top: var(--space-lg);
  border-top: 1px solid var(--border-light);
}

.footer__bottom p {
  color: var(--text-tertiary);
  font-size: var(--text-sm);
}

/* ========================================
   WHATSAPP BUTTON
======================================== */
.whatsapp-btn {
  position: fixed;
  bottom: var(--space-xl);
  right: var(--space-xl);
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  box-shadow: var(--shadow-heavy);
  transition: all var(--transition-normal);
  z-index: 1000;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
}

/* ========================================
   MODAL
======================================== */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.modal__content {
  position: relative;
  background-color: var(--bg-secondary);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-heavy);
  transform: scale(0.9);
  transition: transform var(--transition-normal);
}

.modal.active .modal__content {
  transform: scale(1);
}

.modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--border-light);
}

.modal__header h3 {
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--text-primary);
}

.modal__close {
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  padding: var(--space-sm);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.modal__close:hover {
  background-color: var(--bg-tertiary);
  color: var(--text-primary);
}

/* ========================================
   FORM STYLES
======================================== */
.form-group {
  margin-bottom: var(--space-lg);
}

.form-group label {
  display: block;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Helvetica Neue", Helvetica, Arial, sans-serif;
  letter-spacing: -0.003em;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: var(--space-md);
  border: 2px solid var(--border-medium);
  border-radius: var(--radius-md);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-size: var(--text-base);
  transition: all var(--transition-fast);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Helvetica Neue", Helvetica, Arial, sans-serif;
  letter-spacing: -0.003em;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(217, 83, 79, 0.1);
}

.radio-group {
  display: flex;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  cursor: pointer;
  font-weight: 500;
  color: var(--text-primary);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Helvetica Neue", Helvetica, Arial, sans-serif;
  letter-spacing: -0.003em;
}

.radio-label input[type="radio"] {
  width: auto;
  margin: 0;
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */
@media (max-width: 768px) {
  .container {
    padding: 0 var(--space-md);
  }

  .nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .hero__title {
    font-size: var(--text-4xl);
    font-weight: 700;
    letter-spacing: -0.022em;
  }

  .hero__subtitle {
    font-size: var(--text-lg);
    font-weight: 400;
    letter-spacing: -0.006em;
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  #ver-cardapio-btn {
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.25);
  }

  [data-theme="dark"] #ver-cardapio-btn {
    background-color: rgba(0, 0, 0, 0.7);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.4);
  }

  .sobre__content {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .contato__content {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .cardapio__filters {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: var(--space-sm);
  }

  .filter-btn {
    white-space: nowrap;
    flex-shrink: 0;
  }

  .como-pedir__steps {
    grid-template-columns: 1fr;
  }

  .depoimentos__grid {
    grid-template-columns: 1fr;
  }

  .footer__content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }

  .whatsapp-btn {
    bottom: var(--space-lg);
    right: var(--space-lg);
    width: 50px;
    height: 50px;
  }

  .modal__content {
    padding: var(--space-lg);
    margin: var(--space-md);
  }

  .radio-group {
    flex-direction: column;
    gap: var(--space-md);
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: var(--text-3xl);
    font-weight: 700;
    letter-spacing: -0.015em;
    line-height: 1.05;
  }

  .hero__subtitle {
    font-size: var(--text-base);
    font-weight: 400;
    letter-spacing: -0.001em;
  }

  #ver-cardapio-btn {
    background-color: rgba(255, 255, 255, 0.85);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    font-size: var(--text-base);
  }

  [data-theme="dark"] #ver-cardapio-btn {
    background-color: rgba(0, 0, 0, 0.6);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    font-size: var(--text-base);
  }

  .section__title {
    font-size: var(--text-3xl);
  }

  .cardapio__grid {
    grid-template-columns: 1fr;
  }

  .modal__content {
    width: 95%;
    padding: var(--space-md);
  }
}

/* ========================================
   ACCESSIBILITY & MOTION
======================================== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Focus styles for keyboard navigation */
*:focus {
  outline: 2px solid var(--accent-primary);
  outline-offset: 2px;
}

/* Skip link for screen readers */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--accent-primary);
  color: white;
  padding: 8px;
  text-decoration: none;
  border-radius: 4px;
  z-index: 10000;
}

.skip-link:focus {
  top: 6px;
}

/* ========================================
   LOADING STATES
======================================== */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

.skeleton {
  background: linear-gradient(
    90deg,
    var(--bg-tertiary) 25%,
    var(--border-light) 50%,
    var(--bg-tertiary) 75%
  );
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* ========================================
   PRINT STYLES
======================================== */
@media print {
  .header,
  .whatsapp-btn,
  .modal,
  .toast {
    display: none !important;
  }

  body {
    background: white !important;
    color: black !important;
  }

  .hero {
    height: auto;
    padding: 2rem 0;
  }

  .hero__image {
    display: none;
  }
}
