/* ==========================================================================
   PIPOCA CARIOCA RJ - MODERN STYLESHEET
   ========================================================================== */

:root {
  --primary-red: #B71C1C;
  --primary-dark: #8E0E17;
  --primary-hover: #D32F2F;
  --accent-gold: #FBC02D;
  --accent-gold-hover: #F9A825;
  --text-dark: #1E293B;
  --text-muted: #64748B;
  --bg-light: #F8FAFC;
  --bg-card: #FFFFFF;
  --border-color: #E2E8F0;
  --red-tint: #FFF5F5;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-pill: 9999px;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 6px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 28px rgba(0, 0, 0, 0.12);
  --transition: all 0.25s ease;
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-light);
  line-height: 1.5;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hidden {
  display: none !important;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--primary-dark);
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon.small {
  width: 36px;
  height: 36px;
}

.logo-icon svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: #FFFFFF;
  letter-spacing: -0.5px;
  line-height: 1;
}

.logo-sub {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--accent-gold);
  line-height: 1;
}

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  font-size: 15px;
  font-weight: 600;
  color: #FFFFFF;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}

.nav-link:hover {
  color: var(--accent-gold);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 12px;
  right: 12px;
  height: 3px;
  background-color: var(--accent-gold);
  border-radius: 2px;
}

/* Header Action Buttons */
.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.btn-pedir-header {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: #FFFFFF;
  color: var(--primary-red);
  font-weight: 700;
  font-size: 14px;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.btn-pedir-header:hover {
  background-color: var(--accent-gold);
  color: #000000;
  transform: translateY(-2px);
}

.btn-cart-toggle {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.btn-cart-toggle:hover {
  background: rgba(255, 255, 255, 0.25);
}

.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background-color: var(--accent-gold);
  color: #000000;
  font-size: 12px;
  font-weight: 800;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--primary-dark);
}

.mobile-menu-btn {
  display: none;
  color: #FFFFFF;
}

/* ==========================================================================
   BUTTONS STYLES
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-weight: 700;
  font-size: 15px;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  cursor: pointer;
}

.btn-hero-outline {
  background-color: #FFFFFF;
  color: var(--primary-red);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.btn-hero-outline:hover {
  background-color: #FFF3F3;
  transform: translateY(-2px);
}

.btn-hero-gold {
  background-color: var(--accent-gold);
  color: #1E293B;
  box-shadow: 0 4px 14px rgba(251, 192, 45, 0.4);
}

.btn-hero-gold:hover {
  background-color: var(--accent-gold-hover);
  transform: translateY(-2px);
}

.btn-red-full {
  background-color: var(--primary-red);
  color: #FFFFFF;
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-size: 14px;
}

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

.btn-white-pill {
  background-color: #FFFFFF;
  color: var(--primary-red);
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  display: inline-block;
  margin-top: 14px;
}

.btn-white-pill:hover {
  background-color: #FFF3F3;
  transform: translateY(-2px);
}

/* ==========================================================================
   TELA 1: HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, #900C16 0%, #C62828 65%, #80000A 100%);
  color: #FFFFFF;
  padding: 60px 0 80px;
  overflow: hidden;
}

.floating-popcorn {
  position: absolute;
  user-select: none;
  pointer-events: none;
  opacity: 0.7;
  animation: float 4s ease-in-out infinite alternate;
}

.pop-1 { top: 15%; left: 8%; font-size: 32px; animation-duration: 3s; }
.pop-2 { top: 25%; right: 45%; font-size: 24px; animation-duration: 4.5s; }
.pop-3 { bottom: 20%; left: 42%; font-size: 38px; animation-duration: 3.5s; }
.pop-4 { top: 10%; right: 10%; font-size: 34px; animation-duration: 4s; }

@keyframes float {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-16px) rotate(12deg); }
}

.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 46px;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
}

.hero-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 480px;
  margin-bottom: 32px;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bucket-glow {
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(251, 192, 45, 0.3) 0%, rgba(251, 192, 45, 0) 70%);
  filter: blur(25px);
  border-radius: 50%;
}

.hero-bucket-img {
  width: 100%;
  max-width: 440px;
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  transform: perspective(1000px) rotateY(-4deg) rotateX(2deg);
  transition: transform 0.4s ease;
}

.hero-bucket-img:hover {
  transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

/* ==========================================================================
   NOSSAS UNIDADES
   ========================================================================== */
.unidades-section {
  padding: 50px 0;
  background-color: #FFFFFF;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
}

.section-heading h2 {
  font-size: 26px;
  color: var(--text-dark);
}

.unidades-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.unidade-card {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 22px 18px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

.unidade-card:hover {
  border-color: var(--primary-red);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.unidade-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.unidade-icon {
  font-size: 18px;
}

.unidade-header h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
}

.unidade-address {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
  margin-bottom: 14px;
  flex-grow: 1;
}

.map-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-red);
  transition: var(--transition);
}

.map-link:hover {
  text-decoration: underline;
  color: var(--primary-dark);
}

/* ==========================================================================
   3 COLUNAS INFORMATIVAS
   ========================================================================== */
.info-columns-section {
  padding: 50px 0;
  background-color: var(--bg-light);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.info-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-color);
}

.info-badge-icon {
  font-size: 22px;
}

.info-card-header h3 {
  font-size: 18px;
  color: var(--text-dark);
}

/* Tabela de Preços */
.price-list {
  list-style: none;
  margin-bottom: 24px;
  flex-grow: 1;
}

.price-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 14px;
  color: var(--text-dark);
}

.price-list .dots {
  flex-grow: 1;
  border-bottom: 2px dotted #CBD5E1;
  margin: 0 8px;
  position: relative;
  top: 4px;
}

.price-list strong {
  color: var(--primary-red);
  font-weight: 700;
  font-size: 15px;
}

/* Bairros */
.neighborhood-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  font-size: 14px;
  color: var(--text-dark);
  flex-grow: 1;
}

.neighborhood-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background-color: #DCFCE7;
  color: #16A34A;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
}

.more-item {
  font-weight: 700;
  color: var(--primary-red);
}

/* Informações de Delivery */
.delivery-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
  flex-grow: 1;
}

.delivery-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: var(--text-dark);
}

.delivery-item .item-icon {
  font-size: 18px;
  line-height: 1.2;
}

.delivery-item p {
  color: var(--text-muted);
  font-size: 12px;
}

.delivery-item.highlight-box {
  background-color: var(--red-tint);
  border: 1px dashed var(--primary-red);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  color: var(--primary-red);
}

/* ==========================================================================
   BANNER FRANQUIA E FALE CONOSCO
   ========================================================================== */
.franchise-contact-banner {
  background: linear-gradient(135deg, #8E0E17 0%, #B71C1C 100%);
  color: #FFFFFF;
  padding: 50px 0;
  position: relative;
}

.banner-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1.2fr;
  align-items: center;
  gap: 30px;
}

.banner-box h2 {
  font-size: 24px;
  margin-bottom: 12px;
}

.banner-box p {
  font-size: 14px;
  opacity: 0.9;
  line-height: 1.5;
}

.banner-popcorn-center {
  display: flex;
  justify-content: center;
}

.banner-bucket-img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #FFFFFF;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
}

.contact-channels {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-line {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #FFFFFF;
  transition: var(--transition);
}

.contact-line:hover {
  color: var(--accent-gold);
}

.channel-icon {
  font-size: 16px;
}

/* ==========================================================================
   TELA 2: CARDÁPIO VIEW
   ========================================================================== */
.cardapio-hero {
  background: linear-gradient(135deg, #900C16 0%, #B71C1C 100%);
  color: #FFFFFF;
  padding: 40px 0;
}

.cardapio-hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.title-with-icon {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}

.menu-icon {
  font-size: 32px;
}

.cardapio-title-box h1 {
  font-size: 32px;
}

.cardapio-title-box p {
  font-size: 16px;
  opacity: 0.9;
}

.cardapio-hero-art {
  width: 90px;
  height: 90px;
}

.cardapio-art-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  border: 3px solid #FFFFFF;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Layout do Cardápio */
.cardapio-body {
  padding: 40px 0 60px;
}

.cardapio-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 30px;
  align-items: flex-start;
}

/* Tabs */
.category-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 14px;
  background-color: #FFFFFF;
  color: var(--text-dark);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.tab-btn:hover {
  border-color: var(--primary-red);
  color: var(--primary-red);
}

.tab-btn.active {
  background-color: var(--primary-red);
  color: #FFFFFF;
  border-color: var(--primary-red);
  box-shadow: 0 4px 12px rgba(183, 28, 28, 0.25);
}

/* Grade de Produtos */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
  box-shadow: var(--shadow-sm);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: #F87171;
}

.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: var(--accent-gold);
  color: #000000;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  z-index: 2;
}

.product-image-box {
  width: 100%;
  height: 160px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FAFAFA;
}

.product-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover .product-image-box img {
  transform: scale(1.05);
}

.product-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.product-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
  margin-bottom: 12px;
  flex-grow: 1;
}

.product-price {
  font-size: 18px;
  font-weight: 800;
  color: var(--primary-red);
  margin-bottom: 12px;
}

.product-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.qty-control {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  background-color: #F8FAFC;
  overflow: hidden;
}

.qty-btn {
  width: 32px;
  height: 32px;
  font-weight: 700;
  font-size: 16px;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  transition: var(--transition);
}

.qty-btn:hover {
  background-color: #E2E8F0;
}

.qty-display {
  flex-grow: 1;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
}

.btn-add-product {
  background-color: var(--primary-red);
  color: #FFFFFF;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: var(--transition);
}

.btn-add-product:hover {
  background-color: var(--primary-hover);
}

/* ==========================================================================
   CART SIDEBAR / MEU PEDIDO
   ========================================================================== */
.cart-sidebar {
  position: sticky;
  top: 96px;
}

.cart-card {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 22px;
  box-shadow: var(--shadow-md);
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-color);
}

.cart-title {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-title h3 {
  font-size: 18px;
  color: var(--text-dark);
}

.cart-close-mobile {
  display: none;
  font-size: 20px;
  color: var(--text-muted);
}

.cart-items {
  max-height: 280px;
  overflow-y: auto;
  margin-bottom: 16px;
  padding-right: 4px;
}

.empty-cart-msg {
  text-align: center;
  padding: 30px 10px;
  color: var(--text-muted);
}

.empty-cart-msg span {
  font-size: 36px;
  display: block;
  margin-bottom: 8px;
}

.cart-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #F1F5F9;
  font-size: 13px;
}

.cart-item-info {
  display: flex;
  flex-direction: column;
}

.cart-item-name {
  font-weight: 600;
  color: var(--text-dark);
}

.cart-item-sub {
  font-size: 12px;
  color: var(--text-muted);
}

.cart-item-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-item-price {
  font-weight: 700;
  color: var(--text-dark);
}

.cart-item-remove {
  color: #EF4444;
  font-size: 16px;
  padding: 2px 6px;
  border-radius: 4px;
}

.cart-item-remove:hover {
  background-color: #FEE2E2;
}

/* Totais */
.cart-summary {
  border-top: 1px solid var(--border-color);
  padding-top: 14px;
  margin-bottom: 18px;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.summary-line.total-line {
  font-size: 16px;
  color: var(--text-dark);
  border-top: 1px dashed var(--border-color);
  padding-top: 10px;
  margin-top: 10px;
}

.summary-line.total-line strong {
  font-size: 20px;
  color: var(--primary-red);
}

.free-shipping-note {
  font-size: 11px;
  background-color: #ECFDF5;
  color: #065F46;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  text-align: center;
  margin-top: 6px;
  font-weight: 500;
}

.btn-finalizar {
  background-color: var(--primary-red);
  color: #FFFFFF;
  width: 100%;
  padding: 14px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(183, 28, 28, 0.3);
}

.btn-finalizar:hover:not(:disabled) {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
}

.btn-finalizar:disabled {
  background-color: #CBD5E1;
  color: #94A3B8;
  cursor: not-allowed;
  box-shadow: none;
}

/* ==========================================================================
   TRUST BADGES BAR
   ========================================================================== */
.trust-bar {
  background-color: #FFFFFF;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 30px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
}

.trust-icon {
  font-size: 24px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background-color: #720911;
  color: #FFFFFF;
  padding-top: 50px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 36px;
  padding-bottom: 40px;
}

.footer-brand .footer-tagline {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 14px;
  max-width: 260px;
  line-height: 1.4;
}

.footer-col h4 {
  font-size: 15px;
  margin-bottom: 16px;
  color: #FFFFFF;
  letter-spacing: 0.3px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--accent-gold);
  padding-left: 4px;
}

.payment-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.badge-card {
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 4px;
  background-color: #FFFFFF;
  color: #1E293B;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.badge-card.visa { color: #1A1F71; }
.badge-card.master { color: #EB001B; }
.badge-card.elo { color: #00A4E8; }
.badge-card.pix { color: #32BCAD; }

.security-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(0, 0, 0, 0.2);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  width: fit-content;
}

.ssl-icon {
  background-color: #10B981;
  color: #FFFFFF;
  font-weight: 800;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 3px;
}

.footer-bottom {
  background-color: #55050C;
  padding: 18px 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-links a {
  color: rgba(255, 255, 255, 0.75);
  transition: var(--transition);
}

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

/* ==========================================================================
   CHECKOUT MODAL
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.65);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
}

.modal-content {
  background-color: #FFFFFF;
  border-radius: var(--radius-md);
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  padding: 26px;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 14px;
  margin-bottom: 20px;
}

.modal-header h3 {
  font-size: 20px;
  color: var(--text-dark);
}

.modal-close {
  font-size: 22px;
  color: var(--text-muted);
}

.form-group {
  margin-bottom: 14px;
}

.form-row {
  display: flex;
  gap: 12px;
}

.flex-1 { flex: 1; }
.flex-2 { flex: 2; }

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 14px;
  color: var(--text-dark);
  outline: none;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-red);
  box-shadow: 0 0 0 3px rgba(183, 28, 28, 0.1);
}

.checkout-order-summary {
  background-color: #F8FAFC;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  margin: 16px 0;
  font-size: 13px;
}

.btn-whatsapp-submit {
  background-color: #25D366;
  color: #FFFFFF;
  width: 100%;
  padding: 14px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-submit:hover {
  background-color: #22BF5B;
  transform: translateY(-2px);
}

/* ==========================================================================
   TOAST NOTIFICATIONS
   ========================================================================== */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background-color: #1E293B;
  color: #FFFFFF;
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: slideInRight 0.3s ease;
  border-left: 4px solid var(--accent-gold);
}

@keyframes slideInRight {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* ==========================================================================
   RESPONSIVE (MOBILE & TABLET)
   ========================================================================== */
@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-subtitle {
    margin: 0 auto 30px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .unidades-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

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

  .banner-bucket-img {
    margin: 0 auto;
  }

  .contact-channels {
    align-items: center;
  }

  .cardapio-layout {
    grid-template-columns: 1fr;
  }

  /* Cart as Drawer on mobile */
  .cart-sidebar {
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    top: auto;
    z-index: 200;
    transform: translateY(100%);
    transition: transform 0.3s ease;
  }

  .cart-sidebar.open {
    transform: translateY(0);
  }

  .cart-card {
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    max-height: 80vh;
    overflow-y: auto;
  }

  .cart-close-mobile {
    display: block;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background-color: var(--primary-dark);
    flex-direction: column;
    padding: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  .nav-menu.open {
    display: flex;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero-title {
    font-size: 32px;
  }

  .unidades-grid {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .form-row {
    flex-direction: column;
  }
}
