/* =========================================================
   GIGANTE ONLINE — Design tokens
   ========================================================= */
:root{
  --blue-900: #0E2160;
  --blue-700: #1B3FB0;
  --blue-600: #2547C9;
  --blue-500: #3A5DE0;
  --orange-600: #D85A14;
  --orange-500: #F2741D;
  --orange-400: #FF9248;
  --cream: #FFF9F2;
  --paper: #FFFCF8;
  --ink: #15182B;
  --ink-soft: #4A4F6B;
  --line: rgba(20,24,60,0.10);
  --white: #ffffff;

  --font-display: 'Baloo 2', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shadow-soft: 0 14px 34px rgba(14, 33, 96, 0.10);
  --shadow-pop: 0 18px 40px rgba(216, 90, 20, 0.22);
  --container: 1180px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration:none; }
h1,h2,h3,h4{
  font-family: var(--font-display);
  font-weight: 700;
  margin: 0;
  line-height: 1.08;
  letter-spacing: -0.01em;
}
p{ margin:0; line-height:1.6; }
ul{ margin:0; padding:0; list-style:none; }
.container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.text-orange{ color: var(--orange-500); }

@media (prefers-reduced-motion: reduce){
  *{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior:auto !important; }
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  font-family: var(--font-display);
  font-weight:600;
  font-size: 0.98rem;
  padding: 12px 22px;
  border-radius: 100px;
  border: 2px solid transparent;
  cursor:pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space: nowrap;
}
.btn--primary{
  background: var(--orange-500);
  color: var(--white);
  box-shadow: var(--shadow-pop);
}
.btn--primary:hover{ transform: translateY(-2px); background: var(--orange-600); }
.btn--ghost{
  background: transparent;
  border-color: rgba(255,255,255,0.55);
  color: var(--white);
}
.btn--ghost:hover{ background: rgba(255,255,255,0.12); transform: translateY(-2px); }
.btn--lg{ padding: 15px 28px; font-size: 1.05rem; }

/* =========================================================
   TOPBAR + HEADER
   ========================================================= */
.topbar{
  background: var(--blue-900);
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
}
.topbar__inner{
  max-width: var(--container);
  margin:0 auto;
  padding: 7px 24px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar__divider{
  width:1px; height:12px; background: rgba(255,255,255,0.25);
}

.header{
  position: sticky;
  top:0;
  z-index: 50;
  background: rgba(255,252,248,0.97);
  border-bottom: 1px solid var(--line);
}
.header__inner{
  max-width: var(--container);
  margin:0 auto;
  padding: 14px 24px;
  display:flex;
  align-items:center;
  gap: 24px;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  margin-right: auto;
  flex-shrink:0;
}
.brand__icon{ width:38px; height:38px; object-fit:contain; }
.brand__text{
  font-family: var(--font-display);
  font-size: 1.18rem;
  color: var(--blue-700);
}
.brand__text strong{ color: var(--orange-500); }

.nav{
  display:flex;
  align-items:center;
  gap: 22px;
  flex-shrink:0;
  margin-left: 16px;
}
.nav a{
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink-soft);
  position:relative;
  padding: 4px 0;
  white-space: nowrap;
}
.nav a:hover{ color: var(--blue-700); }
.nav a::after{
  content:"";
  position:absolute;
  left:0; bottom:-2px;
  width:0; height:3px;
  background: var(--orange-500);
  border-radius: 4px;
  transition: width .2s ease;
}
.nav a:hover::after{ width:100%; }

.hamburger{
  display:none;
  flex-direction:column;
  justify-content:center;
  width:40px; height:40px;
  background:none;
  border:none;
  cursor:pointer;
  padding:0;
}
.hamburger span{
  display:block;
  width:22px; height:3px;
  background: var(--blue-700);
  border-radius: 3px;
  margin: 2.5px 0;
  transition: transform .2s ease, opacity .2s ease;
}

/* =========================================================
   HERO
   ========================================================= */
.hero{
  position:relative;
  background: linear-gradient(160deg, var(--blue-900) 0%, var(--blue-700) 52%, var(--blue-600) 100%);
  color: var(--white);
  overflow:hidden;
  padding: 86px 0 70px;
}
.hero__bg{ position:absolute; inset:0; pointer-events:none; opacity:0.5; }

.speedlines{ position:absolute; display:flex; flex-direction:column; gap:14px; }
.speedlines span{ display:block; height:10px; border-radius:8px; background: var(--orange-500); }
.speedlines--1{ top:8%; left:-40px; }
.speedlines--1 span:nth-child(1){ width:120px; }
.speedlines--1 span:nth-child(2){ width:60px; margin-left:30px;}
.speedlines--1 span:nth-child(3){ width:90px; }
.speedlines--1 span:nth-child(4){ width:30px; margin-left:60px; border-radius:50%; width:10px; height:10px;}
.speedlines--1 span:nth-child(5){ width:70px; }
.speedlines--2{ bottom:6%; right:6%; opacity:0.6; }
.speedlines--2 span{ background: var(--blue-500); }
.speedlines--2 span:nth-child(1){ width:90px; }
.speedlines--2 span:nth-child(2){ width:40px; margin-left:20px;}
.speedlines--2 span:nth-child(3){ width:130px; }
.speedlines--2 span:nth-child(4){ width:60px; }
.speedlines--2 span:nth-child(5){ width:20px; height:20px; border-radius:50%; }

.hero__inner{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display:grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items:center;
  gap: 48px;
  position:relative;
  z-index:2;
}
.eyebrow{
  display:inline-block;
  font-family: var(--font-display);
  font-weight:600;
  font-size: 0.85rem;
  letter-spacing:.04em;
  text-transform: uppercase;
  color: var(--orange-400);
  margin-bottom: 16px;
}
.eyebrow--dark{ color: var(--orange-600); }

.hero__title{
  font-size: clamp(2.3rem, 4.6vw, 3.6rem);
  margin-bottom: 22px;
}
.hero__title-flip{
  display:inline-block;
  color: var(--orange-400);
  position:relative;
}
.hero__subtitle{
  font-size: 1.08rem;
  color: rgba(255,255,255,0.84);
  max-width: 520px;
  margin-bottom: 32px;
}
.hero__actions{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  margin-bottom: 44px;
}
.hero__badges{
  display:flex;
  gap: 18px;
  flex-wrap:wrap;
}
.hero__badge{
  display:flex;
  flex-direction:column;
  gap:2px;
  padding: 10px 0;
  border-top: 2px solid rgba(255,255,255,0.25);
  min-width: 0;
}
.hero__badge strong{
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--white);
}
.hero__badge span{
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  max-width: 130px;
}

.hero__art{ position:relative; display:flex; justify-content:center; }
.cart-stage{ position:relative; width: min(380px, 90%); }
.cart-stage__img{
  width:100%;
  filter: drop-shadow(0 22px 40px rgba(0,0,0,0.35));
  animation: cart-bounce 5s ease-in-out infinite;
}
@keyframes cart-bounce{
  0%,100%{ transform: translateY(0) rotate(-1.5deg); }
  50%{ transform: translateY(-14px) rotate(1.5deg); }
}
.floaty{
  position:absolute;
  font-size: 1.9rem;
  background: var(--white);
  border-radius: 50%;
  width: 56px; height:56px;
  display:flex; align-items:center; justify-content:center;
  box-shadow: 0 12px 24px rgba(0,0,0,0.25);
  animation: floaty-bob 4s ease-in-out infinite;
}
.floaty--1{ top:0%; left:-8%; animation-delay: 0s; }
.floaty--2{ top:8%; right:-6%; animation-delay: .6s; }
.floaty--3{ bottom:14%; left:-12%; animation-delay: 1.2s; }
.floaty--4{ bottom:2%; right:0%; animation-delay: 1.8s; }
@keyframes floaty-bob{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-10px); }
}

.scroll-cue{
  position:absolute;
  bottom: 22px;
  left:50%;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 20px;
  z-index:3;
}
.scroll-cue span{
  position:absolute;
  top:6px; left:50%;
  width:5px; height:5px;
  margin-left:-2.5px;
  background: var(--orange-400);
  border-radius:50%;
  animation: scroll-cue-move 1.8s ease-in-out infinite;
}
@keyframes scroll-cue-move{
  0%{ top:6px; opacity:1; }
  70%{ top:22px; opacity:0; }
  100%{ top:22px; opacity:0; }
}

/* =========================================================
   MARQUEE
   ========================================================= */
.marquee-section{
  background: var(--cream);
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  overflow:hidden;
}
.marquee-section__label{
  text-align:center;
  font-size: 0.8rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 14px;
  font-weight:600;
}
.marquee{ overflow:hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee__track{
  display:flex;
  width: max-content;
  will-change: transform;
}
.marquee__group{
  display:flex;
  flex-shrink:0;
  gap: 34px;
  padding-right: 34px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--blue-700);
}
.marquee__group span:nth-child(odd){ color: var(--orange-500); }

/* =========================================================
   SECTION GENERIC
   ========================================================= */
.section{ padding: 96px 0; }
.section-head{ max-width: 640px; margin-bottom: 56px; }
.section-head--center{ margin-left:auto; margin-right:auto; text-align:center; max-width: 720px; }
.section-head h2{ font-size: clamp(1.7rem, 3vw, 2.4rem); color: var(--blue-900); text-wrap: balance; }
.section-head__lead{ margin-top:14px; color: var(--ink-soft); font-size:1.05rem; }

/* =========================================================
   STORY / TIMELINE
   ========================================================= */
.section--story{ background: var(--paper); }
.timeline{ position:relative; padding-left: 36px; }
.timeline__line{
  position:absolute;
  left: 9px; top:6px; bottom:6px;
  width: 3px;
  background: linear-gradient(to bottom, var(--orange-500), var(--blue-600));
  border-radius: 4px;
}
.timeline__item{
  position:relative;
  padding-bottom: 44px;
}
.timeline__item:last-child{ padding-bottom:0; }
.timeline__dot{
  position:absolute;
  left: -36px; top:4px;
  width: 20px; height:20px;
  border-radius:50%;
  background: var(--orange-500);
  border: 4px solid var(--paper);
  box-shadow: 0 0 0 3px var(--orange-500);
}
.timeline__dot--future{ background: var(--blue-600); box-shadow: 0 0 0 3px var(--blue-600); }
.timeline__date{
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--orange-600);
  font-weight:600;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: .03em;
}
.timeline__item--future .timeline__date{ color: var(--blue-700); }
.timeline__item h3{ font-size: 1.3rem; color: var(--blue-900); margin-bottom:8px; }
.timeline__item p{ color: var(--ink-soft); max-width: 600px; }

.quote-block{
  margin: 64px auto 0;
  max-width: 760px;
  text-align:center;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  color: var(--blue-900);
  line-height:1.45;
  position:relative;
  padding: 0 20px;
}

/* =========================================================
   MISSÃO VISÃO VALORES
   ========================================================= */
.section--mvv{ background: var(--blue-900); color: var(--white); }
.section--mvv .section-head h2{ color: var(--white); }
.section--mvv .eyebrow{ color: var(--orange-400); }

.mvv-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 76px;
}
.mvv-card{
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
}
.mvv-card--accent{
  background: linear-gradient(160deg, var(--orange-500), var(--orange-600));
  border-color: transparent;
}
.mvv-card__icon{ font-size:1.8rem; margin-bottom:14px; }
.mvv-card h3{ font-size:1.25rem; margin-bottom:10px; }
.mvv-card p{ color: rgba(255,255,255,0.82); font-size: 0.97rem; }

.values__list{
  display:grid;
  gap: 28px;
}
.value-row{
  display:grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  align-items:flex-start;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.value-row:last-child{ border-bottom:none; padding-bottom:0; }
.value-row__num{
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--orange-400);
  opacity:0.85;
}
.value-row h4{ font-size: 1.1rem; margin-bottom:6px; }
.value-row p{ color: rgba(255,255,255,0.78); max-width: 600px; }

/* =========================================================
   PRODUTOS
   ========================================================= */
.section--products{ background: var(--cream); }
.products-grid{
  display:grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
  margin-bottom: 48px;
}
.product-card{
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 22px 20px 26px;
  box-shadow: var(--shadow-soft);
  transition: transform .2s ease, box-shadow .2s ease;
}
.product-card:hover{ transform: translateY(-6px); box-shadow: 0 22px 40px rgba(14,33,96,0.14); }
.product-card__img{
  width: 100%;
  height: 130px;
  display:flex; align-items:center; justify-content:center;
  background: var(--cream);
  border-radius: 16px;
  margin-bottom: 18px;
  overflow: hidden;
  padding: 10px;
}
.product-card__img img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-card h3{ font-size: 1.05rem; color: var(--blue-900); margin-bottom: 8px; }
.product-card p{ color: var(--ink-soft); font-size: 0.9rem; }

.next-banner{
  background: var(--blue-900);
  border-radius: var(--radius-lg);
  padding: 34px 38px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 24px;
  flex-wrap:wrap;
  color: var(--white);
}
.next-banner__text strong{ font-family: var(--font-display); font-size:1.2rem; }
.next-banner__text p{ color: rgba(255,255,255,0.75); margin-top:6px; font-size:0.93rem; }
.next-banner__pill{
  background: var(--orange-500);
  font-family: var(--font-display);
  font-weight:600;
  padding: 10px 20px;
  border-radius: 100px;
  white-space:nowrap;
}

/* =========================================================
   ONDE COMPRAR
   ========================================================= */
.section--where{ background: var(--paper); }
.channels{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 30px;
}
.channel-card{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px;
  display:flex;
  flex-direction:column;
  gap: 14px;
  box-shadow: var(--shadow-soft);
  transition: transform .2s ease;
}
.channel-card:hover{ transform: translateY(-6px); }
.channel-card--ghost{ border-style: dashed; box-shadow:none; }
.channel-card__top{ display:flex; align-items:center; justify-content:space-between; gap:10px; flex-wrap:wrap; }
.channel-card__name{ font-family: var(--font-display); font-size:1.2rem; color: var(--blue-900); }
.badge{
  font-size: 0.72rem;
  font-weight:700;
  padding: 5px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: .03em;
}
.badge--blue{ background: rgba(37,71,201,0.12); color: var(--blue-700); }
.badge--orange{ background: rgba(242,116,29,0.14); color: var(--orange-600); }
.badge--dark{ background: rgba(20,24,60,0.08); color: var(--ink-soft); }
.channel-card__stat strong{ font-family: var(--font-display); font-size: 1.5rem; color: var(--orange-500); display:block; }
.channel-card__stat span{ font-size: 0.82rem; color: var(--ink-soft); }
.channel-card p{ color: var(--ink-soft); font-size: 0.93rem; flex:1; }
.channel-card__cta{ font-weight:700; color: var(--blue-700); font-size:0.92rem; }

.where-footnote{
  text-align:center;
  color: var(--ink-soft);
  font-style: italic;
}

/* =========================================================
   TIME
   ========================================================= */
.section--team{ background: var(--blue-900); color: var(--white); }
.section--team .section-head h2{ color: var(--white); }
.section--team .eyebrow{ color: var(--orange-400); }

.team-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.team-card{
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 18px 14px;
  text-align:center;
  transition: transform .2s ease, background .2s ease;
}
.team-card:hover{ transform: translateY(-6px); background: rgba(255,255,255,0.1); }
.team-card__photo{
  width: 64px; height:64px;
  border-radius:50%;
  object-fit:cover;
  margin: 0 auto 12px;
  border: 3px solid var(--orange-500);
}
.team-card h3{ font-size: 0.98rem; margin-bottom:4px; }
.team-card__role{ font-size:0.7rem; color: var(--orange-400); font-weight:600; text-transform:uppercase; letter-spacing:.02em; }
.team-card__desc{ font-size:0.88rem; color: rgba(255,255,255,0.72); }
.team-card--quote{
  display:flex;
  align-items:center;
  justify-content:center;
  background: transparent;
  border: 2px dashed rgba(255,255,255,0.25);
}
.team-card--quote p{ font-family: var(--font-display); font-size:0.95rem; color: var(--orange-400); }

/* =========================================================
   CTA FINAL
   ========================================================= */
.cta-final{
  position:relative;
  background: linear-gradient(160deg, var(--orange-600), var(--orange-500));
  color: var(--white);
  text-align:center;
  padding: 90px 0;
  overflow:hidden;
}
.cta-final .speedlines span{ background: rgba(255,255,255,0.35); }
.speedlines--3{ top:50%; left:4%; transform: translateY(-50%); }
.speedlines--3 span:nth-child(1){ width:80px; }
.speedlines--3 span:nth-child(2){ width:140px; }
.speedlines--3 span:nth-child(3){ width:50px; }
.speedlines--3 span:nth-child(4){ width:100px; }
.speedlines--3 span:nth-child(5){ width:30px; height:30px; border-radius:50%; }
.cta-final__inner{ position:relative; z-index:2; }
.cta-final h2{ font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom:16px; }
.cta-final p{ font-size:1.1rem; color: rgba(255,255,255,0.9); margin-bottom: 30px; }
.cta-final__pill{
  display:inline-block;
  font-family: var(--font-display);
  font-weight:700;
  background: var(--blue-900);
  padding: 14px 30px;
  border-radius: 100px;
  font-size: 1.05rem;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer{ background: var(--ink); color: rgba(255,255,255,0.75); padding: 64px 0 0; }
.footer__grid{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer__brand{ display:flex; flex-direction:column; align-items:center; text-align:center; }
.footer__logo{ width: 160px; margin: 0 auto 16px; }
.footer__brand p{ font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.footer__col h4{
  font-family: var(--font-display);
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 18px;
}
.footer__col ul{ display:grid; gap:12px; }
.footer__col li{ font-size: 0.9rem; }
.footer__col a:hover{ color: var(--orange-400); }
.footer__whatsapp{
  display:inline-flex;
  align-items:center;
  gap: 8px;
}
.footer__whatsapp svg{ flex-shrink:0; }
.footer__address-text{
  display:block;
  line-height:1.6;
  color: rgba(255,255,255,0.75);
}
.footer__bottom{
  text-align:center;
  padding: 22px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px){
  .hero__inner{ grid-template-columns: 1fr; }
  .hero__art{ order:-1; margin-bottom: 12px; }
  .mvv-grid{ grid-template-columns: 1fr; }
  .products-grid{ grid-template-columns: repeat(3, 1fr); }
  .channels{ grid-template-columns: 1fr; }
  .team-grid{ grid-template-columns: repeat(2, 1fr); }
  .footer__grid{ grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px){
  .nav{
    display:none;
    position:absolute;
    top: 100%; left:0; right:0;
    background: var(--paper);
    flex-direction:column;
    align-items:flex-start;
    gap: 4px;
    padding: 16px 24px 24px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
  }
  .nav.is-open{ display:flex; }
  .nav a{ width:100%; padding: 10px 0; }
  .nav__cta{ display:none; }
  .hamburger{ display:flex; }
  .topbar__inner{ font-size: 0.72rem; gap:10px; }
  .hero{ padding: 50px 0 60px; }
  .timeline{ padding-left: 28px; }
  .timeline__dot{ left:-28px; }
  .products-grid{ grid-template-columns: repeat(2, 1fr); }
  .team-grid{ grid-template-columns: 1fr 1fr; }
  .footer__grid{ grid-template-columns: 1fr; gap:32px; }
  .section{ padding: 64px 0; }
}

