/* =============================================
   Q'LARANJA — CARDÁPIO DIGITAL
   Tema verde vibrante com detalhes laranja
   ============================================= */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --verde:       #1e7a34;
  --verde-esc:   #0f4d20;
  --verde-claro: #27ae60;
  --verde-pale:  #d4f5e0;
  --laranja:     #f97316;
  --laranja-esc: #c2410c;
  --amarelo:     #fbbf24;
  --branco:      #ffffff;
  --cinza-bg:    #f4faf6;
  --cinza:       #6b7280;
  --texto:       #1a2e1e;
  --shadow:      0 4px 24px rgba(0,0,0,.10);
  --shadow-lg:   0 10px 40px rgba(0,0,0,.14);
  --radius:      18px;
  --trans:       .3s ease;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  background: var(--cinza-bg);
  color: var(--texto);
  overflow-x: hidden;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  background: #fef1e4;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 15% 25%, rgba(249,115,22,.10) 0%, transparent 50%),
    radial-gradient(circle at 85% 75%, rgba(251,191,36,.08) 0%, transparent 50%);
}

/* floating citrus shapes */
.hero::after {
  content: '🍊 🍋 🍓 🍉 🥭 🍍 🍇';
  position: absolute;
  bottom: 8%;
  left: 0; right: 0;
  font-size: 2.2rem;
  letter-spacing: 2.5rem;
  opacity: .14;
  animation: slide 20s linear infinite;
  white-space: nowrap;
  pointer-events: none;
}
@keyframes slide {
  from { transform: translateX(110%); }
  to   { transform: translateX(-110%); }
}

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

.logo-img-wrap {
  margin: 0 auto 24px;
  display: flex;
  justify-content: center;
}
.hero-logo {
  width: clamp(260px, 50vw, 460px);
  height: auto;
  filter: drop-shadow(0 8px 28px rgba(249,115,22,.30));
  animation: floatLogo 3s ease-in-out infinite;
}
@keyframes floatLogo {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
.tagline {
  font-size: clamp(.9rem, 2.5vw, 1.2rem);
  color: var(--laranja-esc);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 32px;
  font-weight: 600;
}
.hero-pills {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
}
.hero-pills span {
  background: rgba(249,115,22,.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(249,115,22,.30);
  color: var(--laranja-esc);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: .82rem; font-weight: 600;
  display: flex; align-items: center; gap: 7px;
  transition: var(--trans);
}
.hero-pills span:hover { background: rgba(249,115,22,.22); }

.scroll-down {
  position: absolute; bottom: 28px; left: 50%;
  transform: translateX(-50%);
  color: var(--laranja);
  font-size: 1.4rem;
  animation: bob 1.6s ease-in-out infinite;
  z-index: 2;
}
@keyframes bob {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(10px); }
}

/* ── FILTER BAR ── */
.filter-bar {
  background: var(--branco);
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 16px rgba(0,0,0,.08);
  padding: 12px 0;
}
.filters {
  display: flex; gap: 8px;
  overflow-x: auto; padding: 4px 0;
  scrollbar-width: none;
}
.filters::-webkit-scrollbar { display: none; }
.f-btn {
  flex-shrink: 0;
  padding: 9px 20px;
  border-radius: 50px;
  border: 2px solid #e5e7eb;
  background: var(--branco);
  color: var(--cinza);
  font-family: 'Poppins', sans-serif;
  font-size: .83rem; font-weight: 500;
  cursor: pointer;
  transition: var(--trans);
  white-space: nowrap;
  display: flex; align-items: center; gap: 7px;
}
.f-btn:hover  { border-color: var(--laranja); color: var(--laranja); transform: translateY(-2px); }
.f-btn.active { background: var(--laranja); border-color: var(--laranja); color: var(--branco); box-shadow: 0 4px 14px rgba(249,115,22,.4); }

/* ── BUSCA ── */
.search-wrap { padding: 24px 0 6px; }
.search-box {
  max-width: 480px; margin: 0 auto;
  position: relative;
}
.search-box i { position: absolute; left: 18px; top: 50%; transform: translateY(-50%); color: var(--cinza); }
.search-box input {
  width: 100%; padding: 13px 18px 13px 46px;
  border: 2px solid #e5e7eb; border-radius: 50px;
  font-family: 'Poppins', sans-serif; font-size: .93rem;
  background: var(--branco); color: var(--texto);
  outline: none; transition: var(--trans);
}
.search-box input:focus { border-color: var(--laranja); box-shadow: 0 0 0 4px rgba(249,115,22,.12); }

/* ── MAIN ── */
.main-content { padding: 28px 0 70px; }

/* ── SECTION HEADER ── */
.menu-section { margin-bottom: 56px; }
.section-header {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 3px solid var(--laranja);
}
.section-icon { font-size: 2rem; }
.section-header h2 {
  font-size: clamp(1.3rem, 3vw, 1.75rem);
  font-weight: 800;
  color: var(--verde-esc);
}

/* ── SUCO DE LARANJA — CARDS INDIVIDUAIS ── */
.laranja-legenda {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-bottom: 18px;
}
.laranja-legenda span {
  padding: 5px 16px; border-radius: 50px;
  font-size: .78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .5px;
}
.leg-batido   { background: #fff3e0; color: #c2410c; border: 1.5px solid #fed7aa; }
.leg-integral { background: #fef9c3; color: #854d0e; border: 1.5px solid #fde68a; }
.leg-prime    { background: linear-gradient(135deg,#fbbf24,#f97316); color: #fff; border: none; box-shadow: 0 2px 8px rgba(249,115,22,.35); }

.laranja-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
}

.laranja-card {
  background: var(--branco);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--trans);
  animation: fadeUp .5s ease both;
}
.laranja-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.laranja-img {
  position: relative; overflow: hidden;
}
.laranja-img img {
  width: 100%; height: 200px;
  object-fit: cover; display: block;
  transition: transform .5s ease;
}
.laranja-card:hover .laranja-img img { transform: scale(1.08); }

.laranja-volume {
  position: absolute; bottom: 10px; left: 10px;
  background: var(--laranja);
  color: var(--branco);
  font-size: .78rem; font-weight: 800;
  padding: 4px 14px; border-radius: 20px;
  box-shadow: 0 2px 10px rgba(249,115,22,.5);
  text-transform: uppercase; letter-spacing: 1px;
}

.laranja-info { padding: 16px; }
.laranja-info h4 {
  font-size: 1.05rem; font-weight: 800;
  color: var(--verde-esc);
  margin-bottom: 12px;
}

.laranja-precos { display: flex; flex-direction: column; gap: 7px; }

.lp-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 7px 12px; border-radius: 10px;
  font-size: .84rem;
}
.lp-row span { font-weight: 500; }
.lp-row strong { font-weight: 800; font-size: .9rem; }

.lp-row.batido   { background: #fff7ed; color: #9a3412; }
.lp-row.batido strong { color: #c2410c; }
.lp-row.integral { background: #fefce8; color: #713f12; }
.lp-row.integral strong { color: #92400e; }
.lp-row.prime    { background: linear-gradient(135deg,#fff3c4,#ffe0a0); color: #78350f; }
.lp-row.prime strong { color: #b45309; font-size: 1rem; }

/* ── INFO BOXES (observações e validades) ── */
.info-box {
  margin: 14px 16px 4px;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: .78rem;
  line-height: 1.55;
}
.info-obs {
  background: #fff7ed;
  border-left: 3px solid var(--laranja);
  color: #7c2d12;
}
.info-obs strong { color: var(--laranja-esc); }
.info-validade {
  background: #f0fdf4;
  border-left: 3px solid var(--verde);
  color: #14532d;
  margin-top: 6px;
}
.info-validade strong { color: var(--verde-esc); }
.info-validade .val-row {
  display: flex; justify-content: space-between;
  align-items: center;
  padding: 3px 0;
  border-bottom: 1px dashed #bbf7d0;
  font-size: .76rem;
}
.info-validade .val-row:last-child { border-bottom: none; }
.info-validade .val-row span:last-child {
  font-weight: 700;
  background: #dcfce7;
  color: #166534;
  padding: 1px 8px;
  border-radius: 10px;
}

/* ── VALIDADE SIMPLES (para outras seções) ── */
.val-badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: #f0fdf4;
  border: 1px solid #86efac;
  color: #166534;
  font-size: .75rem; font-weight: 600;
  padding: 4px 10px; border-radius: 20px;
  margin: 8px 16px 12px;
}
.val-badge i { color: var(--verde); font-size: .8rem; }

/* manter t-name e t-price para busca funcionar nos outros cards */
.t-name { font-weight: 600; font-size: .9rem; }
.t-price {
  font-size: .9rem; font-weight: 600;
  color: var(--verde);
  background: var(--verde-pale);
  padding: 4px 10px;
  border-radius: 20px;
  text-align: center;
  display: inline-block;
}
.t-price.highlight { background: #fff3e0; color: var(--laranja-esc); }

/* ── MIX GRID ── */
.mix-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  padding: 20px;
}
.mix-card {
  background: var(--branco);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--trans);
  position: relative;
  animation: fadeUp .5s ease both;
}
.mix-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.mix-card img {
  width: 100%; height: 180px;
  object-fit: cover; display: block;
  transition: transform .5s ease;
}
.mix-card:hover img { transform: scale(1.08); }
.mix-info { padding: 14px 16px; }
.mix-info h4 { font-size: .95rem; font-weight: 700; margin-bottom: 10px; color: var(--texto); }
.mix-prices {
  display: flex; gap: 10px; flex-wrap: wrap;
}
.mix-prices span {
  background: var(--verde-pale);
  color: var(--verde-esc);
  font-size: .78rem; font-weight: 500;
  padding: 4px 10px;
  border-radius: 20px;
}
.mix-prices strong { color: var(--laranja-esc); }
.mix-card.destaque { border: 2px solid var(--amarelo); }

/* ── OUTRAS FRUTAS ── */
.outras-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}
.outra-card {
  background: var(--branco);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--trans);
  position: relative;
  animation: fadeUp .5s ease both;
}
.outra-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.outra-card img {
  width: 100%; height: 160px;
  object-fit: cover; display: block;
  transition: transform .5s ease;
}
.outra-card:hover img { transform: scale(1.07); }
.outra-info { padding: 14px 16px; }
.outra-info h4 {
  font-size: 1rem; font-weight: 700;
  margin-bottom: 10px;
  color: var(--verde-esc);
}
.price-list { display: flex; flex-direction: column; gap: 5px; }
.p-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .82rem;
  padding: 4px 0;
  border-bottom: 1px dashed #e5e7eb;
}
.p-row:last-child { border-bottom: none; }
.price-tag {
  font-weight: 700; color: var(--laranja-esc);
  background: #fff3e0;
  padding: 2px 10px; border-radius: 12px;
  font-size: .8rem;
}

/* ── SIMPLE CARDS (Maracujá, Coco, Frutas) ── */
.simple-cards {
  display: flex; gap: 20px; flex-wrap: wrap;
}
.simple-card {
  flex: 1; min-width: 220px;
  background: var(--branco);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--trans);
  position: relative;
  animation: fadeUp .5s ease both;
}
.simple-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.simple-card img {
  width: 100%; height: 170px;
  object-fit: cover; display: block;
  transition: transform .5s ease;
}
.simple-card:hover img { transform: scale(1.07); }
.simple-info {
  padding: 16px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px;
}
.simple-info h4 { font-size: .95rem; font-weight: 700; color: var(--texto); }
.big-price {
  font-size: 1.1rem; font-weight: 800;
  color: var(--verde-esc);
  background: var(--verde-pale);
  padding: 5px 14px; border-radius: 20px;
  white-space: nowrap;
}
.simple-card.destaque { border: 2px solid var(--amarelo); }

/* ── BADGE ESPECIAL ── */
.badge-especial {
  position: absolute; top: 10px; right: 10px;
  background: linear-gradient(135deg, var(--laranja), var(--amarelo));
  color: var(--texto);
  font-size: .7rem; font-weight: 700;
  padding: 4px 12px; border-radius: 20px;
  z-index: 1;
  box-shadow: 0 2px 8px rgba(249,115,22,.4);
  text-transform: uppercase; letter-spacing: .5px;
}

/* ── HIDDEN ── */
.hidden { display: none !important; }

/* ── SEM RESULTADOS ── */
.no-results {
  text-align: center; padding: 60px 20px; color: var(--cinza);
}
.no-results span { font-size: 3rem; display: block; margin-bottom: 12px; }
.no-results p { font-size: 1rem; }

/* ── FOOTER ── */
.footer {
  background: var(--verde-esc);
  color: rgba(255,255,255,.85);
  padding: 48px 0 24px;
}
.footer-top {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
  margin-bottom: 32px;
}
.footer-brand { display: flex; align-items: center; gap: 14px; flex-direction: column; }
.footer-logo {
  width: 180px;
  height: auto;
  filter: brightness(0) invert(1) drop-shadow(0 2px 10px rgba(0,0,0,.5));
}
.footer-brand p { font-size: .82rem; opacity: .7; text-align: center; }

/* Contatos */
.footer-contatos { display: flex; flex-direction: column; gap: 14px; }
.footer-contatos-titulo {
  font-size: 1rem; font-weight: 700;
  color: var(--branco);
  text-transform: uppercase;
  letter-spacing: 2px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--laranja);
  display: inline-block;
}
.btn-nossas-lojas {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--laranja);
  color: var(--branco);
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: .9rem; font-weight: 700;
  transition: var(--trans);
  box-shadow: 0 4px 16px rgba(249,115,22,.4);
  width: fit-content;
}
.btn-nossas-lojas:hover {
  background: var(--laranja-esc);
  transform: translateY(-3px);
  box-shadow: 0 6px 22px rgba(249,115,22,.55);
}
.btn-nossas-lojas i { font-size: 1rem; }

/* Social — só Instagram */
.footer-social { display: flex; gap: 12px; align-items: center; }
.footer-social a {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  color: var(--branco);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; text-decoration: none;
  transition: var(--trans);
}
.footer-social a:hover {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 4px 16px rgba(220,39,67,.4);
}
.footer-copy {
  text-align: center; font-size: .78rem;
  color: rgba(255,255,255,.35);
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 18px;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .table-head, .t-row {
    grid-template-columns: 1fr 80px 80px 80px;
    font-size: .78rem;
  }
  .product-img-col { width: 120px; }
  .mix-grid, .outras-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
  .footer-top { flex-direction: column; align-items: center; text-align: center; }
  .footer-info p { justify-content: center; }
}
@media (max-width: 520px) {
  .table-img-row { flex-direction: column; }
  .product-img-col { width: 100%; height: 180px; }
  .table-head, .t-row { grid-template-columns: 1fr 70px 70px 70px; font-size: .73rem; }
  .simple-cards { flex-direction: column; }
  .brand { font-size: 2.8rem; }
}
