/* ===================================================
   CASA TASCHETTO — style.css
   Cucina Artigianale · Design Premium
   =================================================== */

/* ── Variables ──────────────────────────────────── */
:root {
  --green-dark:    #1a2b1f;
  --green-mid:     #2d4a33;
  --green-main:    #3a5c40;
  --green-light:   #5c7a5e;
  --green-muted:   #8aa68c;
  --green-pale:    #e8f0e9;
  --cream:         #f5f0e8;
  --cream-warm:    #ede5d8;
  --gold:          #c9a84c;
  --gold-light:    #e0c97b;
  --crimson:       #8b1a2a;
  --text-dark:     #1a1a18;
  --text-mid:      #3d3d3a;
  --text-light:    #6e6e6a;
  --white:         #ffffff;

  --font-display:  'Cormorant Garamond', Georgia, serif;
  --font-body:     'Jost', sans-serif;

  --radius-sm:     6px;
  --radius-md:     12px;
  --radius-lg:     20px;
  --radius-xl:     32px;

  --shadow-card:   0 4px 24px rgba(26, 43, 31, 0.10);
  --shadow-hover:  0 12px 40px rgba(26, 43, 31, 0.18);

  --transition:    0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
  font-feature-settings: "kern" 1;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}
a { text-decoration: none; color: inherit; }
button { border: none; background: none; cursor: pointer; font-family: var(--font-body); }

/* ── Typography Helpers ─────────────────────────── */
.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-tag--light { color: var(--gold-light); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--green-dark);
  margin-bottom: 1.5rem;
}
.section-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--crimson);
}
.section-title--light { color: var(--cream); }
.section-title--light em { color: var(--gold-light); }

/* ── Buttons ────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  transition: var(--transition);
  cursor: pointer;
}
.btn--primary {
  background: var(--green-main);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(58,92,64,0.35);
}
.btn--primary:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(58,92,64,0.4); }

.btn--ghost {
  background: transparent;
  color: var(--green-main);
  border: 2px solid var(--green-main);
}
.btn--ghost:hover { background: var(--green-pale); transform: translateY(-2px); }

.btn--white {
  background: var(--white);
  color: var(--green-dark);
  box-shadow: 0 4px 18px rgba(0,0,0,0.15);
}
.btn--white:hover { background: var(--cream); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.2); }

.btn--ifood {
  background: #ea1d2c;
  color: var(--white);
  box-shadow: 0 4px 18px rgba(234,29,44,0.3);
}
.btn--ifood:hover { background: #d21828; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(234,29,44,0.4); }

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn--outline-white:hover { background: rgba(255,255,255,0.12); border-color: var(--white); transform: translateY(-2px); }

.btn--card {
  background: var(--green-main);
  color: var(--white);
  padding: 0.7rem 1rem;
  font-size: 0.84rem;
  border-radius: 50px;
  white-space: normal;
  min-height: 45px;
  max-width: 85px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.3;
  transition: var(--transition);
}
.btn--card:hover { background: var(--green-dark); transform: translateY(-2px); }

.btn--esgotado {
  background: var(--crimson) !important;
  color: var(--white) !important;
  cursor: not-allowed !important;
  opacity: 0.8;
}
.btn--esgotado:hover { background: var(--crimson) !important; transform: none !important; }

.btn--large {
  padding: 1.2rem 2.8rem;
  font-size: 1.1rem;
  font-weight: 600;
}

/* ── Animations ─────────────────────────────────── */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(0,0,0,0.2), 0 0 0 0 rgba(37, 211, 102, 0.7); }
  50% { box-shadow: 0 4px 16px rgba(0,0,0,0.2), 0 0 0 12px rgba(37, 211, 102, 0); }
}

/* ── Floating Buttons ───────────────────────────── */

.fab {
  position: fixed;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  right: 20px;
  min-height: 60px;
}
.fab svg { width: 24px; height: 24px; }
.fab--whatsapp {
  bottom: 95px;
  background: #25D366;
  color: var(--white);
  animation: pulse 2s infinite;
}
.fab--ifood {
  bottom: 24px;
  background: #ea1d2c;
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  min-height: 60px;
}
.fab--instagram {
  bottom: 170px;
  background: linear-gradient(135deg, #f09433,#e6683c,#dc2743,#cc2366,#bc1888);
  color: var(--white);
  min-height: 60px;
}
.fab:hover { transform: scale(1.12); box-shadow: 0 8px 24px rgba(0,0,0,0.3); }

/* ── Navbar ─────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 800;
  padding: 0 2rem;
  height: 72px;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(26, 43, 31, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.navbar__inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar__logo-img { height: 52px; width: auto; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3)); }

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
.navbar__link {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
}
.navbar__link:hover { color: var(--gold-light); }

.navbar__cta {
  padding: 0.55rem 1.4rem;
  background: var(--gold);
  color: var(--green-dark);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: var(--transition);
}
.navbar__cta:hover { background: var(--gold-light); transform: translateY(-1px); }

.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px;
}
.navbar__hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.navbar__hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.navbar__hamburger.open span:nth-child(2) { opacity: 0; }
.navbar__hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ── Hero ───────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--green-dark);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 0 60px;
}

.hero__bg-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(58,92,64,0.4) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 20% 80%, rgba(139,26,42,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.hero__bg-pattern::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 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='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero__content {
  padding: 0 4rem 0 max(2rem, calc((100vw - 1200px) / 2 + 2rem));
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.hero__tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 600;
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 1.5rem;
}
.hero__title em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-light);
}
.hero__subtitle {
  font-size: 1rem;
  color: rgba(245,240,232,0.75);
  line-height: 1.8;
  margin-bottom: 1.2rem !important;
  max-width: 480px;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  margin-top: auto;
  margin-bottom: auto;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.hero__badges { display: flex; gap: 0.75rem; flex-wrap: wrap; justify-content: center; margin-top: 1.5rem; }
.badge {
  padding: 0.4rem 1rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  font-size: 0.78rem;
  color: rgba(245,240,232,0.8);
  backdrop-filter: blur(4px);
}
.hero__price-badge {
  background: rgba(201,168,76,0.25);
  border-color: var(--gold);
  color: var(--gold-light);
  font-weight: 600;
}

.hero__image-side {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-right: max(2rem, calc((100vw - 1200px) / 2 + 2rem));
}
.hero__image-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 4/5;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.1);
}
.hero__image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s ease;
}
.hero__image-frame:hover img { transform: scale(1.03); }
.hero__image-card {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(26,43,31,0.92);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  padding: 1rem 1.2rem;
  border: 1px solid rgba(201,168,76,0.3);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.hero__image-card-label { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.hero__image-card-name { font-family: var(--font-display); font-size: 1.2rem; color: var(--cream); font-weight: 600; }
.hero__image-card-price { font-size: 0.82rem; color: rgba(245,240,232,0.65); }

.hero__scroll-hint {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  color: rgba(245,240,232,0.4);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  animation: bounceY 2s ease-in-out infinite;
}
@keyframes bounceY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ── Ticker Strip ───────────────────────────────── */
.strip {
  background: var(--gold);
  padding: 0.75rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.strip__inner {
  display: inline-flex;
  align-items: center;
  gap: 1.4rem;
  animation: ticker 20s linear infinite;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-dark);
}
.strip__dot { color: var(--green-main); font-size: 0.6rem; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── About Section ──────────────────────────────── */
.about {
  padding: 8rem 2rem;
  background: var(--cream-warm);
}
.about__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.about__visual { position: relative; }
.about__img-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-hover);
}
.about__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.8s ease;
}
.about__img-wrap:hover img { transform: scale(1.04); }

.about__accent-card {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--green-dark);
  color: var(--cream);
  padding: 1.5rem 1.8rem;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: 0 8px 32px rgba(26,43,31,0.3);
  border: 3px solid var(--gold);
}
.about__accent-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.about__accent-text { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(245,240,232,0.7); margin-top: 0.3rem; max-width: 100px; }

.about__text p {
  color: var(--text-mid);
  margin-bottom: 1.2rem;
  font-size: 0.97rem;
  line-height: 1.85;
}
.about__values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-top: 2rem;
}
.about__value {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1rem;
  background: var(--green-pale);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--green-dark);
  border-left: 3px solid var(--green-main);
}
.about__value-icon { font-size: 1rem; }

/* ── Products Section ───────────────────────────── */
.products {
  padding: 7rem 2rem;
  background: var(--cream-warm);
}
.products__inner { max-width: 1240px; margin: 0 auto; }
.products__header { text-align: center; margin-bottom: 3rem; }
.products__subtitle { color: var(--text-light); max-width: 540px; margin: 0 auto; font-size: 0.95rem; }

/* Tabs */
.products__tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}
.tab {
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-light);
  border: 2px solid transparent;
  background: var(--cream);
  transition: var(--transition);
}
.tab:hover { color: var(--green-main); border-color: var(--green-pale); }
.tab.active { background: var(--green-main); color: var(--white); border-color: var(--green-main); }

/* Grid */
.products__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.8rem;
}

/* Card */
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  contain: layout style paint;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.product-card.hidden { display: none; }

.product-card__img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--green-pale);
}
.product-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}
.products__grid .product-card:nth-child(1) .product-card__img-wrap img {
  object-position: center 35%;
}
.product-card:hover .product-card__img-wrap img { transform: scale(1.06); }

.product-card__img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  background: linear-gradient(135deg, var(--green-pale), var(--cream-warm));
}

.product-card__tag {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  background: rgba(26,43,31,0.85);
  color: var(--gold-light);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  backdrop-filter: blur(4px);
}
.product-card__badge {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  background: var(--crimson);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
}

.product-card__body {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-card__name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.product-card__desc {
  font-size: 0.83rem;
  color: var(--text-light);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1.2rem;
}
.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--green-pale);
}
.product-card__info { display: flex; flex-direction: column; gap: 0.1rem; }
.product-card__weight { font-size: 0.85rem; color: var(--text-light); font-weight: 500; }
.product-card__price { font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; color: var(--green-main); }

.products__note {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.85rem;
  color: var(--text-light);
  padding: 1rem 1.5rem;
  background: var(--cream);
  border-radius: var(--radius-md);
  border: 1px dashed var(--green-muted);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ── FAQ ────────────────────────────────────────── */
.faq {
  padding: 7rem 2rem;
  background: var(--cream);
}
.faq__inner {
  max-width: 900px;
  margin: 0 auto;
}
.faq__header {
  text-align: center;
  margin-bottom: 4rem;
}
.faq__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  border-left: 4px solid var(--green-main);
  transition: var(--transition);
}
.faq-item:hover {
  box-shadow: var(--shadow-hover);
  border-left-color: var(--gold);
}
.faq-item[open] {
  background: var(--green-pale);
}
.faq-item__question {
  display: block;
  padding: 1.4rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--green-dark);
  font-family: var(--font-display);
  font-size: 1.1rem;
  user-select: none;
  transition: color var(--transition);
}
.faq-item__question:hover {
  color: var(--gold);
}
.faq-item[open] .faq-item__question {
  color: var(--green-main);
  border-bottom: 2px solid rgba(58,92,64,0.2);
}
.faq-item__answer {
  padding: 0 1.4rem 1.4rem;
  color: var(--text-mid);
  line-height: 1.8;
  font-size: 0.95rem;
  animation: slideDown 0.3s ease forwards;
}
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.faq__cta {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, var(--green-pale) 0%, rgba(201,168,76,0.1) 100%);
  border-radius: var(--radius-lg);
}
.faq__cta p {
  color: var(--text-mid);
  margin-bottom: 1rem;
  font-weight: 500;
}
.faq-item__ifood-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1rem;
  padding: 0.7rem 1.2rem;
  background: #ea1d2c;
  color: var(--white);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  text-decoration: none;
}
.faq-item__ifood-link:hover {
  background: #d21828;
  transform: translateY(-2px);
}
.faq-item__ifood-icon {
  width: 20px;
  height: 20px;
}

/* ── Testimonials ───────────────────────────────── */
.testimonials {
  padding: 7rem 2rem;
  background: var(--green-dark);
}
.testimonials__inner {
  max-width: 1240px;
  margin: 0 auto;
}
.testimonials__header {
  text-align: center;
  margin-bottom: 4rem;
}
.testimonials__header .section-tag {
  color: var(--gold-light);
}
.testimonials__header .section-title {
  color: var(--cream);
}
.testimonials__header .section-title em {
  color: var(--gold-light);
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}
.testimonial-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  padding: 1.8rem;
  border: 2px solid rgba(201,168,76,0.2);
  border-left: 4px solid var(--gold);
}
.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 48px rgba(0,0,0,0.4);
  border-color: var(--gold);
  background: rgba(255,255,255,0.12);
}
.testimonial__stars {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}
.testimonial__text {
  color: rgba(245,240,232,0.8);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
  flex: 1;
  font-style: italic;
}
.testimonial__name {
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 1.1rem;
  display: block;
  margin-bottom: 0.3rem;
}
.testimonial__location {
  font-size: 0.8rem;
  color: rgba(245,240,232,0.5);
  display: block;
}
.testimonials__badge {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.badge-item {
  text-align: center;
  padding: 1.2rem 2rem;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  border-top: 3px solid var(--gold);
  transition: var(--transition);
}
.badge-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.badge-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--green-main);
  margin-bottom: 0.3rem;
  line-height: 1;
}
.badge-label {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 500;
  display: block;
}

/* ── Quick View Modal ───────────────────────────── */
.quick-view-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 1000;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}
.quick-view-modal.active { display: flex; }
.quick-view-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  cursor: pointer;
}
.quick-view-modal__content {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  animation: zoomIn 0.3s ease;
}
@keyframes zoomIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.quick-view-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-light);
  transition: var(--transition);
}
.quick-view-modal__close:hover { color: var(--green-main); }
.quick-view-modal__body {
  text-align: center;
}
.quick-view-modal__name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--green-dark);
  margin-bottom: 0.5rem;
}
.quick-view-modal__price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--green-main);
  margin-bottom: 0.3rem;
}
.quick-view-modal__size {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}
.quick-view-modal__quantity {
  text-align: left;
  margin-bottom: 1.5rem;
}
.quick-view-modal__quantity label {
  display: block;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 0.8rem;
}
.quick-view-modal__qty-control {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.qty-btn {
  width: 36px;
  height: 36px;
  border: 2px solid var(--green-main);
  background: var(--white);
  color: var(--green-main);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: 700;
  transition: var(--transition);
}
.qty-btn:hover {
  background: var(--green-main);
  color: var(--white);
}
.qty-input {
  width: 60px;
  height: 36px;
  border: 2px solid var(--green-pale);
  border-radius: var(--radius-sm);
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  color: var(--green-dark);
}
.qty-input:focus {
  outline: none;
  border-color: var(--green-main);
}

/* ── Carrinho ───────────────────────────────────── */
.cart-badge {
  position: fixed;
  bottom: 240px;
  right: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--green-main);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  z-index: 901;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  transition: var(--transition);
  min-height: 60px;
}
.cart-badge:hover { transform: scale(1.1); box-shadow: 0 8px 24px rgba(0,0,0,0.3); }
.cart-badge__count {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--crimson);
  color: var(--white);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 1000;
  animation: fadeIn 0.3s ease;
}
.cart-modal.active { display: flex; }
.cart-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  cursor: pointer;
}
.cart-modal__content {
  position: relative;
  margin-left: auto;
  width: 100%;
  max-width: 450px;
  height: 100%;
  background: var(--white);
  display: flex;
  flex-direction: column;
  animation: slideInRight 0.3s ease;
  box-shadow: -4px 0 20px rgba(0,0,0,0.2);
}
.cart-modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid var(--green-pale);
}
.cart-modal__header h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--green-dark);
  margin: 0;
}
.cart-modal__close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-light);
  transition: var(--transition);
}
.cart-modal__close:hover { color: var(--green-main); }

.cart-modal__items {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
}
.cart-empty {
  text-align: center;
  color: var(--text-light);
  padding: 2rem;
  font-style: italic;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  border-radius: var(--radius-md);
  background: var(--cream);
  margin-bottom: 1rem;
  border-left: 4px solid var(--gold);
}
.cart-item__info {
  flex: 1;
}
.cart-item__name {
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 0.3rem;
}
.cart-item__size {
  font-size: 0.8rem;
  color: var(--text-light);
}
.cart-item__price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-main);
  margin-bottom: 0.5rem;
}
.cart-item__controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.cart-item__qty-btn {
  width: 28px;
  height: 28px;
  border: 1px solid var(--green-pale);
  border-radius: 4px;
  background: var(--white);
  cursor: pointer;
  font-weight: 700;
  color: var(--green-main);
  transition: var(--transition);
}
.cart-item__qty-btn:hover { background: var(--green-pale); }
.cart-item__qty {
  min-width: 30px;
  text-align: center;
  font-weight: 600;
  color: var(--green-dark);
}
.cart-item__remove {
  background: none;
  border: none;
  color: var(--crimson);
  cursor: pointer;
  font-size: 1.2rem;
  transition: var(--transition);
}
.cart-item__remove:hover { transform: scale(1.3); }

.cart-modal__footer {
  padding: 1.5rem;
  border-top: 1px solid var(--green-pale);
  background: var(--cream);
}
.cart-modal__total {
  display: flex;
  justify-content: space-between;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 1rem;
}
.cart-modal__total strong {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--green-main);
}
.cart-modal__buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}
.cart-modal__buttons .btn {
  flex: 1;
}
.cart-modal__shipping {
  padding: 1rem;
  background: var(--green-pale);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
}
.cart-modal__shipping h3 {
  font-size: 0.95rem;
  color: var(--green-dark);
  margin-bottom: 0.8rem;
  font-weight: 600;
}
.shipping-input-group {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.shipping-input {
  flex: 1;
  padding: 0.6rem;
  border: 1px solid var(--green-main);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-family: var(--font-body);
}
.shipping-input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}
.shipping-input::placeholder {
  color: var(--text-light);
}
.shipping-result {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 0.8rem;
}
.shipping-info {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--green-dark);
  margin-bottom: 0.4rem;
}
.shipping-info:last-child {
  margin-bottom: 0;
  font-weight: 600;
  border-top: 1px solid var(--green-pale);
  padding-top: 0.4rem;
  margin-top: 0.4rem;
}

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

@media (max-width: 768px) {
  .cart-modal__content { max-width: 100%; }
  .cart-badge { bottom: 160px; }
}

/* ── Footer ─────────────────────────────────────── */
.footer {
  background: #0f1a12;
  padding: 5rem 2rem 0;
}
.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__logo { height: 80px; width: auto; margin-bottom: 1rem; }
.footer__tagline { font-family: var(--font-display); font-style: italic; color: rgba(245,240,232,0.5); font-size: 1rem; line-height: 1.6; }

.footer__links h4, .footer__contact h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
}
.footer__links a, .footer__contact a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(245,240,232,0.6);
  font-size: 0.88rem;
  margin-bottom: 0.7rem;
  transition: color var(--transition);
}
.footer__links a:hover, .footer__contact a:hover { color: var(--gold-light); }
.footer__delivery { font-size: 0.78rem; color: rgba(245,240,232,0.4); margin-top: 1rem; line-height: 1.6; }

.footer__bottom {
  text-align: center;
  padding: 1.5rem 0;
  font-size: 0.78rem;
  color: rgba(245,240,232,0.3);
  letter-spacing: 0.04em;
}

/* ── Reveal Animations ──────────────────────────── */
.reveal, .reveal-left, .reveal-right {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }

.reveal.visible, .reveal-left.visible, .reveal-right.visible {
  opacity: 1;
  transform: none;
}

/* Stagger children */
.products__grid .product-card:nth-child(1) { transition-delay: 0.05s; }
.products__grid .product-card:nth-child(2) { transition-delay: 0.10s; }
.products__grid .product-card:nth-child(3) { transition-delay: 0.15s; }
.products__grid .product-card:nth-child(4) { transition-delay: 0.20s; }
.products__grid .product-card:nth-child(5) { transition-delay: 0.25s; }
.products__grid .product-card:nth-child(6) { transition-delay: 0.30s; }
.products__grid .product-card:nth-child(7) { transition-delay: 0.35s; }
.products__grid .product-card:nth-child(8) { transition-delay: 0.40s; }
.products__grid .product-card:nth-child(9) { transition-delay: 0.45s; }

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 120px 0 60px;
  }
  .hero__content {
    padding: 0 2rem;
    text-align: center;
  }
  .hero__subtitle { max-width: 100%; }
  .hero__actions { justify-content: center; }
  .hero__badges { justify-content: center; }
  .hero__image-side {
    padding: 2rem;
    margin: 0 auto;
    max-width: 420px;
    width: 100%;
  }
  .about__inner { grid-template-columns: 1fr; gap: 3rem; }
  .about__visual { max-width: 420px; margin: 0 auto; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .faq { padding: 5rem 1.5rem; }
  .faq__grid { grid-template-columns: 1fr; gap: 1rem; }
  .faq-item__question { font-size: 1rem; padding: 1.2rem; }
  .faq-item__answer { padding: 0 1.2rem 1.2rem; font-size: 0.9rem; }

  .testimonials { padding: 5rem 1.5rem; }
  .testimonials__header .section-title { font-size: 2rem; }
  .testimonials__grid { grid-template-columns: 1fr; }

  .products { padding: 5rem 1.5rem; }
  .about { padding: 5rem 1.5rem; }

  .navbar__nav {
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(15,26,18,0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    gap: 0;
    padding: 1rem 0 2rem;
    transform: translateY(-120%);
    transition: transform var(--transition);
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .navbar__nav.open { transform: translateY(0); }
  .navbar__link { padding: 0.9rem 2rem; width: 100%; font-size: 1rem; }
  .navbar__cta { margin: 0.5rem 2rem 0; text-align: center; border-radius: var(--radius-sm); padding: 0.9rem; }
  .navbar__hamburger { display: flex; }

  .hero { padding: 90px 0 50px; }
  .hero__title { font-size: 2.6rem; }
  .about { padding: 5rem 1.5rem; }
  .products { padding: 5rem 1.5rem; }
  .products__grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
  .about__values { grid-template-columns: 1fr; }
  .about__accent-card { right: 0; bottom: -1rem; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 2.2rem; }
  .section-title { font-size: 2rem; }
  .btn { padding: 0.85rem 1.4rem; font-size: 0.85rem; min-height: 48px; }
  .btn--card { width: 100%; }
  .hero__actions { flex-direction: column; align-items: center; gap: 1rem; }
  .products__tabs { gap: 0.35rem; }
  .tab { padding: 0.6rem 1rem; font-size: 0.8rem; min-height: 44px; }

  /* Menu Hamburger - melhor espaçamento */
  .navbar__nav a { padding: 1rem 0; min-height: 48px; display: flex; align-items: center; }

  /* Inputs - maiores para mobile */
  input[type="text"],
  input[type="number"],
  input[type="email"],
  input[type="tel"],
  textarea,
  select {
    min-height: 48px;
    font-size: 16px;
    padding: 0.75rem;
  }

  /* Cart items - melhor espaçamento */
  .cart-item__controls { gap: 0.8rem; }
  .cart-item__qty-btn { min-height: 44px; min-width: 44px; }

  /* FABs e Carrinho - aumentar em mobile */
  .fab { width: 70px; height: 70px; min-height: 70px; }
  .fab--whatsapp { bottom: 120px; }
  .fab--instagram { bottom: 205px; }
  .cart-badge { bottom: 290px; width: 70px; height: 70px; min-height: 70px; font-size: 1.8rem; }
}
