/* ============================================================
   DELÍCIAS GOURMET — SEÇÕES
   Hero, marquee, sobre, produtos, passos, encomendas,
   revenda, FAQ, contato, CTA final e rodapé
   ============================================================ */

/* ------------------------------------------------------------
   HERO
------------------------------------------------------------ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-h) + 3rem);
  padding-bottom: 5rem;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 15% 0%, rgba(250, 231, 235, .95) 0%, transparent 60%),
    radial-gradient(ellipse 70% 70% at 95% 20%, rgba(247, 235, 192, .55) 0%, transparent 55%),
    var(--grad-fundo);
}

/* Brilhos de fundo */
.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}
.hero__glow--1 {
  width: 460px; height: 460px;
  top: -120px; left: -140px;
  background: rgba(217, 85, 123, .18);
  animation: float 14s ease-in-out infinite;
}
.hero__glow--2 {
  width: 400px; height: 400px;
  bottom: -140px; right: -80px;
  background: rgba(201, 162, 39, .18);
  animation: float 18s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(30px, -28px) scale(1.08); }
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}

.hero__title { margin: 1.4rem 0 1.3rem; }

.hero__text {
  font-size: clamp(1rem, 1.5vw, 1.13rem);
  color: var(--tinta-suave);
  max-width: 52ch;
  margin-bottom: 2.2rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin-bottom: 2.6rem;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.8rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(217, 85, 123, .14);
}

.hero__badges li {
  font-size: .8rem;
  color: var(--tinta-suave);
  line-height: 1.4;
}

.hero__badges strong {
  display: block;
  font-family: var(--font-titulo);
  font-size: 1.35rem;
  font-weight: 700;
  background: var(--grad-dourado-texto);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--dourado);
}

/* Visual do hero */
.hero__visual { position: relative; }

.hero__frame {
  position: relative;
  aspect-ratio: 4 / 4.6;
  border-radius: 260px 260px var(--raio-xl) var(--raio-xl);
  overflow: hidden;
  background: var(--rosa-claro);
  box-shadow: var(--sombra-lg);
  border: 8px solid var(--branco);
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Enquadra os rostos, cortando o excesso de fundo do topo */
  object-position: center 30%;
}

.hero__frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 -80px 90px -50px rgba(178, 59, 94, .35);
  pointer-events: none;
}

/* Cartõezinhos flutuantes */
.hero__card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .8rem 1.1rem;
  border-radius: var(--raio);
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(10px);
  box-shadow: var(--sombra);
  border: 1px solid rgba(255, 255, 255, .8);
  animation: bob 5s ease-in-out infinite;
}

.hero__card--1 { top: 14%; left: -8%; animation-delay: -1.5s; }
.hero__card--2 { bottom: 12%; right: -10%; }

.hero__card-emoji { font-size: 1.7rem; line-height: 1; }
.hero__card strong { display: block; font-size: .85rem; line-height: 1.2; }
.hero__card small { font-size: .72rem; color: var(--tinta-fraca); }

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

/* Indicador de rolagem */
.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 26px;
  z-index: 3;
  width: 26px;
  height: 42px;
  transform: translateX(-50%);
  border: 2px solid var(--rosa-suave);
  border-radius: 999px;
  display: grid;
  place-items: start center;
  padding-top: 8px;
}

.hero__scroll span {
  width: 4px;
  height: 8px;
  border-radius: 2px;
  background: var(--rosa-forte);
  animation: scrollDot 1.8s ease-in-out infinite;
}

@keyframes scrollDot {
  0%   { transform: translateY(0); opacity: 1; }
  70%  { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ------------------------------------------------------------
   MARQUEE
------------------------------------------------------------ */
.marquee {
  overflow: hidden;
  padding: 1.05rem 0;
  background: var(--grad-rosa);
  position: relative;
  border-block: 1px solid rgba(255, 255, 255, .25);
}

.marquee__track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: scrollX 42s linear infinite;
}

.marquee:hover .marquee__track { animation-play-state: paused; }

.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  font-family: var(--font-titulo);
  font-size: 1.35rem;
  font-style: italic;
  font-weight: 500;
  color: var(--branco);
  white-space: nowrap;
}

.marquee__item::after {
  content: '✦';
  font-style: normal;
  font-size: .8rem;
  color: var(--dourado-luz);
}

@keyframes scrollX {
  to { transform: translateX(-50%); }
}

/* ------------------------------------------------------------
   SOBRE
------------------------------------------------------------ */
.section--sobre { background: var(--branco); }

.sobre__media { position: relative; }

/* Selo dourado sobreposto ao slider */
.sobre__stamp {
  position: absolute;
  right: -22px;
  bottom: -26px;
  z-index: 4;
  width: 128px;
  height: 128px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--grad-dourado);
  color: #4A3608;
  font-family: var(--font-titulo);
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  box-shadow: var(--sombra-gold);
  border: 3px solid var(--branco);
  animation: bob 6s ease-in-out infinite;
}

/* O texto do "Quem somos" é longo: a foto acompanha a leitura */
.section--sobre .grid-2 { align-items: start; }
.section--sobre .sobre__media { position: sticky; top: calc(var(--header-h) + 2rem); }

.sobre__content .section__lead { margin-bottom: 1.1rem; }

.sobre__texto {
  font-size: .95rem;
  line-height: 1.75;
  color: var(--tinta-suave);
  margin-bottom: 1.1rem;
  max-width: 60ch;
}

/* Assinatura da marca ao fim da história */
.sobre__assinatura {
  position: relative;
  margin: 1.8rem 0 2rem;
  padding-left: 1.4rem;
  border-left: 3px solid transparent;
  border-image: var(--grad-dourado) 1;
  font-family: var(--font-titulo);
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-style: italic;
  line-height: 1.45;
  color: var(--rosa-escuro);
  max-width: 46ch;
}

.sobre__assinatura::before {
  content: "D'Lícias Gourmet";
  display: block;
  margin-bottom: .3rem;
  font-family: var(--font-corpo);
  font-size: .72rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  background: var(--grad-dourado-texto);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--dourado);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  margin: 2rem 0 2.4rem;
}

.feature { display: flex; gap: 1rem; }

.feature__icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex: none;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--rosa-claro), var(--dourado-luz));
  color: var(--dourado-escuro);
  font-size: .9rem;
}

.feature strong { display: block; font-size: 1rem; margin-bottom: .15rem; }
.feature p { font-size: .87rem; color: var(--tinta-suave); }

/* ------------------------------------------------------------
   SÓCIA
------------------------------------------------------------ */
.section--socia {
  background:
    radial-gradient(circle at 15% 0%, rgba(247, 235, 192, .55), transparent 55%),
    radial-gradient(circle at 90% 100%, rgba(250, 231, 235, .9), transparent 55%),
    var(--creme);
}

.socia__box {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
  padding: clamp(2rem, 5vw, 3.5rem);
  background: var(--branco);
  border-radius: var(--raio-xl);
  box-shadow: var(--sombra-lg);
  border: 1px solid rgba(217, 85, 123, .08);
}

/* Fotos */
.socia__media { position: relative; }

.socia__frame {
  position: relative;
  overflow: hidden;
  background: var(--rosa-claro);
}

.socia__frame img { width: 100%; height: 100%; object-fit: cover; }

.socia__frame--main {
  aspect-ratio: 3 / 4;
  border-radius: 200px 200px var(--raio-lg) var(--raio-lg);
  box-shadow: var(--sombra);
  border: 6px solid var(--branco);
}

/* Segunda foto, menor, sobreposta no canto */
.socia__frame--small {
  position: absolute;
  right: -18px;
  bottom: -22px;
  width: 42%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 5px solid var(--branco);
  box-shadow: var(--sombra);
}

.socia__frame--small img { object-position: center 20%; }

.socia__badge {
  position: absolute;
  top: 14px;
  left: -10px;
  z-index: 3;
  padding: .38rem 1.1rem;
  border-radius: 999px;
  background: var(--grad-dourado);
  color: #4A3608;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  box-shadow: var(--sombra-gold);
}

/* Texto */
.socia__content .section__title { margin-bottom: .3rem; }

.socia__role {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--rosa-forte);
  margin-bottom: 1.5rem;
}

.socia__quote {
  position: relative;
  margin-bottom: 1.5rem;
  padding: 1.1rem 1.4rem 1.1rem 2.6rem;
  border-radius: var(--raio) var(--raio) var(--raio) 4px;
  background:
    radial-gradient(circle at 0% 0%, rgba(247, 235, 192, .5), transparent 60%),
    var(--rosa-nevoa);
  border-left: 3px solid var(--rosa-medio);
  font-family: var(--font-titulo);
  font-size: clamp(1.1rem, 1.9vw, 1.35rem);
  font-style: italic;
  line-height: 1.5;
  color: var(--rosa-escuro);
}

.socia__quote::before {
  content: '\201C';
  position: absolute;
  top: .2rem;
  left: .7rem;
  font-family: var(--font-titulo);
  font-size: 3rem;
  line-height: 1;
  color: var(--rosa-suave);
}

.socia__text {
  font-size: .95rem;
  color: var(--tinta-suave);
  margin-bottom: 1rem;
  max-width: 58ch;
}

.socia__content .btn { margin-top: .6rem; }

/* ------------------------------------------------------------
   PRODUTOS
------------------------------------------------------------ */
.section--produtos {
  background:
    radial-gradient(circle at 90% 10%, rgba(247, 235, 192, .5), transparent 45%),
    radial-gradient(circle at 5% 85%, rgba(250, 231, 235, .8), transparent 45%),
    var(--rosa-nevoa);
}

.products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(272px, 1fr));
  gap: clamp(1.2rem, 2.5vw, 1.9rem);
}

.products__empty {
  text-align: center;
  padding: 3rem 0;
  color: var(--tinta-fraca);
}

.products__note {
  display: flex;
  align-items: center;
  gap: .9rem;
  max-width: 680px;
  margin: clamp(2.5rem, 5vw, 3.5rem) auto 0;
  padding: 1.1rem 1.5rem;
  border-radius: var(--raio);
  background: rgba(255, 255, 255, .8);
  border: 1px dashed var(--rosa-suave);
  font-size: .87rem;
  color: var(--tinta-suave);
}

.products__note svg { width: 22px; height: 22px; flex: none; color: var(--rosa-forte); }
.products__note a { color: var(--rosa-forte); font-weight: 600; text-decoration: underline; }

/* Animação de entrada dos cards renderizados via JS */
.product.is-entering {
  animation: cardIn .5s cubic-bezier(.16, 1, .3, 1) backwards;
}

@keyframes cardIn {
  from { opacity: 0; transform: translateY(20px) scale(.98); }
}

/* ------------------------------------------------------------
   PASSOS
------------------------------------------------------------ */
.section--passos { background: var(--branco); }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  counter-reset: passo;
  position: relative;
}

/* Linha pontilhada ligando os passos */
.steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 16%;
  right: 16%;
  height: 2px;
  background-image: linear-gradient(90deg, var(--rosa-suave) 50%, transparent 50%);
  background-size: 12px 2px;
  z-index: 0;
}

.step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 .6rem;
}

.step__num {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  background: var(--branco);
  border: 2px solid var(--rosa-suave);
  font-family: var(--font-titulo);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--rosa-forte);
  box-shadow: var(--sombra-sm);
  transition: transform var(--t), background var(--t), color var(--t), border-color var(--t);
}

.step:hover .step__num {
  transform: translateY(-6px) scale(1.06);
  background: var(--grad-dourado);
  border-color: transparent;
  color: #4A3608;
}

.step h3 { margin-bottom: .5rem; }
.step p { font-size: .89rem; color: var(--tinta-suave); max-width: 30ch; margin-inline: auto; }

/* ------------------------------------------------------------
   ENCOMENDAS
------------------------------------------------------------ */
.section--encomendas {
  background:
    radial-gradient(circle at 20% 20%, rgba(250, 231, 235, .9), transparent 50%),
    var(--rosa-nevoa);
}

.encomendas__box {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(2rem, 5vw, 3.8rem);
  background: var(--branco);
  border-radius: var(--raio-xl);
  box-shadow: var(--sombra-lg);
  border: 1px solid rgba(217, 85, 123, .08);
  position: relative;
  overflow: hidden;
}

.encomendas__box::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 4px;
  background: var(--grad-dourado);
}

.encomendas__content .section__lead { margin-bottom: 1.6rem; }
.encomendas__content .section__eyebrow { margin-bottom: .7rem; }

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-bottom: 2rem;
}

.tags li {
  padding: .42rem 1rem;
  border-radius: 999px;
  background: var(--rosa-claro);
  color: var(--rosa-escuro);
  font-size: .8rem;
  font-weight: 600;
  transition: transform var(--t-rapida), background var(--t-rapida);
}
.tags li:hover { transform: translateY(-2px); background: var(--rosa-suave); }

.encomendas__frame {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--raio-xl) var(--raio-lg);
  overflow: hidden;
  background: var(--rosa-claro);
  box-shadow: var(--sombra);
}

.encomendas__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(.16, 1, .3, 1);
}

.encomendas__box:hover .encomendas__frame img { transform: scale(1.05); }

/* Fita dourada decorativa sobre a foto */
.encomendas__frame::after {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: calc(var(--raio-xl) - 8px) calc(var(--raio-lg) - 8px);
  pointer-events: none;
}

/* ------------------------------------------------------------
   REVENDA
------------------------------------------------------------ */
.section--revenda {
  background: var(--branco);
  position: relative;
}

.revenda__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2vw, 1.6rem);
}

.revenda__cta {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  text-align: center;
  padding: clamp(2rem, 4vw, 2.8rem);
  border-radius: var(--raio-lg);
  background:
    radial-gradient(circle at 10% 0%, rgba(247, 235, 192, .8), transparent 60%),
    var(--rosa-claro);
  border: 1px solid rgba(201, 162, 39, .22);
}

.revenda__cta p {
  font-family: var(--font-titulo);
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  font-style: italic;
  color: var(--rosa-escuro);
  margin-bottom: 1.3rem;
}

/* Foto redonda acima da chamada de parceria */
.revenda__cta-media {
  width: clamp(110px, 16vw, 150px);
  aspect-ratio: 1;
  margin: 0 auto 1.4rem;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid var(--branco);
  box-shadow: var(--sombra);
}

.revenda__cta-media img { width: 100%; height: 100%; object-fit: cover; }

/* ------------------------------------------------------------
   FAQ
------------------------------------------------------------ */
.section--faq { background: var(--rosa-nevoa); }

.faq { display: flex; flex-direction: column; gap: .8rem; }

.faq__item {
  background: var(--branco);
  border-radius: var(--raio);
  border: 1px solid rgba(217, 85, 123, .1);
  box-shadow: var(--sombra-sm);
  overflow: hidden;
  transition: box-shadow var(--t), border-color var(--t);
}

.faq__item[open] {
  box-shadow: var(--sombra);
  border-color: var(--rosa-suave);
}

.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.4rem;
  font-size: .98rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  transition: color var(--t-rapida);
}

.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--rosa-forte); }

.faq__item summary::after {
  content: '+';
  flex: none;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--rosa-claro);
  color: var(--rosa-forte);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1;
  transition: transform var(--t), background var(--t-rapida);
}

.faq__item[open] summary::after {
  transform: rotate(135deg);
  background: var(--grad-dourado);
  color: #4A3608;
}

.faq__answer {
  padding: 0 1.4rem 1.3rem;
  font-size: .9rem;
  color: var(--tinta-suave);
  animation: faqIn .3s ease;
}

@keyframes faqIn {
  from { opacity: 0; transform: translateY(-6px); }
}

/* ------------------------------------------------------------
   CONTATO
------------------------------------------------------------ */
.section--contato { background: var(--branco); }

.contato__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 4vw, 3.2rem);
  align-items: start;
}

.contato__info { display: flex; flex-direction: column; gap: .85rem; }

/* Horário */
.hours {
  margin-top: .6rem;
  padding: 1.5rem;
  border-radius: var(--raio);
  background:
    radial-gradient(circle at 100% 0%, rgba(247, 235, 192, .6), transparent 55%),
    var(--rosa-nevoa);
  border: 1px solid rgba(217, 85, 123, .1);
}

.hours__title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .7rem;
  font-size: 1.25rem;
  margin-bottom: .9rem;
}

.hours__status {
  order: 2;
  padding: .22rem .75rem;
  border-radius: 999px;
  font-family: var(--font-corpo);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: var(--rosa-claro);
  color: var(--rosa-escuro);
}

.hours__status.is-open   { background: #E4F7EB; color: #12844A; }
.hours__status.is-closed { background: #FBE9EE; color: var(--rosa-escuro); }

.hours__list { display: flex; flex-direction: column; gap: .5rem; }

.hours__list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: .5rem;
  border-bottom: 1px dashed rgba(217, 85, 123, .18);
  font-size: .87rem;
  color: var(--tinta-suave);
}
.hours__list li:last-child { border-bottom: 0; padding-bottom: 0; }
.hours__list li span:last-child { font-weight: 600; color: var(--tinta); white-space: nowrap; }

.hours__note {
  margin-top: .9rem;
  font-size: .78rem;
  color: var(--tinta-fraca);
  line-height: 1.5;
}

/* Mapa */
.contato__map {
  position: relative;
  border-radius: var(--raio-lg);
  overflow: hidden;
  box-shadow: var(--sombra);
  border: 6px solid var(--branco);
  min-height: 440px;
  background: var(--rosa-claro);
}

.contato__map iframe {
  width: 100%;
  height: 100%;
  min-height: 440px;
  border: 0;
  filter: saturate(.92) contrast(1.02);
}

.contato__map-badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: .75rem 1.2rem;
  border-radius: var(--raio-sm);
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(8px);
  box-shadow: var(--sombra-sm);
}

.contato__map-badge strong { display: block; font-size: .9rem; }
.contato__map-badge span { font-size: .75rem; color: var(--tinta-fraca); }

/* ------------------------------------------------------------
   CTA FINAL
------------------------------------------------------------ */
.cta-final { padding-block: clamp(3rem, 6vw, 5rem); background: var(--branco); }

.cta-final__box {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: clamp(2.8rem, 7vw, 5rem) clamp(1.5rem, 5vw, 3rem);
  border-radius: var(--raio-xl);
  background: var(--grad-rosa);
  box-shadow: var(--sombra-lg);
}

.cta-final__box::before,
.cta-final__box::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
}
.cta-final__box::before { width: 300px; height: 300px; top: -140px; left: -90px; }
.cta-final__box::after  { width: 240px; height: 240px; bottom: -120px; right: -60px; }

.cta-final__box > * { position: relative; z-index: 1; }

.cta-final__box h2 {
  color: var(--branco);
  margin-bottom: .7rem;
}

.cta-final__box p {
  color: rgba(255, 255, 255, .92);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

/* ------------------------------------------------------------
   RODAPÉ
------------------------------------------------------------ */
.footer {
  background: linear-gradient(180deg, #3A2A30 0%, #2C1F24 100%);
  color: rgba(255, 255, 255, .72);
  font-size: .88rem;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  padding-block: clamp(3rem, 6vw, 4.5rem);
}

.logo--footer { margin-bottom: 1.1rem; }
.logo--footer .logo__sub { color: var(--rosa-medio); }

.footer__brand p { max-width: 34ch; line-height: 1.7; }

.footer__social {
  display: flex;
  gap: .6rem;
  margin-top: 1.3rem;
}

.footer__social a {
  padding: .5rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .18);
  font-size: .8rem;
  font-weight: 600;
  color: var(--branco);
  transition: background var(--t-rapida), border-color var(--t-rapida), transform var(--t-rapida);
}

.footer__social a:hover {
  background: var(--rosa-forte);
  border-color: transparent;
  transform: translateY(-2px);
}

.footer__col h3 {
  font-family: var(--font-corpo);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--dourado-claro);
  margin-bottom: 1.1rem;
}

.footer__col ul { display: flex; flex-direction: column; gap: .6rem; }

.footer__col a { transition: color var(--t-rapida), padding-left var(--t-rapida); }
.footer__col a:hover { color: var(--branco); padding-left: 5px; }

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  /* Folga extra embaixo para o botão flutuante do WhatsApp não cobrir o crédito */
  padding-block: 1.4rem 5.5rem;
  font-size: .8rem;
}

.footer__bottom .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: .6rem;
}

/* Crédito do desenvolvedor */
.footer__dev { color: rgba(255, 255, 255, .55); }

.footer__dev a {
  position: relative;
  font-weight: 600;
  color: var(--dourado-claro);
  transition: color var(--t-rapida);
}

.footer__dev a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: var(--grad-dourado);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t);
}

.footer__dev a:hover { color: var(--dourado-luz); }
.footer__dev a:hover::after { transform: scaleX(1); }

/* Botão de WhatsApp na última coluna do rodapé */
.footer__cta { margin-top: 1.2rem; }
