/* ==========================================================================
   DOCES D'IANJO - ALTA CONFEITARIA ARTESANAL
   Diego Roscoe Portugal - Confeiteiro
   Paleta: Chocolate Nobre, Rose Gold/Cobre Metálico, Cristal Turquesa & Creme
   ========================================================================== */

:root {
  /* Cores Base da Identidade Visual */
  --bg-deep: #1a0c07;
  --bg-main: #24120b;
  --bg-surface: #2e170e;
  --bg-surface-elevated: #391d12;
  --bg-surface-glass: rgba(46, 23, 14, 0.85);

  /* Cobre & Ouro Rosê Metálico (Logo & Cartão) */
  --copper-light: #f3be9e;
  --copper-base: #e08753;
  --copper-dark: #b86032;
  --copper-gradient: linear-gradient(135deg, #f7cbaf 0%, #e08753 50%, #aa5428 100%);
  --copper-glow: rgba(224, 135, 83, 0.35);

  /* Cristal Turquesa / Diamante (Ícone D da Logo) */
  --crystal-light: #7ee8ee;
  --crystal-base: #3ec1c8;
  --crystal-dark: #1b747d;
  --crystal-gradient: linear-gradient(135deg, #8cf0f5 0%, #3ec1c8 50%, #196972 100%);
  --crystal-glow: rgba(62, 193, 200, 0.3);

  /* Tipografia & Contrastes */
  --text-primary: #fff8f3;
  --text-secondary: #e6d3c7;
  --text-muted: #bda393;
  --text-inverse: #1a0c07;

  /* Bordas e Sombras */
  --border-subtle: rgba(224, 135, 83, 0.18);
  --border-hover: rgba(224, 135, 83, 0.45);
  --border-crystal: rgba(62, 193, 200, 0.35);
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.6);
  --shadow-copper: 0 8px 30px rgba(224, 135, 83, 0.25);
  --shadow-crystal: 0 8px 30px rgba(62, 193, 200, 0.25);

  /* Fontes & Transições */
  --font-serif: 'Cinzel', 'Playfair Display', Georgia, serif;
  --font-sans: 'Outfit', 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Reset Básico */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(224, 135, 83, 0.04) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(62, 193, 200, 0.04) 0%, transparent 40%);
}

/* Background Pattern sutil */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23e08753' fill-opacity='0.02' fill-rule='evenodd'%3E%3Cpath d='M30 30L15 0h30L30 30zm0 0L45 60H15L30 30z'/%3E%3C/g%3E%3C/svg%3E");
  z-index: 0;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  transition: var(--transition);
}

/* Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

/* Tipografia */
h1, h2, h3, h4, .brand-font {
  font-family: var(--font-serif);
  letter-spacing: 0.03em;
  font-weight: 700;
  color: var(--text-primary);
}

.text-gradient {
  background: var(--copper-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.text-crystal {
  background: var(--crystal-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius-full);
  background: rgba(224, 135, 83, 0.12);
  border: 1px solid rgba(224, 135, 83, 0.3);
  color: var(--copper-light);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 3.8vw, 3rem);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.15rem;
  max-width: 650px;
  margin: 0 auto 2.5rem;
}

.text-center {
  text-align: center;
}

/* ==========================================================================
   HEADER & NAVBAR
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
  background: rgba(26, 12, 7, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-subtle);
}

.site-header.scrolled {
  background: rgba(20, 9, 5, 0.95);
  box-shadow: var(--shadow-md);
  border-bottom-color: var(--border-hover);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
  gap: 1.5rem;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-logo-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--copper-base);
  box-shadow: 0 0 14px var(--copper-glow);
}

.brand-text-wrap {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.1;
  color: var(--copper-light);
}

.brand-subtitle {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  list-style: none;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 0.4rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--copper-gradient);
  transition: var(--transition);
  border-radius: 2px;
}

.nav-link:hover {
  color: var(--copper-light);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cart-btn-trigger {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(224, 135, 83, 0.15);
  border: 1px solid var(--copper-base);
  color: var(--copper-light);
  padding: 0.6rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.cart-btn-trigger:hover {
  background: var(--copper-gradient);
  color: var(--text-inverse);
  box-shadow: var(--shadow-copper);
}

.cart-counter {
  background: var(--crystal-base);
  color: #0b2b30;
  font-size: 0.75rem;
  font-weight: 800;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Mobile Toggle */
.mobile-nav-toggle {
  display: none;
  background: transparent;
  color: var(--text-primary);
  font-size: 1.5rem;
  padding: 0.5rem;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
  transition: var(--transition);
  text-align: center;
}

.btn-primary {
  background: var(--copper-gradient);
  color: #1a0a04;
  box-shadow: var(--shadow-copper);
  font-weight: 700;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(224, 135, 83, 0.45);
  filter: brightness(1.05);
}

.btn-crystal {
  background: var(--crystal-gradient);
  color: #0a262a;
  box-shadow: var(--shadow-crystal);
  font-weight: 700;
}

.btn-crystal:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(62, 193, 200, 0.45);
  filter: brightness(1.05);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
  font-weight: 700;
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
  filter: brightness(1.08);
}

.btn-outline {
  border: 1.5px solid var(--copper-base);
  color: var(--copper-light);
  background: rgba(224, 135, 83, 0.08);
}

.btn-outline:hover {
  background: var(--copper-gradient);
  color: var(--text-inverse);
  transform: translateY(-2px);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  padding-top: 140px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 3.5rem;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-title {
  font-size: clamp(2.4rem, 4.2vw, 3.6rem);
  line-height: 1.15;
  margin-bottom: 1.4rem;
}

.hero-subtitle {
  color: var(--text-secondary);
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
  margin-bottom: 3rem;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  width: 100%;
  padding-top: 1.8rem;
  border-top: 1px solid var(--border-subtle);
}

.highlight-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.highlight-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--copper-light);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.highlight-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Hero Visual Showcase */
.hero-visual {
  position: relative;
}

.hero-card-showcase {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-hover);
  padding: 1.5rem;
  position: relative;
  box-shadow: var(--shadow-lg), 0 0 35px rgba(224, 135, 83, 0.15);
  overflow: hidden;
}

.hero-card-showcase::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(62, 193, 200, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero-image-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  aspect-ratio: 1 / 1;
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero-card-showcase:hover .hero-image-wrap img {
  transform: scale(1.04);
}

.hero-floating-badge {
  position: absolute;
  bottom: 25px;
  right: 25px;
  background: rgba(26, 12, 7, 0.92);
  border: 1px solid var(--copper-base);
  backdrop-filter: blur(10px);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  box-shadow: var(--shadow-md);
}

.badge-gem-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--crystal-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0b2e34;
  font-size: 1.1rem;
}

.badge-text-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.badge-text-sub {
  font-size: 0.75rem;
  color: var(--copper-light);
}

/* ==========================================================================
   SOBRE DIEGO (CONFEITEIRO)
   ========================================================================== */
.about-section {
  padding: 90px 0;
  background: linear-gradient(180deg, var(--bg-main) 0%, var(--bg-deep) 100%);
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3.5rem;
  align-items: center;
}

.about-visual {
  position: relative;
}

.card-business-replica {
  background: #391d12;
  border: 2px solid var(--copper-base);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  box-shadow: var(--shadow-lg), 0 0 30px rgba(224, 135, 83, 0.2);
  overflow: hidden;
  text-align: center;
}

.card-business-replica::after {
  content: '🪶';
  position: absolute;
  bottom: 12px;
  right: 18px;
  font-size: 2rem;
  opacity: 0.75;
  filter: drop-shadow(0 0 8px var(--copper-glow));
}

.card-logo-center {
  width: 90px;
  height: 90px;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  border: 2.5px solid var(--copper-light);
  box-shadow: 0 0 20px var(--copper-glow);
  object-fit: cover;
}

.card-title-gold {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  letter-spacing: 0.12em;
  color: var(--copper-light);
  margin-bottom: 0.2rem;
}

.card-confectioner-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-top: 0.6rem;
}

.card-confectioner-title {
  font-size: 0.95rem;
  color: var(--copper-light);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.card-contacts-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.card-contacts-list a:hover {
  color: var(--crystal-light);
}

.about-story {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.about-story p {
  color: var(--text-secondary);
  font-size: 1.08rem;
  line-height: 1.8;
}

.about-quote {
  margin-top: 1rem;
  padding: 1.2rem 1.5rem;
  background: rgba(224, 135, 83, 0.08);
  border-left: 4px solid var(--copper-base);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--copper-light);
  font-size: 1.05rem;
}

/* ==========================================================================
   CARDÁPIO (MENU DE PRODUTOS)
   ========================================================================== */
.menu-section {
  padding: 90px 0;
  background-color: var(--bg-main);
  position: relative;
}

/* Category Filter Tabs */
.menu-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-full);
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
}

.filter-btn:hover {
  border-color: var(--copper-base);
  color: var(--copper-light);
}

.filter-btn.active {
  background: var(--copper-gradient);
  border-color: transparent;
  color: var(--text-inverse);
  box-shadow: var(--shadow-copper);
}

/* Grid de Produtos */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.product-card {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-lg), 0 0 25px rgba(224, 135, 83, 0.18);
}

.product-img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
  background: #170a05;
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.07);
}

.product-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(26, 12, 7, 0.9);
  border: 1px solid var(--copper-base);
  color: var(--copper-light);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-full);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-sm);
}

.product-category-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(62, 193, 200, 0.9);
  color: #0c2b2f;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.product-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-title {
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.product-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.3rem;
  flex-grow: 1;
}

/* Tabela de Preços no Card */
.product-pricing-box {
  background: rgba(26, 12, 7, 0.65);
  border: 1px solid rgba(224, 135, 83, 0.2);
  border-radius: var(--radius-md);
  padding: 0.9rem;
  margin-bottom: 1.2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
  gap: 0.6rem;
  text-align: center;
}

.price-item {
  display: flex;
  flex-direction: column;
}

.price-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.price-val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--copper-light);
}

.price-val.highlight {
  color: var(--crystal-light);
}

.product-actions {
  display: flex;
  gap: 0.6rem;
}

.product-actions .btn {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.92rem;
}

/* ==========================================================================
   PREÇOS & FORMATOS (TABELA DETALHADA)
   ========================================================================== */
.pricing-section {
  padding: 90px 0;
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-main) 100%);
  position: relative;
}

.pricing-formats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.format-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.8rem;
  display: flex;
  flex-direction: column;
  text-align: center;
  position: relative;
  transition: var(--transition);
}

.format-card.featured {
  background: var(--bg-surface-elevated);
  border-color: var(--copper-base);
  box-shadow: var(--shadow-lg), 0 0 30px rgba(224, 135, 83, 0.2);
  transform: translateY(-8px);
}

.format-card:hover {
  border-color: var(--copper-base);
  box-shadow: var(--shadow-md);
}

.format-card-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--copper-gradient);
  color: #1a0a04;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.35rem 1.2rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.format-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.format-title {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
}

.format-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.format-tag {
  display: inline-block;
  font-size: 0.82rem;
  color: var(--crystal-light);
  background: rgba(62, 193, 200, 0.1);
  border: 1px solid rgba(62, 193, 200, 0.25);
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
}

/* Notes Box */
.pricing-notes-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 2rem;
}

.pricing-notes-box h4 {
  color: var(--copper-light);
  margin-bottom: 1.2rem;
  font-size: 1.15rem;
}

.pricing-notes-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

.pricing-notes-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.pricing-notes-list li::before {
  content: '✦';
  color: var(--crystal-base);
  font-size: 1.1rem;
  line-height: 1;
}

/* ==========================================================================
   ENCOMENDAS & CARRINHO INTERATIVO
   ========================================================================== */
.orders-section {
  padding: 90px 0;
  background-color: var(--bg-main);
  position: relative;
}

.order-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.step-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: var(--transition);
}

.step-card:hover {
  border-color: var(--copper-base);
  transform: translateY(-4px);
}

.step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--copper-gradient);
  color: #1a0a04;
  font-size: 1.2rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  box-shadow: var(--shadow-copper);
}

.step-title {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}

.step-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Notice Box */
.notice-box {
  background: rgba(62, 193, 200, 0.08);
  border: 1px solid var(--border-crystal);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 3.5rem;
}

.notice-icon {
  font-size: 2rem;
  color: var(--crystal-light);
  flex-shrink: 0;
}

.notice-text h5 {
  font-size: 1rem;
  color: var(--crystal-light);
  margin-bottom: 0.25rem;
}

.notice-text p {
  font-size: 0.92rem;
  color: var(--text-secondary);
}

/* Order Builder Box (Live Cart Summary) */
.order-builder-box {
  background: var(--bg-surface);
  border: 1px solid var(--copper-base);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg), 0 0 40px rgba(224, 135, 83, 0.15);
  padding: 2.5rem;
}

.builder-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 1.5rem;
  margin-bottom: 1.8rem;
}

.builder-header h3 {
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.cart-items-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
  max-height: 380px;
  overflow-y: auto;
  padding-right: 0.5rem;
}

.cart-empty-message {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-muted);
}

.cart-empty-message i {
  font-size: 3rem;
  color: var(--copper-light);
  opacity: 0.5;
  margin-bottom: 1rem;
  display: block;
}

.cart-item-row {
  background: rgba(26, 12, 7, 0.7);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

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

.cart-item-name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.cart-item-type {
  font-size: 0.8rem;
  color: var(--copper-light);
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.qty-btn:hover {
  background: var(--copper-base);
  color: #1a0a04;
}

.qty-display {
  font-weight: 700;
  font-size: 0.95rem;
  min-width: 24px;
  text-align: center;
}

.cart-item-subtotal {
  font-weight: 700;
  color: var(--crystal-light);
  min-width: 80px;
  text-align: right;
}

.btn-remove-item {
  color: #ff6b6b;
  font-size: 1rem;
  padding: 0.4rem;
  opacity: 0.7;
}

.btn-remove-item:hover {
  opacity: 1;
}

/* Order Form Inputs */
.order-form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem;
  margin-bottom: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.form-control {
  background: rgba(26, 12, 7, 0.8);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  color: var(--text-primary);
  font-size: 0.95rem;
  font-family: inherit;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--copper-base);
  box-shadow: 0 0 10px var(--copper-glow);
}

/* Checkout Summary Footer */
.builder-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--border-subtle);
}

.builder-total-wrap {
  display: flex;
  flex-direction: column;
}

.builder-total-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.builder-total-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--copper-light);
}

/* ==========================================================================
   CONTATO
   ========================================================================== */
.contact-section {
  padding: 90px 0;
  background: linear-gradient(180deg, var(--bg-main) 0%, var(--bg-deep) 100%);
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-card-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.6rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  transition: var(--transition);
}

.contact-card-item:hover {
  border-color: var(--copper-base);
  transform: translateX(6px);
}

.contact-icon-wrap {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(224, 135, 83, 0.15);
  border: 1.5px solid var(--copper-base);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--copper-light);
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-icon-wrap.crystal {
  background: rgba(62, 193, 200, 0.15);
  border-color: var(--crystal-base);
  color: var(--crystal-light);
}

.contact-card-text h5 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.contact-card-text p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  white-space: pre-line;
}

.contact-card-text a {
  color: var(--copper-light);
  font-weight: 600;
}

.contact-card-text a:hover {
  color: var(--crystal-light);
  text-decoration: underline;
}

/* Quick Message Form */
.contact-form-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
}

.contact-form-box h3 {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background-color: #120703;
  border-top: 1px solid var(--border-subtle);
  padding: 60px 0 30px;
  color: var(--text-secondary);
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-top: 1rem;
  max-width: 340px;
}

.footer-col h5 {
  color: var(--copper-light);
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a:hover {
  color: var(--copper-light);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(224, 135, 83, 0.12);
  padding-top: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.admin-access-link {
  color: var(--copper-light);
  opacity: 0.6;
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.admin-access-link:hover {
  opacity: 1;
  color: var(--crystal-light);
}

/* ==========================================================================
   MODAL DE SELEÇÃO DE PRODUTO
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 4, 2, 0.85);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background: var(--bg-surface);
  border: 1px solid var(--copper-base);
  border-radius: var(--radius-lg);
  max-width: 520px;
  width: 100%;
  box-shadow: var(--shadow-lg), 0 0 50px rgba(224, 135, 83, 0.25);
  overflow: hidden;
  transform: scale(0.92);
  transition: var(--transition);
}

.modal-overlay.active .modal-container {
  transform: scale(1);
}

.modal-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-close {
  color: var(--text-muted);
  font-size: 1.5rem;
  line-height: 1;
}

.modal-close:hover {
  color: #ff6b6b;
}

.modal-body {
  padding: 1.5rem;
}

.modal-product-summary {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
  align-items: center;
}

.modal-product-thumb {
  width: 75px;
  height: 75px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  border: 1px solid var(--copper-base);
}

.tier-select-group {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.tier-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.2rem;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  background: rgba(26, 12, 7, 0.6);
}

.tier-option:hover {
  border-color: var(--copper-base);
}

.tier-option.selected {
  border-color: var(--copper-base);
  background: rgba(224, 135, 83, 0.12);
  box-shadow: 0 0 15px rgba(224, 135, 83, 0.2);
}

.tier-title {
  font-weight: 700;
  font-size: 0.95rem;
}

.tier-price {
  font-weight: 800;
  color: var(--copper-light);
}

/* Floating WhatsApp Quick Action Button */
.floating-whatsapp {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.45);
  z-index: 999;
  transition: var(--transition);
}

.floating-whatsapp:hover {
  transform: scale(1.1) rotate(6deg);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.65);
}

/* Toast Notifications */
.toast-notice {
  position: fixed;
  bottom: 25px;
  left: 25px;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--copper-base);
  color: var(--text-primary);
  padding: 0.9rem 1.4rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-lg);
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  z-index: 3000;
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition);
}

.toast-notice.show {
  transform: translateY(0);
  opacity: 1;
}

/* ==========================================================================
   RESPONSIVIDADE (MOBILE & TABLETS)
   ========================================================================== */
@media (max-width: 992px) {
  .hero-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .pricing-formats-grid,
  .order-steps-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-highlights {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .mobile-nav-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 82px;
    left: 0;
    width: 100%;
    background: rgba(20, 9, 5, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--border-hover);
    transform: translateY(-150%);
    opacity: 0;
    transition: var(--transition);
  }

  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
  }

  .builder-header,
  .builder-footer {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .cart-item-row {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: 0.8rem;
  }

  .cart-item-controls {
    justify-content: center;
  }

  .cart-item-subtotal {
    text-align: center;
  }
}
