/* =============================================
   MAGAROTI SUCOS — styles.css
   Paleta baseada na etiqueta do produto
   ============================================= */

/* ===== TOKENS DE DESIGN ===== */
:root {
  /* Cores extraídas da etiqueta */
  --laranja:        #C95A1E;   /* laranja principal (texto logo) */
  --laranja-vivo:   #E06B20;   /* laranja para CTAs / acentos */
  --laranja-claro:  #F5A55A;   /* laranja suave */
  --verde:          #4A7C3F;   /* verde das folhas */
  --verde-claro:    #6A9E5A;   /* verde mais suave */
  --creme:          #F5EFE0;   /* fundo bege da etiqueta */
  --creme-escuro:   #EDE5D0;   /* variação mais escura do creme */
  --marrom:         #3B2010;   /* texto escuro */
  --marrom-mid:     #6B3A1F;   /* texto médio */
  --branco:         #FFFDF7;   /* branco levemente quente */

  /* Tipografia */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', 'Segoe UI', sans-serif;

  /* Espaçamentos */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;

  /* Border-radius */
  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-full: 999px;

  /* Sombras */
  --shadow-sm:  0 2px 8px rgba(59,32,16,.08);
  --shadow-md:  0 8px 32px rgba(59,32,16,.12);
  --shadow-lg:  0 20px 60px rgba(59,32,16,.16);

  /* Transições */
  --ease: cubic-bezier(.4, 0, .2, 1);
  --duration: 280ms;
}

/* ===== 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-color: var(--branco);
  color: var(--marrom);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }

/* ===== LAYOUT ===== */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: var(--space-2xl) 0;
}

.section--alt {
  background-color: var(--creme);
}

/* ===== TIPOGRAFIA COMPARTILHADA ===== */
.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--verde);
  margin-bottom: var(--space-sm);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--marrom);
  margin-bottom: var(--space-md);
}

.section-desc {
  font-size: 1.1rem;
  color: var(--marrom-mid);
  max-width: 560px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

/* ===== BOTÕES ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: var(--radius-full);
  font-size: .95rem;
  font-weight: 600;
  transition: transform var(--duration) var(--ease),
              box-shadow var(--duration) var(--ease),
              background var(--duration) var(--ease);
}

.btn--primary {
  background: var(--laranja-vivo);
  color: var(--branco);
  box-shadow: 0 4px 20px rgba(224,107,32,.35);
}
.btn--primary:hover {
  background: var(--laranja);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(224,107,32,.45);
}

.btn--ghost {
  background: transparent;
  color: var(--laranja-vivo);
  border: 2px solid var(--laranja-vivo);
}
.btn--ghost:hover {
  background: var(--laranja-vivo);
  color: var(--branco);
  transform: translateY(-2px);
}

.btn--whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 4px 16px rgba(37,211,102,.3);
}
.btn--whatsapp:hover {
  background: #1DAA56;
  transform: translateY(-2px);
}

.btn--full { width: 100%; justify-content: center; }


/* =========================================
   HEADER / NAV
   ========================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: .9rem 0;
  background: rgba(255,253,247,.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,90,30,.1);
  transition: box-shadow var(--duration) var(--ease),
              padding var(--duration) var(--ease);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
  padding: .6rem 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav__logo {
  display: flex;
  align-items: baseline;
  gap: .3rem;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--laranja);
  line-height: 1;
}

.logo-sub {
  font-size: .8rem;
  font-weight: 600;
  color: var(--verde);
  letter-spacing: .05em;
  text-transform: lowercase;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__link {
  font-size: .9rem;
  font-weight: 500;
  color: var(--marrom-mid);
  transition: color var(--duration) var(--ease);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0; right: 0;
  height: 2px;
  background: var(--laranja-vivo);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform var(--duration) var(--ease);
}

.nav__link:hover { color: var(--laranja-vivo); }
.nav__link:hover::after { transform: scaleX(1); }

.nav__link--cta {
  background: var(--laranja-vivo);
  color: var(--branco) !important;
  padding: .5rem 1.25rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  transition: background var(--duration) var(--ease),
              transform var(--duration) var(--ease);
}
.nav__link--cta::after { display: none; }
.nav__link--cta:hover { background: var(--laranja); transform: translateY(-1px); }

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


/* =========================================
   HERO
   ========================================= */
.hero {
  min-height: 100svh;
  padding-top: 6rem;
  padding-bottom: var(--space-xl);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg-shape {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 70% at 70% 50%, #FBE8D3 0%, transparent 70%);
  pointer-events: none;
}

/* Círculos decorativos de fundo */
.hero__bg-circles { position: absolute; inset: 0; pointer-events: none; }

.circle {
  position: absolute;
  border-radius: 50%;
  opacity: .06;
  background: var(--laranja-vivo);
}
.circle--1 { width: 600px; height: 600px; right: -100px; top: -120px; }
.circle--2 { width: 350px; height: 350px; right: 200px; bottom: -80px; opacity: .04; background: var(--verde); }
.circle--3 { width: 200px; height: 200px; left: 10%; top: 20%; opacity: .05; }

.hero__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-block;
  background: rgba(74,124,63,.1);
  color: var(--verde);
  border: 1px solid rgba(74,124,63,.25);
  padding: .4rem 1rem;
  border-radius: var(--radius-full);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .05em;
  margin-bottom: var(--space-md);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--marrom);
  margin-bottom: var(--space-md);
}

.hero__title em {
  font-style: italic;
  color: var(--laranja);
}

.hero__subtitle {
  font-size: 1.1rem;
  color: var(--marrom-mid);
  max-width: 500px;
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: var(--space-lg);
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 1.5rem;
  background: var(--branco);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(201,90,30,.08);
  width: fit-content;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.trust-item strong {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--laranja);
}
.trust-item span {
  font-size: .72rem;
  color: var(--marrom-mid);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 500;
}

.trust-divider {
  width: 1px;
  height: 36px;
  background: rgba(201,90,30,.15);
}

/* Garrafa / Visual Hero */
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__bottle-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero__bottle {
  width: 180px;
  height: 400px;
  background: linear-gradient(165deg, #FFF3E0 0%, #FFCC80 40%, #FF8F00 75%, #E65100 100%);
  border-radius: 60px 60px 40px 40px;
  box-shadow: 0 30px 80px rgba(201,90,30,.3), inset 0 2px 6px rgba(255,255,255,.4);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float 4s ease-in-out infinite;
}

.hero__bottle::before {
  content: '';
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 36px;
  background: linear-gradient(to bottom, #FFD0A0, #FFAA60);
  border-radius: 12px 12px 0 0;
  box-shadow: inset 0 1px 3px rgba(255,255,255,.3);
}

.bottle-label {
  background: rgba(245,239,224,.95);
  border-radius: 12px;
  padding: 1rem .75rem;
  text-align: center;
  width: 130px;
  box-shadow: 0 2px 8px rgba(59,32,16,.1);
}

.label-brand {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--laranja);
  line-height: 1;
}

.label-type {
  display: block;
  font-size: .65rem;
  color: var(--marrom-mid);
  font-weight: 500;
  margin-top: .25rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.label-size {
  display: block;
  font-size: .7rem;
  color: var(--marrom);
  font-weight: 600;
  margin-top: .5rem;
}

/* Emojis flutuantes decorativos */
.hero__slice {
  position: absolute;
  font-size: 2rem;
  animation: float 3s ease-in-out infinite;
  pointer-events: none;
}

.hero__slice--1 { right: -20px; top: 20%; animation-delay: .5s; }
.hero__slice--2 { left: -10px; top: 40%; animation-delay: 1s; font-size: 1.4rem; }
.hero__slice--3 { right: 10px; bottom: 20%; animation-delay: 1.5s; font-size: 1.2rem; }

/* Indicador de scroll */
.hero__scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  opacity: .5;
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--marrom-mid);
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--laranja);
  border-bottom: 2px solid var(--laranja);
  transform: rotate(45deg);
  animation: bounce 1.8s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}

@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50%       { transform: rotate(45deg) translateY(5px); }
}


/* =========================================
   SOBRE
   ========================================= */
.sobre__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: var(--space-xl);
  align-items: center;
}

.sobre__img-wrap {
  position: relative;
}

.sobre__img-placeholder {
  height: 420px;
  background: linear-gradient(135deg, var(--verde-claro) 0%, var(--verde) 60%, #2D5A23 100%);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
}

.sobre__img-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.15), transparent 60%);
}

.placeholder-icon {
  font-size: 5rem;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.2));
}

.sobre__img-placeholder span {
  font-size: .85rem;
  color: rgba(255,255,255,.8);
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 500;
}

.sobre__badge-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--laranja-vivo);
  color: var(--branco);
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(224,107,32,.35);
  text-align: center;
}

.badge-number {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
}

.badge-label {
  font-size: .62rem;
  font-weight: 500;
  line-height: 1.3;
  opacity: .9;
}

.sobre__text p {
  color: var(--marrom-mid);
  margin-bottom: var(--space-sm);
  font-size: 1.02rem;
}

.sobre__pilares {
  margin-top: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pilar {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--creme);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--laranja);
}

.pilar__icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.pilar strong {
  display: block;
  font-weight: 600;
  color: var(--marrom);
  font-size: .95rem;
}

.pilar span {
  font-size: .8rem;
  color: var(--marrom-mid);
}


/* =========================================
   PROCESSO
   ========================================= */
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 740px;
  margin: 0 auto;
  position: relative;
}

.step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 1.5rem;
  align-items: start;
  position: relative;
}

.step__icon {
  width: 72px;
  height: 72px;
  background: var(--branco);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: var(--shadow-md);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  border: 3px solid var(--creme-escuro);
  transition: border-color var(--duration) var(--ease), transform var(--duration) var(--ease);
}

.step:hover .step__icon {
  border-color: var(--laranja-claro);
  transform: scale(1.08);
}

.step__content {
  padding: .5rem 0 2.5rem;
}

.step__content h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--marrom);
  margin-bottom: .5rem;
}

.step__content p {
  color: var(--marrom-mid);
  font-size: .95rem;
}

.step[data-step]::before {
  content: attr(data-step);
  position: absolute;
  top: -8px;
  left: -8px;
  font-size: .62rem;
  font-weight: 700;
  color: var(--laranja-vivo);
  letter-spacing: .06em;
  background: var(--branco);
  padding: 1px 4px;
  border-radius: 4px;
  z-index: 2;
}

.step__connector {
  width: 2px;
  height: 2rem;
  background: linear-gradient(to bottom, var(--laranja-claro), var(--laranja));
  margin-left: 35px;
  opacity: .35;
}


/* =========================================
   DIFERENCIAIS
   ========================================= */
.diferenciais__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.diferencial {
  background: var(--creme);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  border: 1px solid rgba(201,90,30,.08);
  transition: transform var(--duration) var(--ease),
              box-shadow var(--duration) var(--ease),
              border-color var(--duration) var(--ease);
}

.diferencial:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201,90,30,.2);
}

.diferencial__icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.diferencial h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--marrom);
  margin-bottom: .5rem;
}

.diferencial p {
  font-size: .9rem;
  color: var(--marrom-mid);
  line-height: 1.6;
}


/* =========================================
   GALERIA
   ========================================= */
.galeria__grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 1.25rem;
  min-height: 360px;
}

.galeria__item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform var(--duration) var(--ease),
              box-shadow var(--duration) var(--ease);
}

.galeria__item:hover {
  transform: scale(1.025);
  box-shadow: var(--shadow-lg);
}

.galeria__placeholder {
  height: 100%;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.5rem;
  text-align: center;
  background: linear-gradient(145deg, #FFF3E0, #FFE0B2);
  border: 2px dashed rgba(201,90,30,.25);
}

.galeria__item--featured .galeria__placeholder {
  background: linear-gradient(145deg, #FFF3E0, #FFCC80, #FFB74D);
  border-style: solid;
  border-color: rgba(201,90,30,.15);
  border-width: 1px;
  box-shadow: var(--shadow-sm);
}

.galeria__emoji {
  font-size: 3rem;
}

.galeria__item--featured .galeria__emoji { font-size: 4rem; }

.galeria__info strong {
  display: block;
  font-weight: 600;
  color: var(--marrom);
  font-size: .9rem;
}

.galeria__info span {
  font-size: .78rem;
  color: var(--marrom-mid);
}

.galeria__tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--laranja-vivo);
  color: var(--branco);
  font-size: .72rem;
  font-weight: 700;
  padding: .35rem .75rem;
  border-radius: var(--radius-full);
}

/* ===== DEPOIMENTOS ===== */
.depoimentos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.depoimento {
  background: var(--creme);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(201,90,30,.1);
  font-size: .95rem;
  color: var(--marrom-mid);
}

.depoimento p {
  margin-bottom: .75rem;
}

.depoimento span {
  font-size: .8rem;
  font-weight: 600;
  color: var(--laranja);
}

/* Responsivo */
@media (max-width: 900px) {
  .depoimentos__grid {
    grid-template-columns: 1fr;
  }
}


/* =========================================
   PEDIDO / FORMULÁRIO
   ========================================= */
.pedido__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: var(--space-xl);
  align-items: start;
}

.pedido__info p {
  color: var(--marrom-mid);
  font-size: 1.02rem;
  margin-bottom: var(--space-md);
}

.pedido__beneficios {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin-bottom: var(--space-lg);
}

.pedido__beneficios li {
  font-size: .95rem;
  color: var(--marrom-mid);
  display: flex;
  align-items: center;
  gap: .5rem;
}

.pedido__contact p {
  font-size: .85rem;
  color: var(--marrom-mid);
  margin-bottom: .75rem;
}

/* Formulário */
.pedido__form-wrap {
  background: var(--branco);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(201,90,30,.08);
}

.form { display: flex; flex-direction: column; gap: 1.25rem; }

.form__group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.form__label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--marrom);
  letter-spacing: .02em;
}

.form__input {
  padding: .85rem 1rem;
  border: 1.5px solid rgba(59,32,16,.12);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--marrom);
  background: var(--branco);
  transition: border-color var(--duration) var(--ease),
              box-shadow var(--duration) var(--ease);
  outline: none;
}

.form__input:focus {
  border-color: var(--laranja-vivo);
  box-shadow: 0 0 0 3px rgba(224,107,32,.12);
}

.form__input.error {
  border-color: #D32F2F;
  box-shadow: 0 0 0 3px rgba(211,47,47,.1);
}

.form__select { appearance: none; cursor: pointer; }

.form__textarea { resize: vertical; min-height: 100px; }

.form__error {
  font-size: .78rem;
  color: #D32F2F;
  font-weight: 500;
  min-height: 1.1em;
}

.form__privacy {
  font-size: .75rem;
  color: var(--marrom-mid);
  text-align: center;
  line-height: 1.5;
  opacity: .7;
}

/* Mensagem de sucesso */
.form__success {
  text-align: center;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.success__icon { font-size: 4rem; }
.form__success h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--marrom);
}
.form__success p { color: var(--marrom-mid); }


/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: var(--marrom);
  color: rgba(255,253,247,.8);
  padding: var(--space-xl) 0 var(--space-lg);
}

.footer__content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-lg);
  align-items: start;
}

.footer__brand .logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--laranja-claro);
}

.footer__brand .logo-sub {
  color: var(--verde-claro);
}

.footer__brand p {
  margin-top: .75rem;
  font-size: .85rem;
  line-height: 1.6;
}

.footer__links nav {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.footer__links a {
  font-size: .85rem;
  opacity: .75;
  transition: opacity var(--duration) var(--ease), color var(--duration) var(--ease);
}

.footer__links a:hover {
  opacity: 1;
  color: var(--laranja-claro);
}

.footer__legal {
  font-size: .78rem;
  opacity: .6;
  line-height: 1.8;
}


.whatsapp-float {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 55px;
  height: 55px;
  background: #25D366;
  color: #fff;
  font-size: 1.6rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37,211,102,.4);
  z-index: 100;
  transition: transform .2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}


/* =========================================
   ANIMAÇÕES DE ENTRADA (Intersection Observer)
   ========================================= */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up:nth-child(2) { transition-delay: .1s; }
.fade-up:nth-child(3) { transition-delay: .2s; }
.fade-up:nth-child(4) { transition-delay: .3s; }
.fade-up:nth-child(5) { transition-delay: .4s; }
.fade-up:nth-child(6) { transition-delay: .5s; }


/* =========================================
   RESPONSIVO — TABLET (≤ 900px)
   ========================================= */
@media (max-width: 900px) {

  .nav__links {
    position: fixed;
    top: 64px;
    left: 0; right: 0;
    background: rgba(255,253,247,.97);
    backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: center;
    padding: 2rem 1rem;
    gap: 1.5rem;
    box-shadow: var(--shadow-md);
    transform: translateY(-120%);
    transition: transform .35s var(--ease);
    z-index: 99;
    border-bottom: 1px solid rgba(201,90,30,.1);
  }

  .nav__links.open { transform: translateY(0); }

  .nav__hamburger { display: flex; }

  .hero__content { grid-template-columns: 1fr; text-align: center; }
  .hero__subtitle { max-width: 100%; }
  .hero__actions { justify-content: center; }
  .hero__trust { margin: 0 auto; }
  .hero__visual { display: none; }

  .sobre__grid { grid-template-columns: 1fr; }
  .sobre__visual { display: none; }

  .diferenciais__grid { grid-template-columns: repeat(2, 1fr); }

  .galeria__grid { grid-template-columns: 1fr 1fr; }
  .galeria__item--featured { grid-column: span 2; }

  .pedido__grid { grid-template-columns: 1fr; }

  .footer__content { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: span 2; }
}


/* =========================================
   RESPONSIVO — MOBILE (≤ 600px)
   ========================================= */
@media (max-width: 600px) {

  .hero { padding-top: 5rem; }

  .hero__title { font-size: 2rem; }

  .hero__actions { flex-direction: column; align-items: center; }
  .hero__actions .btn { width: 100%; justify-content: center; }

  .hero__trust { gap: 1rem; padding: 1rem; }
  .trust-item strong { font-size: 1.1rem; }

  .section { padding: var(--space-xl) 0; }

  .diferenciais__grid { grid-template-columns: 1fr; }

  .galeria__grid { grid-template-columns: 1fr; }
  .galeria__item--featured { grid-column: span 1; }

  .pedido__form-wrap { padding: 1.5rem 1rem; }

  .footer__content { grid-template-columns: 1fr; }
  .footer__brand { grid-column: span 1; }

  .back-to-top { bottom: 1rem; right: 1rem; }

  .steps { padding-left: 0; }
}