/* ====================================================
   IPO EMBALAGENS — Landing Page
   style.css
==================================================== */

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

:root {
  --teal:        #047485;
  --teal-dark:   #047485;
  --teal-light:  #E8F7F9;
  --teal-badge:  #C8EEF2;
  --green:       #3DC93D;
  --green-hover: #2EAF2E;
  --dark:        #242424;
  --gray:        #444444;
  --bg:          #FFFFFF;
  --deco-blue:   #D6EBF2;

  --font: 'Montserrat', sans-serif;
  --container: 1200px;
  --section-pad: 72px;
  --bg-gray: #F5F5F5;
}

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

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--dark);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

/* ====================================================
   SEÇÃO 01 — HERO
==================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
}

/* Fundo decorativo apenas no lado direito */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background: url('../images/fundo-hero.png') center center / cover no-repeat;
  z-index: 0;
}

/* ---------- HEADER / LOGO ---------- */
.header {
  padding: 28px 0 0;
  position: relative;
  z-index: 10;
}

.logo {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.logo-img {
  height: 64px;
  width: auto;
  display: block;
}

/* ---------- HERO INNER ---------- */
.hero-inner {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-top: 40px;
  padding-bottom: 60px;
  position: relative;
  z-index: 5;
}

/* ---------- ESQUERDA ---------- */
.hero-left {
  flex: 0 0 auto;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(90deg, #D9D9D9 0%, #047485 100%);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  padding: 8px 24px;
  border-radius: 8px;
  border: none;
  width: fit-content;
  box-shadow: 0 0 10px 0 #047485;
}

/* Título */
.hero-title {
  font-size: clamp(2rem, 3.6vw, 2.6rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--dark);
  letter-spacing: -0.5px;
}

.hero-title .highlight {
  color: var(--teal);
  font-style: italic;
  font-weight: 900;
}

/* Subtítulo */
.hero-sub {
  font-size: 1rem;
  font-weight: 700;
  color: var(--teal);
}

/* Botão WhatsApp */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green);
  color: #fff;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  padding: 16px 28px;
  border-radius: 8px;
  width: fit-content;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s cubic-bezier(.22,1,.36,1),
              box-shadow 0.25s ease,
              background 0.25s ease;
  box-shadow: 0 4px 16px rgba(61, 201, 61, 0.3);
  isolation: isolate;
}

/* Brilho deslizante (shine sweep) */
.btn-whatsapp::before {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(255,255,255,0.45) 50%,
    transparent 70%
  );
  transform: skewX(-15deg);
  transition: left 0.55s ease;
  z-index: 1;
  pointer-events: none;
}

/* Anel de pulso */
.btn-whatsapp::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 8px;
  box-shadow: 0 0 0 0 rgba(61, 201, 61, 0.55);
  transition: box-shadow 0.4s ease;
  pointer-events: none;
}

.btn-whatsapp:hover {
  background: var(--green-hover);
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 10px 32px rgba(61, 201, 61, 0.55);
}

.btn-whatsapp:hover::before {
  left: 160%;
}

.btn-whatsapp:hover::after {
  box-shadow: 0 0 0 8px rgba(61, 201, 61, 0);
}

/* Ícone gira levemente no hover */
.btn-whatsapp:hover svg {
  transform: rotate(12deg) scale(1.15);
}

.btn-whatsapp svg {
  transition: transform 0.35s cubic-bezier(.22,1,.36,1);
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.btn-whatsapp span,
.btn-whatsapp > *:not(svg) {
  position: relative;
  z-index: 2;
}

.btn-whatsapp:active {
  transform: translateY(-1px) scale(0.98);
  box-shadow: 0 4px 16px rgba(61, 201, 61, 0.3);
}

/* ---------- DIREITA — IMAGEM ---------- */
.hero-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 380px;
}

.hero-img {
  width: 100%;
  max-width: 620px;
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.08));
}

/* ---------- RODAPÉ DA SEÇÃO ---------- */
.hero-footer {
  position: relative;
  z-index: 5;
  text-align: center;
  padding: 14px 0 16px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.hero-footer p {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 4px;
  color: var(--dark);
  text-transform: uppercase;
  opacity: 0.55;
}

/* ---------- TICKER DE CATEGORIAS ---------- */
.ticker {
  position: relative;
  z-index: 10;
  background: var(--teal-dark);
  overflow: hidden;
  padding: 11px 0;
}

.ticker-track {
  display: flex;
  width: max-content;
  white-space: nowrap;
  will-change: transform;
  animation: ticker-scroll 40s linear infinite;
}

.ticker-track span {
  color: #fff;
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  flex-shrink: 0;
  padding-right: 0;
}

@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* ====================================================
   SEÇÃO 02 — SOBRE / STATS
==================================================== */

.s02 {
  background: var(--bg-gray);
  padding-top: var(--section-pad);
  padding-bottom: var(--section-pad);
  border-bottom: 3px solid var(--teal);
  overflow: hidden;
}

/* --- Cabeçalho --- */
.s02-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 52px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.s02-title {
  font-family: var(--font);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
}

.s02-highlight {
  color: var(--teal);
  font-weight: 900;
}

.s02-sub {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  color: #666;
  line-height: 1.75;
  max-width: 580px;
  margin: 0 auto;
}

/* --- Corpo full-width --- */
.s02-body {
  display: flex;
  align-items: flex-end;
}

/* Stats: padding esquerdo espelha o container */
.s02-stats {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 26px;
  flex: 1;
  padding-left: max(40px, calc((100vw - var(--container)) / 2 + 40px));
  padding-right: 40px;
}

.s02-stat {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.stat-num {
  font-family: var(--font);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 800;
  color: var(--teal);
  white-space: nowrap;
}

.stat-label {
  font-family: var(--font);
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  font-weight: 700;
  color: var(--dark);
}

/* --- Imagem grudada à direita --- */
.s02-img-wrap {
  flex: 0 0 auto;
  line-height: 0;
}

.s02-img {
  display: block;
  height: 340px;
  width: auto;
  object-fit: cover;
}

/* ====================================================
   SEÇÃO 03 — MARCAS PARCEIRAS
==================================================== */

.s03 {
  background: #fff;
  padding: var(--section-pad) 0;
}

.s03-title {
  font-family: var(--font);
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  font-weight: 600;
  color: var(--dark);
  text-align: center;
  margin-bottom: 48px;
  line-height: 1.3;
}

.s03-highlight {
  color: var(--teal);
  font-weight: 600;
}

.s03-title strong {
  font-weight: 800;
  color: var(--dark);
}

.s03-logos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}

.s03-logos img {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: grayscale(0);
}

.s03-cta {
  display: flex;
  justify-content: center;
}

/* ====================================================
   SEÇÃO 04 — CLIENTES
==================================================== */

.s04 {
  background: #fff;
}

/* Área teal com texto */
.s04-top {
  background: var(--teal-dark);
  padding: var(--section-pad) 0 36px;
}

.s04-text {
  font-family: var(--font);
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 500;
  color: #fff;
  text-align: center;
  line-height: 1.6;
  margin-bottom: 32px;
}

.s04-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  width: 70%;
  margin: 0 auto;
}

/* Faixa branca das logos */
.s04-logos-strip {
  background: #fff;
  padding: var(--section-pad) 0;
}

.s04-logos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.s04-logos img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

/* Faixa teal inferior */
.s04-bottom {
  background: var(--teal-dark);
  height: 48px;
}

/* ====================================================
   SEÇÃO 05 — CATÁLOGO POR SEGMENTO
==================================================== */

.s05 {
  background: var(--bg-gray);
  padding: var(--section-pad) 0;
}

.s05-title {
  font-family: var(--font);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--dark);
  text-align: center;
  line-height: 1.25;
  margin-bottom: 48px;
}

.s05-highlight {
  color: var(--teal);
}

/* --- Abas --- */
.s05-tabs {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid #e4e4e4;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  overflow: hidden;
  margin-bottom: 28px;
}

.s05-tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 600;
  color: #555;
  padding: 14px 10px;
  white-space: nowrap;
  outline: none;
  -webkit-appearance: none;
  transition: color 0.22s ease, background 0.22s ease, transform 0.18s ease;
  position: relative;
}

.s05-tab:hover {
  color: var(--teal);
  background: var(--teal-light);
  transform: translateY(-2px);
}

.s05-tab img {
  height: 22px;
  width: auto;
  transition: transform 0.22s ease;
}

.s05-tab:hover img {
  transform: scale(1.18);
}

.s05-tab.active {
  color: var(--teal);
  background: var(--teal-light);
}

/* barra de progresso auto-rotação */
.s05-tab.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--teal);
  border-radius: 0;
  animation: s05-progress 5s linear forwards;
}

.s05-tab.paused::after {
  animation-play-state: paused;
  width: 100%;
}

@keyframes s05-progress {
  from { width: 0%; }
  to   { width: 100%; }
}

.s05-tab-divider {
  width: 1px;
  height: 28px;
  background: #e4e4e4;
  flex-shrink: 0;
}

/* --- Card --- */
.s05-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
  padding: 36px 48px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  transition: opacity 0.18s ease, transform 0.18s ease, filter 0.18s ease;
  will-change: transform, opacity, filter;
}

.s05-card--out {
  opacity: 0;
  transform: scale(0.94) translateY(12px);
  filter: blur(6px);
}

.s05-card--in {
  opacity: 0;
  transform: scale(0.96) translateY(-16px);
  filter: blur(8px);
  transition: none;
}

.s05-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.s05-card-text {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  color: #555;
  text-align: center;
  line-height: 1.75;
  max-width: 580px;
}

.s05-produtos-img {
  width: 100%;
  max-width: 680px;
  height: auto;
  object-fit: contain;
  display: block;
}

/* ====================================================
   SEÇÃO 06 — COMO FUNCIONA
==================================================== */

.s06 {
  background: #fff;
  padding-bottom: var(--section-pad);
  border-top: 3px solid var(--teal);
  border-bottom: 3px solid var(--teal);
}

/* --- Topo full-width: barra sangra à esquerda --- */
.s06-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--section-pad);
  padding-right: max(40px, calc((100vw - var(--container)) / 2 + 40px));
  margin-bottom: 48px;
}

.s06-title-line1 {
  font-family: var(--font);
  font-size: clamp(1.3rem, 2.2vw, 1.85rem);
  font-weight: 700;
  color: var(--dark);
  padding-left: max(40px, calc((100vw - var(--container)) / 2 + 40px));
  margin-bottom: 8px;
}

/* Banner sangra à esquerda — sem padding-left do container */
.s06-title-banner {
  display: block;
  background: var(--teal-dark);
  color: #fff;
  font-family: var(--font);
  font-size: clamp(1.3rem, 2.2vw, 1.85rem);
  font-weight: 800;
  padding: 8px 32px 8px max(40px, calc((100vw - var(--container)) / 2 + 40px));
  width: fit-content;
}

/* --- Corpo: passos + foto --- */
.s06-body {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  margin-bottom: 48px;
}

.s06-left {
  flex: 1;
}

/* --- Passos --- */
.s06-steps {
  list-style: none;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-left: 32px;
}

.s06-steps::before {
  content: '';
  position: absolute;
  left: 5px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: var(--teal);
}

.s06-step {
  position: relative;
}

.step-marker {
  position: absolute;
  left: -32px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--teal);
  z-index: 1;
}

.step-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.step-label {
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 900;
  color: var(--dark);
  letter-spacing: 0.5px;
}

.step-content p {
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 400;
  color: #333;
  line-height: 1.65;
}

.step-content p + p {
  margin-top: 8px;
}

/* --- Texto Pronto — centralizado na seção --- */
.s06-pronto {
  font-family: var(--font);
  font-size: 0.92rem;
  font-weight: 400;
  color: #333;
  text-align: center;
  line-height: 1.65;
}

.pronto-word {
  color: var(--teal);
  font-weight: 700;
}

/* --- Foto --- */
.s06-right {
  flex: 0 0 auto;
}

.s06-img {
  width: 320px;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.s06-btn {
  flex-shrink: 0;
}

/* ====================================================
   SEÇÃO 08 — PERSONALIZAÇÕES
==================================================== */

.s08 {
  background: #fff;
  border-top: 3px solid var(--teal);
  border-bottom: 3px solid var(--teal);
  padding: 80px 0 72px;
}

.s08-title {
  font-family: var(--font);
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  font-weight: 800;
  color: var(--dark);
  text-align: center;
  line-height: 1.2;
  margin-bottom: 56px;
}

.s08-highlight {
  color: var(--teal);
  font-weight: 800;
}

.s08-body {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 56px;
}

.s08-left {
  flex: 0 0 380px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.s08-sub {
  font-family: var(--font);
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--dark);
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.s08-desc {
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 400;
  color: var(--dark);
  line-height: 1.65;
}

.s08-products {
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 400;
  color: #555;
  line-height: 1.7;
}

.s08-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.s08-img {
  width: 100%;
  max-width: 640px;
  height: auto;
  object-fit: contain;
  display: block;
}

.s08-cta {
  display: flex;
  justify-content: center;
}

/* ====================================================
   SEÇÃO 07 — SEM / COM A IPO
==================================================== */

.s07 {
  position: relative;
  background: url('../images/fundo-azul.webp') center center / cover no-repeat;
  border: 4px solid var(--teal);
}

.s07-overlay {
  background: rgba(22, 120, 130, 0.84);
  padding: 72px 0;
}

.s07-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.s07-col-title {
  font-family: var(--font);
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  font-weight: 800;
  color: #fff;
  text-align: center;
  margin-bottom: 28px;
}

.s07-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.s07-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  border-radius: 10px;
  min-height: 84px;
}

.s07-item--red   { background: #E05252; }
.s07-item--green { background: #3DC93D; }

.s07-icon-img {
  flex-shrink: 0;
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.s07-item-text {
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
}

/* ====================================================
   SEÇÃO 09 — FAQ
==================================================== */

.s09 {
  background: #fff;
  padding: 80px 0 88px;
}

.s09-title {
  font-family: var(--font);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--dark);
  text-align: center;
  margin-bottom: 48px;
}

.s09-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.s09-item {
  border-radius: 8px;
  overflow: hidden;
}

.s09-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--teal-dark);
  color: #fff;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  padding: 20px 28px;
  border: none;
  cursor: pointer;
  outline: none;
  border-radius: 8px;
  transition: background 0.2s;
}

.s09-item.active .s09-question {
  border-radius: 8px 8px 0 0;
}

.s09-question:hover {
  background: #0E6B76;
}

/* Chevron */
.s09-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border: 2px solid rgba(255,255,255,0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s;
}

.s09-icon svg {
  width: 14px;
  height: 14px;
  stroke: #fff;
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.25s;
}

.s09-item.active .s09-icon svg {
  transform: rotate(180deg);
}

/* Answer */
.s09-answer {
  background: var(--teal-dark);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s;
  padding: 0 24px;
  border-radius: 0 0 8px 8px;
}

.s09-item.active .s09-answer {
  max-height: 600px;
  padding: 20px 28px 28px;
}

.s09-answer p {
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.7;
}

.s09-answer p strong {
  font-weight: 700;
}

/* ====================================================
   BOTÃO WHATSAPP FIXO
==================================================== */

@keyframes _waPulse {
  0%   { box-shadow: 0 0 0 0   rgba(61,201,61,0.7), 0 4px 20px rgba(61,201,61,0.45); }
  70%  { box-shadow: 0 0 0 18px rgba(61,201,61,0),   0 4px 20px rgba(61,201,61,0.45); }
  100% { box-shadow: 0 0 0 0   rgba(61,201,61,0),   0 4px 20px rgba(61,201,61,0.45); }
}

.whatsapp-fixed {
  position: fixed;
  right: 24px;
  bottom: 28px;
  z-index: 9999;
  width: 58px;
  height: 58px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(61, 201, 61, 0.45);
  animation: _waPulse 2.2s ease-out infinite;
  transition: background 0.2s, transform 0.25s cubic-bezier(.22,1,.36,1);
  text-decoration: none;
}

.whatsapp-fixed:hover {
  background: var(--green-hover);
  transform: scale(1.18) rotate(-10deg);
  animation: none;
  box-shadow: 0 8px 32px rgba(61, 201, 61, 0.65);
}

.whatsapp-fixed:hover svg {
  transform: rotate(20deg) scale(1.1);
}

.whatsapp-fixed svg {
  fill: #fff;
  transition: transform 0.35s cubic-bezier(.22,1,.36,1);
}

/* ====================================================
   RODAPÉ
==================================================== */

.footer {
  background: #E0E0E0;
  border-top: 3px solid var(--teal);
  border-bottom: 3px solid var(--teal);
  padding: 40px 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 40px;
}

/* --- Esquerda --- */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-logo img {
  height: 56px;
  width: auto;
  display: block;
}

.footer-address {
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 400;
  color: #333;
  line-height: 1.55;
}

/* --- Centro --- */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-phone {
  font-family: var(--font);
  font-size: 0.88rem;
  font-weight: 500;
  color: #222;
}

.footer-email {
  font-family: var(--font);
  font-size: 0.88rem;
  font-weight: 400;
  color: #222;
  line-height: 1.5;
  margin-bottom: 10px;
}

.footer-catalog {
  display: inline-block;
  background: var(--teal-dark);
  color: #fff;
  font-family: var(--font);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-decoration: none;
  text-align: center;
  padding: 14px 28px;
  border-radius: 6px;
  border: 2px solid #fff;
  width: fit-content;
  transition: background 0.2s;
}

.footer-catalog:hover {
  background: #0E6B76;
}

/* --- Direita --- */
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.footer-social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font);
  font-size: 0.88rem;
  font-weight: 500;
  color: #222;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-social-link:hover {
  color: var(--teal);
}

/* ====================================================
   RESPONSIVIDADE
==================================================== */

/* ── TABLET LARGO (≤ 1100px) ─────────────────────── */
@media (max-width: 1100px) {
  .s06-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding-right: max(40px, calc((100vw - var(--container)) / 2 + 40px));
  }

  .s08-body {
    gap: 36px;
  }

  .s08-left {
    flex: 0 0 320px;
  }
}

/* ── TABLET (≤ 900px) ────────────────────────────── */
@media (max-width: 900px) {

  /* Base */
  html { font-size: 17px; }

  /* Hero */
  .hero-inner {
    flex-direction: column;
    text-align: center;
    padding-top: 32px;
    padding-bottom: 40px;
    gap: 28px;
  }

  .hero-left {
    align-items: center;
    max-width: 100%;
  }

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

  .hero-right {
    width: 100%;
    min-height: 240px;
  }

  .hero::before {
    width: 100%;
    opacity: 0.35;
  }

  .hero-img {
    max-width: 480px;
  }

  /* S02 */
  .s02-body {
    flex-direction: column;
    align-items: center;
  }

  .s02-stats {
    padding-left: 40px;
    padding-right: 40px;
    padding-bottom: 40px;
    width: 100%;
  }

  .s02-img {
    height: auto;
    width: 100%;
    max-width: 560px;
  }

  /* S06 */
  .s06-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .s06-body {
    flex-direction: column;
    gap: 32px;
  }

  .s06-right {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .s06-img {
    width: 100%;
    max-width: 380px;
  }

  /* S07 */
  .s07-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* S08 */
  .s08-body {
    flex-direction: column;
    gap: 32px;
  }

  .s08-left {
    flex: none;
    width: 100%;
  }

  .s08-right {
    width: 100%;
  }

  .s08-img {
    max-width: 100%;
  }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 32px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* ── MOBILE (≤ 600px) ────────────────────────────── */
@media (max-width: 600px) {

  /* Base */
  html { font-size: 16px; }

  .container { padding: 0 20px; }

  :root { --section-pad: 52px; }

  /* Header */
  .header .container {
    display: flex;
    justify-content: center;
  }

  .logo-img {
    padding-bottom: 16px;
    height: auto;
    width: 120px;
  }

  /* Hero */
  .hero-title {
    font-size: 1.7rem;
    letter-spacing: -0.3px;
  }

  .hero-img {
    max-width: 100%;
  }

  .hero::before {
    opacity: 0.25;
  }

  .hero-footer p {
    font-size: 0.6rem;
    letter-spacing: 2.5px;
  }

  .btn-whatsapp {
    font-size: 0.9rem;
    padding: 14px 20px;
    width: 100%;
    justify-content: center;
  }

  /* S02 */
  .s02-header {
    margin-bottom: 36px;
  }

  .s02-stats {
    padding-left: 20px;
    padding-right: 20px;
    gap: 18px;
  }

  .s02-stat {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2px;
    padding: 14px 18px;
    background: #fff;
    border-radius: 10px;
    border-left: 4px solid var(--teal);
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  }

  .stat-num {
    font-size: 1.5rem;
  }

  .stat-label {
    font-size: 0.88rem;
    font-weight: 500;
  }

  /* S03 */
  .s03-logos {
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px 32px;
    margin-bottom: 36px;
  }

  .s03-logos img {
    height: 38px;
  }

  /* S04 */
  .s04-top {
    padding: 40px 0 28px;
  }

  .s04-logos {
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px 28px;
  }

  .s04-logos img {
    height: 36px;
  }

  .s04-divider {
    width: 90%;
  }

  .s04-logos-strip {
    padding: 40px 0;
  }

  /* S05 */
  .s05-tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    border-radius: 10px;
  }

  .s05-tabs::-webkit-scrollbar { display: none; }

  .s05-tab {
    flex: 0 0 auto;
    font-size: 0.75rem;
    padding: 12px 14px;
    flex-direction: column;
    gap: 5px;
  }

  .s05-tab img {
    height: 26px;
  }

  .s05-tab-divider {
    height: 40px;
  }

  .s05-card {
    padding: 24px 20px 28px;
  }

  .s05-card-text {
    font-size: 0.82rem;
  }

  /* S06 */
  .s06-title-line1 {
    font-size: 1.15rem;
    padding-left: 0;
    text-align: center;
  }

  .s06-title-banner {
    font-size: 1.15rem;
    padding: 8px 20px;
    width: 100%;
    text-align: center;
  }

  .s06-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
    gap: 20px;
  }

  .s06-title-block {
    width: 100%;
  }

  .s06-steps {
    gap: 24px;
  }

  .step-label {
    font-size: 0.88rem;
  }

  .step-content p {
    font-size: 0.84rem;
  }

  .s06-pronto {
    font-size: 0.86rem;
  }

  /* S07 */
  .s07-overlay {
    padding: 48px 0;
  }

  .s07-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 14px 16px;
    min-height: 64px;
    gap: 10px;
  }

  .s07-icon-img {
    width: 40px;
    height: 40px;
  }

  .s07-item-text {
    font-size: 0.9rem;
  }

  .s07-col-title {
    font-size: 1.25rem;
    margin-bottom: 18px;
  }

  /* S08 */
  .s08-left {
    text-align: center;
    align-items: center;
  }

  .s08 {
    padding: 52px 0;
  }

  .s08-title {
    font-size: 1.75rem;
    margin-bottom: 36px;
  }

  .s08-sub {
    font-size: 0.95rem;
  }

  .s08-desc {
    font-size: 0.9rem;
  }

  .s08-products {
    font-size: 0.78rem;
  }

  /* S09 FAQ */
  .s09 {
    padding: 52px 0 60px;
  }

  .s09-question {
    font-size: 0.88rem;
    padding: 16px 18px;
  }

  .s09-answer p {
    font-size: 0.84rem;
  }

  .s09-item.active .s09-answer {
    padding: 16px 18px 20px;
  }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .footer-brand {
    grid-column: auto;
    align-items: center;
  }

  .footer-logo img {
    margin: 0 auto;
  }

  .footer-contact {
    align-items: center;
  }

  .footer-catalog {
    margin: 0 auto;
  }

  .footer-social {
    align-items: center;
    width: 100%;
  }

  .footer-social-link {
    justify-content: center;
  }

  /* WA fixed menor */
  .whatsapp-fixed {
    width: 52px;
    height: 52px;
    right: 16px;
    bottom: 20px;
  }
}

/* ── MOBILE PEQUENO (≤ 400px) ────────────────────── */
@media (max-width: 400px) {
  .hero-title {
    font-size: 1.45rem;
  }

  .hero-badge {
    font-size: 0.72rem;
    padding: 7px 16px;
  }

  .s07-grid {
    gap: 20px;
  }
}

/* ====================================================
   ANIMAÇÕES — HERO ENTRANCE (CSS, on load)
==================================================== */

@keyframes _fadeSlideUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes _fadeSlideDown {
  from { opacity: 0; transform: translateY(-22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes _fadeSlideRight {
  from { opacity: 0; transform: translateX(64px); }
  to   { opacity: 1; transform: translateX(0); }
}

.header                  { animation: _fadeSlideDown  0.55s cubic-bezier(.22,1,.36,1) both; }
.hero-badge              { animation: _fadeSlideUp    0.65s 0.15s cubic-bezier(.22,1,.36,1) both; }
.hero-title              { animation: _fadeSlideUp    0.7s  0.3s  cubic-bezier(.22,1,.36,1) both; }
.hero-sub                { animation: _fadeSlideUp    0.6s  0.46s cubic-bezier(.22,1,.36,1) both; }
.hero-left .btn-whatsapp { animation: _fadeSlideUp    0.6s  0.58s cubic-bezier(.22,1,.36,1) both; }
.hero-img                { animation: _fadeSlideRight 0.85s 0.2s  cubic-bezier(.22,1,.36,1) both; }
.hero-footer             { animation: _fadeSlideUp    0.5s  0.8s  cubic-bezier(.22,1,.36,1) both; }
.ticker                  { animation: _fadeSlideUp    0.5s  0.95s cubic-bezier(.22,1,.36,1) both; }

/* ====================================================
   ANIMAÇÕES — SCROLL REVEAL
==================================================== */

[data-animate] {
  opacity: 0;
  transition-property: opacity, transform;
  transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  transition-duration: 0.75s;
}

[data-animate].is-visible {
  opacity: 1 !important;
  transform: none !important;
}

[data-animate="fade-up"]    { transform: translateY(48px); }
[data-animate="fade-left"]  { transform: translateX(-56px); }
[data-animate="fade-right"] { transform: translateX(56px); }
[data-animate="zoom-in"]    { transform: scale(0.80); }
[data-animate="fade-in"]    { /* apenas opacidade */ }

/* Stagger delays */
[data-delay="100"] { transition-delay: 0.10s; }
[data-delay="150"] { transition-delay: 0.15s; }
[data-delay="200"] { transition-delay: 0.20s; }
[data-delay="250"] { transition-delay: 0.25s; }
[data-delay="300"] { transition-delay: 0.30s; }
[data-delay="350"] { transition-delay: 0.35s; }
[data-delay="400"] { transition-delay: 0.40s; }
[data-delay="500"] { transition-delay: 0.50s; }
[data-delay="600"] { transition-delay: 0.60s; }
[data-delay="700"] { transition-delay: 0.70s; }
[data-delay="800"] { transition-delay: 0.80s; }
