/* ============================================
   SABAI v2 — Bangkok Pop
   App-like, bento grid, sticker culture
   ============================================ */

*, *::before, *::after {
  margin: 0; padding: 0; box-sizing: border-box;
}

:root {
  --jade: #006941;
  --jade-deep: #1A3C34;
  --jade-glow: #00E88F;
  --pink: #FF2D78;
  --gold: #C8A45C;
  --yellow: #FFD600;

  --surface: #F5F6F7;
  --surface-dim: #E6E8EA;
  --surface-low: #EFF1F2;
  --white: #FFFFFF;
  --charcoal: #2B2622;
  --concrete: #757778;
  --linen: #F5F0E8;

  --lip: #FFD6E7;
  --foam: #E8FFF2;
  --heat: #FFE8E0;
  --cool: #E0F4FF;
  --mist: #F5E6C4;

  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-thai: 'Kanit', sans-serif;
  --font-body: 'Be Vietnam Pro', sans-serif;

  --radius: 1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;
  --radius-pill: 9999px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); background: var(--surface); color: var(--charcoal); overflow-x: hidden; }
img { display: block; max-width: 100%; }

.grain {
  position: fixed; inset: 0; z-index: 9999; pointer-events: none; opacity: 0.02;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ====== TOP BAR ====== */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.5rem;
  background: rgba(245,246,247,0.8);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}
.topbar__logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: -0.03em;
  color: var(--jade);
  text-decoration: none;
}
.topbar__logo span {
  font-family: var(--font-thai);
  font-weight: 300;
  font-size: 0.9rem;
  color: var(--gold);
  opacity: 0.6;
  margin-left: 0.25rem;
}
.topbar__icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  color: var(--jade);
  background: none; border: none; cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s;
}
.topbar__icon:hover { opacity: 0.7; }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: var(--jade-deep);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 2rem;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.mobile-menu--open { opacity: 1; pointer-events: auto; }
.mobile-menu__link {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 900;
  color: white; text-decoration: none; letter-spacing: -0.02em;
}

/* ====== MAIN ====== */
.main {
  padding: 5rem 1.25rem 6rem;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

/* ====== BADGES ====== */
.badge {
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-pill);
  display: inline-block;
  white-space: nowrap;
}
.badge--pink { background: var(--pink); color: white; }
.badge--yellow { background: var(--yellow); color: var(--charcoal); }
.badge--green { background: var(--jade-glow); color: var(--jade-deep); }
.badge--warm { background: #C45B3A; color: white; }
.badge--cool { background: #7DD3FC; color: var(--jade-deep); }
.badge--gold { background: var(--gold); color: white; }
.badge--tilt-left { transform: rotate(-3deg); }
.badge--tilt-right { transform: rotate(3deg); }

/* ====== BUTTONS ====== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 0.85rem;
  letter-spacing: 0.02em;
  text-decoration: none; border: none; cursor: pointer;
  border-radius: var(--radius-pill);
  padding: 0.9rem 2rem;
  transition: all 0.3s var(--ease);
}
.btn--primary {
  background: var(--jade); color: white;
  box-shadow: 0 8px 24px rgba(0,105,65,0.3);
}
.btn--primary:hover { opacity: 0.9; transform: scale(1.02); }
.btn--white {
  background: var(--white); color: var(--jade);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.btn--white:hover { transform: scale(1.02); box-shadow: 0 6px 24px rgba(0,0,0,0.12); }
.btn--pink { background: var(--pink); color: white; }
.btn--lg { padding: 1.1rem 2.5rem; font-size: 1rem; }

/* ====== HERO CARD ====== */
.hero-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  padding: 2.5rem;
}
.hero-card__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(26,60,52,0.95) 0%,
    rgba(0,105,65,0.6) 40%,
    rgba(0,105,65,0.2) 100%
  );
}
.hero-card__content {
  position: relative; z-index: 2;
  max-width: 600px;
}
.hero-card__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: white;
  margin-bottom: 1rem;
}
.hero-card__glow {
  color: var(--jade-glow);
  text-shadow: 0 0 40px rgba(0,232,143,0.4);
}
.hero-card__sub {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
  max-width: 380px;
  margin-bottom: 1.5rem;
}
.hero-card__actions {
  display: flex; gap: 0.75rem; flex-wrap: wrap;
}
/* Sticker Seal */
.sticker-seal {
  position: absolute;
  right: 1.5rem;
  top: 1.5rem;
  z-index: 3;
  width: 130px;
  height: 130px;
  transform: rotate(12deg);
  cursor: default;
}
.sticker-seal__svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.15));
  position: relative;
  z-index: 1;
}
/* Peel effect — sombra curvada no canto inferior direito */
.sticker-seal__peel {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 45px;
  height: 45px;
  z-index: 0;
  border-radius: 0 0 50% 0;
  background: linear-gradient(
    135deg,
    transparent 40%,
    rgba(0,0,0,0.08) 60%,
    rgba(0,0,0,0.18) 100%
  );
  filter: blur(4px);
  transform: rotate(5deg);
  pointer-events: none;
}

/* Hero buttons */
.btn--hero-pink {
  background: var(--pink);
  color: white;
  font-weight: 900;
  box-shadow: 0 8px 28px rgba(255,45,120,0.35);
  padding: 1rem 2.2rem;
  font-size: 0.85rem;
}
.btn--hero-pink:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 12px 36px rgba(255,45,120,0.45);
}
.btn--hero-green {
  background: var(--jade);
  color: white;
  font-weight: 900;
  box-shadow: 0 8px 28px rgba(0,105,65,0.3);
  padding: 1rem 2.2rem;
  font-size: 0.85rem;
}
.btn--hero-green:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 12px 36px rgba(0,105,65,0.4);
}

/* ====== SECTIONS ====== */
.section { display: flex; flex-direction: column; gap: 0; }
.section__header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 1.5rem;
}
.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--jade);
  line-height: 1;
}
.section__title--border {
  padding-left: 1rem;
  border-left: 6px solid var(--pink);
  margin-bottom: 1.5rem;
}
.section__sub {
  font-size: 0.85rem;
  color: var(--concrete);
  font-weight: 500;
}

/* ====== BENTO GRID ====== */
.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.bento__card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  overflow: hidden;
  transition: all 0.4s var(--ease);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.bento__card:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}
.bento__card--hero {
  grid-column: span 2;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 380px;
}
.bento__badges {
  display: flex; gap: 0.4rem;
  margin-bottom: 1rem;
  position: relative; z-index: 2;
}
.bento__info { position: relative; z-index: 2; }
.bento__name {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  margin-bottom: 0.2rem;
}
.bento__card--hero .bento__name {
  font-size: 2rem;
}
.bento__desc {
  font-size: 0.78rem;
  color: var(--concrete);
  line-height: 1.5;
  margin-bottom: 0.5rem;
}
.bento__price {
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--jade);
  font-size: 1rem;
}
.bento__card--hero .bento__price {
  font-size: 1.4rem;
  color: var(--pink);
}
.bento__visual {
  position: absolute;
  right: -1rem; bottom: -1rem;
  width: 220px; height: 220px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.bento__visual .bento__thai {
  position: absolute;
  z-index: 0;
  opacity: 0.5;
}
.bento__img--color {
  position: relative;
}
.bento__img--color .bento__thai {
  position: absolute;
  z-index: 0;
}
.bento__pack {
  position: relative;
  z-index: 1;
  max-width: 80%;
  max-height: 80%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,0.15));
  transition: transform 0.5s var(--ease);
}
.bento__pack--hero {
  max-width: 88%;
  max-height: 88%;
}
.bento__card:hover .bento__pack {
  transform: translateY(-3px) rotate(-1.5deg);
}
.bento__thai {
  font-family: var(--font-thai);
  font-weight: 300;
  font-size: 6rem;
  color: rgba(0,0,0,0.08);
}
.bento__thai--sm {
  font-size: 3.5rem;
}
.bento__img {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 0.75rem;
}
.bento__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.bento__card:hover .bento__img img { transform: scale(1.05); }
.bento__img--color {
  display: flex; align-items: center; justify-content: center;
}
.bento__tagline {
  font-size: 0.82rem;
  color: var(--concrete);
  line-height: 1.5;
  margin-top: 0.25rem;
}
.bento__link {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--jade);
  letter-spacing: 0.02em;
  display: block;
  margin-top: 0.75rem;
  transition: color 0.3s;
}
.bento__card:hover .bento__link { color: var(--pink); }
.bento__cta {
  width: 100%;
  background: var(--jade); color: white;
  font-family: var(--font-display); font-weight: 800;
  font-size: 0.85rem; letter-spacing: 0.04em; text-transform: uppercase;
  border: none; border-radius: var(--radius-pill);
  padding: 0.85rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  transition: all 0.3s var(--ease);
  position: relative; z-index: 2;
  margin-top: 1rem;
}
.bento__cta:hover { background: var(--pink); }

/* ====== BENTO AS LINK ====== */
a.bento__card {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
a.bento__card--hero {
  display: flex;
}

/* ====== MANIFESTO ====== */
.manifesto {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Split block — image + text side by side */
.manifesto__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  align-items: stretch;
}
.manifesto__split-img {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.manifesto__split-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.manifesto__split-badge {
  position: absolute;
  top: 1.25rem; left: 1.25rem;
}
.manifesto__split-text {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.manifesto__split-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--charcoal);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.manifesto__split-title em {
  font-style: normal;
  color: var(--jade);
}
.manifesto__split-text p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--concrete);
  margin-bottom: 0.75rem;
}
.manifesto__split-text p:last-child { margin-bottom: 0; }
.manifesto__split-text strong {
  color: var(--jade);
  font-weight: 600;
}

/* Values grid */
.manifesto__values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.manifesto__value {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: all 0.4s var(--ease);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.manifesto__value:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.07);
}
.manifesto__value-number {
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 900;
  color: var(--pink);
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 0.75rem;
}
.manifesto__value-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
}
.manifesto__value p {
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--concrete);
}

/* Quote card */
.manifesto__quote-card {
  background: var(--jade-deep);
  border-radius: var(--radius-xl);
  padding: clamp(2.5rem, 5vw, 4rem);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.manifesto__quote-thai {
  font-family: var(--font-thai);
  font-weight: 300;
  font-size: clamp(6rem, 14vw, 12rem);
  color: white;
  opacity: 0.03;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
}
.manifesto__quote-text {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: white;
  line-height: 1.3;
  margin-bottom: 2rem;
  position: relative;
  border: none;
}
.manifesto__quote-text span {
  color: var(--jade-glow);
}
.manifesto__quote-seal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  position: relative;
}
.manifesto__quote-seal span {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.manifesto__quote-seal small {
  font-size: 0.6rem;
  color: var(--gold);
  opacity: 0.5;
  letter-spacing: 0.08em;
}

/* ====== QUIZ CTA ====== */
.quiz {
  background: var(--pink);
  border-radius: var(--radius-xl);
  padding: clamp(2.5rem, 5vw, 4rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.quiz__glow {
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  opacity: 0.15;
  filter: blur(80px);
  pointer-events: none;
}
.quiz__glow--tl { top: -60px; left: -60px; background: var(--yellow); }
.quiz__glow--br { bottom: -60px; right: -60px; background: white; }
.quiz__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: white;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  position: relative;
}
.quiz__title--gold {
  color: var(--yellow);
}
.quiz__sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  max-width: 520px;
  margin: 0 auto 2rem;
  position: relative;
}
.quiz__sub em {
  font-family: var(--font-thai);
  font-style: normal;
  font-weight: 400;
}
.quiz__btn {
  transform: rotate(-2deg);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}
.quiz__btn:hover { transform: rotate(0deg) scale(1.05); }

/* ====== ESTADOS SABAI ====== */
.estados {
  background: var(--jade-deep);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 4vw, 3rem);
  overflow: hidden;
}
.estados__header {
  margin-bottom: 2rem;
}
.estados__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: white;
  line-height: 1.1;
  margin: 0.75rem 0;
}
.estados__sub {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  max-width: 400px;
}

.estados__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.estado {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease);
}
.estado:last-child {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.estado:hover {
  padding-left: 1rem;
}

/* Color bar on hover */
.estado__color {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  border-radius: 2px;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.estado:hover .estado__color {
  opacity: 1;
}

.estado__left {
  flex: 1;
}
.estado__time {
  font-family: var(--font-display);
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.6;
  display: block;
  margin-bottom: 0.35rem;
}
.estado__title {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: white;
  line-height: 1.25;
  transition: color 0.3s;
}
.estado:hover .estado__title {
  color: var(--jade-glow);
}

.estado__right {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}
.estado__product {
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.estado__arrow {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.2);
  transition: all 0.3s var(--ease);
}
.estado:hover .estado__arrow {
  color: var(--jade-glow);
  transform: translateX(4px);
}

/* ====== MARQUEE ====== */
.marquee {
  background: var(--surface-dim);
  padding: 1rem 0;
  overflow: hidden;
  border-radius: var(--radius);
  transform: rotate(1deg);
}
.marquee__track {
  display: flex; align-items: center; gap: 2.5rem;
  animation: marquee 25s linear infinite;
  width: max-content;
}
.marquee__track span {
  font-family: var(--font-display);
  font-size: 1.8rem; font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--jade);
  opacity: 0.12;
  white-space: nowrap;
  flex-shrink: 0;
}
.marquee__thai {
  font-family: var(--font-thai) !important;
  font-weight: 500 !important;
  color: var(--gold) !important;
  opacity: 0.2 !important;
}
.marquee__pink {
  color: var(--pink) !important;
  opacity: 0.15 !important;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ====== REVIEWS ====== */
.reviews {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.review {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  transition: all 0.4s var(--ease);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.review:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.07);
}
.review--featured {
  background: var(--jade-deep);
}
.review--featured .review__name { color: white; }
.review--featured .review__text { color: rgba(255,255,255,0.7); }
.review--featured .review__platform { color: var(--jade-glow); }
.review--featured .review__product { background: rgba(255,255,255,0.08); color: var(--jade-glow); }

.review__head {
  display: flex; align-items: center; gap: 0.6rem;
  margin-bottom: 1rem;
}
.review__avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.review__name {
  font-family: var(--font-display);
  font-size: 0.78rem; font-weight: 800;
  color: var(--charcoal);
  display: block;
}
.review__platform {
  font-size: 0.6rem;
  color: var(--concrete);
  font-weight: 500;
}
.review__text {
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--charcoal);
  opacity: 0.7;
  flex: 1;
  margin-bottom: 1rem;
}
.review__product {
  font-family: var(--font-display);
  font-size: 0.55rem; font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--surface-dim);
  color: var(--jade);
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius-pill);
  align-self: flex-start;
}

/* ====== DICAS ====== */
.dicas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.dica {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: all 0.4s var(--ease);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.dica:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}

/* Featured dica spans full width */
.dica--featured {
  grid-column: span 2;
  flex-direction: row;
}
.dica--featured .dica__img {
  width: 45%;
  flex-shrink: 0;
  aspect-ratio: auto;
  min-height: 280px;
}
.dica--featured .dica__content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.dica--featured .dica__title {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
}

.dica__img {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.dica__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.dica:hover .dica__img img { transform: scale(1.05); }

.dica__content {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.dica__tags {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.dica__read {
  font-family: var(--font-display);
  font-size: 0.55rem;
  font-weight: 700;
  color: var(--concrete);
  letter-spacing: 0.04em;
}
.dica__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  line-height: 1.25;
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}
.dica:hover .dica__title { color: var(--jade); }
.dica__excerpt {
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--concrete);
  flex: 1;
  margin-bottom: 0.75rem;
}
.dica__cta {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--jade);
  transition: color 0.3s;
}
.dica:hover .dica__cta { color: var(--pink); }

/* ====== CTA CARD (Creators) ====== */
.cta-card {
  background: var(--charcoal);
  border-radius: var(--radius-xl);
  padding: clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}
.cta-card__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: white;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.cta-card__pink { color: var(--pink); }
.cta-card__sub {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  max-width: 480px;
  margin: 0 auto 1.5rem;
}
.cta-card__hooks {
  display: flex; flex-wrap: wrap;
  gap: 0.5rem; justify-content: center;
  margin-bottom: 2rem;
}
.chip {
  font-family: var(--font-display);
  font-size: 0.7rem; font-weight: 600;
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.55);
  transition: all 0.3s var(--ease);
  cursor: default;
}
.chip:hover { background: var(--pink); color: white; transform: translateY(-2px); }
.chip--light {
  background: var(--surface-dim);
  color: var(--charcoal);
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-pill);
}

/* ====== FOOTER ====== */
.footer {
  background: var(--jade-deep);
  padding: 4rem 1.5rem 2rem;
  margin-top: -1rem;
}
.footer__inner { max-width: 1400px; margin: 0 auto; }
.footer__top {
  display: flex; justify-content: space-between;
  gap: 3rem; margin-bottom: 3rem;
}
.footer__logo {
  font-family: var(--font-display);
  font-weight: 900; font-size: 1.6rem;
  color: white; letter-spacing: -0.02em;
}
.footer__logo-thai {
  font-family: var(--font-thai); font-weight: 300;
  font-size: 1rem; color: var(--gold); opacity: 0.4; display: block;
}
.footer__tagline { font-size: 0.8rem; color: rgba(255,255,255,0.3); margin-top: 0.5rem; }
.footer__cols { display: flex; gap: 4rem; }
.footer__col { display: flex; flex-direction: column; gap: 0.5rem; }
.footer__col-title {
  font-family: var(--font-display);
  font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.25); margin-bottom: 0.5rem;
}
.footer__col a {
  font-size: 0.8rem; color: rgba(255,255,255,0.5);
  text-decoration: none; transition: color 0.2s;
}
.footer__col a:hover { color: var(--pink); }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 2rem; font-size: 0.7rem; color: rgba(255,255,255,0.15);
}
.footer__thai {
  font-family: var(--font-thai); font-weight: 300;
  color: var(--gold); opacity: 0.2; font-size: 0.9rem;
}

/* ====== BOTTOM NAV ====== */
.bottomnav {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 100;
  display: none;
  justify-content: space-around; align-items: center;
  padding: 0.5rem 1rem 1.25rem;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 2rem 2rem 0 0;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.06);
}
.bottomnav__item {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-decoration: none;
  color: var(--concrete);
  padding: 0.4rem 0.8rem;
  transition: all 0.3s var(--ease);
  gap: 0.15rem;
}
.bottomnav__item span {
  font-family: var(--font-body);
  font-size: 0.55rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.bottomnav__item--active {
  background: var(--jade);
  color: white;
  border-radius: var(--radius-pill);
  padding: 0.5rem 1rem;
  box-shadow: 0 4px 16px rgba(0,105,65,0.25);
  transform: scale(1.05);
}
.bottomnav__item:not(.bottomnav__item--active):hover { color: var(--pink); }

/* ====== ANIMATIONS ====== */
[data-animate] {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
[data-animate].is-visible {
  opacity: 1; transform: translateY(0);
}

/* ====== RESPONSIVE ====== */

/* Tablet */
@media (max-width: 1100px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento__card--hero { grid-column: span 2; }
  .reviews { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile */
@media (max-width: 768px) {
  .main { padding: 4.5rem 1rem 7rem; gap: 2rem; }
  .bottomnav { display: flex; }
  .bento { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .bento__card--hero { grid-column: span 2; min-height: 280px; }
  .bento__card--hero .bento__name { font-size: 1.5rem; }
  .reviews { grid-template-columns: 1fr; }
  .hero-card { min-height: 380px; padding: 1.5rem; }
  .sticker-seal { width: 95px; height: 95px; right: 1rem; top: 1rem; }
  .manifesto__split { grid-template-columns: 1fr; }
  .manifesto__split-img { aspect-ratio: 16/10; }
  .manifesto__values { grid-template-columns: 1fr; }
  .estados { padding: 1.5rem; }
  .estado__product { display: none; }
  .dicas { grid-template-columns: 1fr; }
  .dica--featured { grid-column: span 1; flex-direction: column; }
  .dica--featured .dica__img { width: 100%; min-height: auto; aspect-ratio: 16/10; }
  .dica--featured .dica__content { padding: 1.25rem; }
  .dica--featured .dica__title { font-size: 1.3rem; }
  .footer__top { flex-direction: column; gap: 2rem; }
  .footer__cols { gap: 2rem; }
  .section__title { font-size: 1.8rem; }
}

/* Small */
@media (max-width: 480px) {
  .bento { grid-template-columns: 1fr; }
  .bento__card--hero { grid-column: span 1; }
  .hero-card__title { font-size: 2.5rem; }
  .footer__cols { flex-direction: column; gap: 1.5rem; }
  .footer__bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .quiz__title { font-size: 1.8rem; }
}

/* Desktop: hide bottom nav */
@media (min-width: 769px) {
  .main { padding-bottom: 3rem; }
}
