/* =====================================================================
   Petaaf — Landing Page
   Tokens de design espelhados de core/design_system/theme.dart
   Estrutura:
     1. Variáveis (tokens)
     2. Reset & base
     3. Utilitários (container, eyebrow, botões, badges)
     4. Header / navegação
     5. Hero + mockups de telefone
     6. Sobre + grade de funcionalidades
     7. Funcionalidades (scroller de telefones)
     8. Para todos os animais
     9. Blog
     10. Lista de espera (CTA)
     11. Footer
     12. Responsividade
   ===================================================================== */

/* ============================ 1. TOKENS ============================ */
:root {
  /* Cores principais */
  --cream:        #FFF1E6;
  --cream-strong: #FFE2C8;
  --surface-warm: #FFFBF8;
  --surface-peach:#FFF2EB;
  --light-cream:  #FFF8F0;

  /* Marca */
  --teal:        #00A97F;
  --teal-dark:   #007C7A;
  --teal-strong: #008E8A;
  --teal-light:  #70C59B;
  --orange:      #FF6B3D;
  --coral:       #FF7C66;
  --coral-soft:  #FFD8CF;
  --butter:      #FFD36E;

  /* Texto */
  --title-dark: #102A2E;
  --body-dark:  #1F3F44;
  --muted:      #5D6B69;

  /* Estado / superfícies */
  --divider:    #F2D7C4;
  --card-mint:  #E6FBF7;
  --chip-ok:    #E3F7EC;
  --success:    #1EC97F;
  --warning:    #FF9F1C;
  --warning-bg: #FFF1D9;
  --error:      #FF3B30;
  --error-bg:   #FFE7E7;

  /* Verde oliva do banner de lista de espera */
  --olive:      #7D8B4F;
  --olive-dark: #6B7942;

  /* Gradiente de marca aprovado */
  --brand-gradient: linear-gradient(100deg, var(--teal) 0%, var(--orange) 85%, var(--coral) 100%);

  /* Raios */
  --r-pill: 999px;
  --r-lg: 28px;
  --r-md: 20px;
  --r-sm: 14px;

  /* Sombras */
  --shadow-sm: 0 4px 14px rgba(16, 42, 46, .06);
  --shadow-md: 0 12px 30px rgba(16, 42, 46, .10);
  --shadow-lg: 0 28px 60px rgba(16, 42, 46, .18);

  --maxw: 1180px;
  --header-h: 76px;
}

/* ============================ 2. RESET ============================ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: "Bricolage Grotesque", system-ui, -apple-system, sans-serif;
  background: var(--cream);
  color: var(--body-dark);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input { font: inherit; }
ul { list-style: none; padding: 0; }

h1, h2, h3, h4 { font-family: "Fraunces", Georgia, serif; color: var(--title-dark); line-height: 1.05; }

/* Neutraliza estilos globais do Materialize que conflitam com a identidade
   (a <nav> ganha barra coral e altura fixa por padrão no Materialize). */
nav { background-color: transparent; box-shadow: none; height: auto; line-height: inherit; color: inherit; }
nav ul a { padding: 0; }
nav a { color: inherit; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.nowrap { white-space: nowrap; }

/* ========================= 3. UTILITÁRIOS ========================= */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }

.section { padding-block: clamp(56px, 8vw, 104px); }

.section__title {
  font-size: clamp(1.7rem, 1rem + 2.6vw, 2.7rem);
  font-weight: 800;
  letter-spacing: -.01em;
}
.section__lead { color: var(--muted); font-size: 1.02rem; margin-top: 18px; max-width: 38ch; }

/* Olho-mágico (eyebrow) com pata */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 700; font-size: .8rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: 18px;
}
.eyebrow__paw, .btn__paw, .feature__icon, .hero__floating-paw,
.brand__mark, .btn__play, .waitlist__icon, .animals__like,
.footer__social span, .vac-list__dot { display: inline-block; }

.eyebrow__paw {
  width: 18px; height: 18px;
  background: var(--orange);
  -webkit-mask: var(--paw-mask) center/contain no-repeat;
          mask: var(--paw-mask) center/contain no-repeat;
}

/* Máscara de pata reutilizada em vários elementos */
:root {
  --paw-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cellipse cx='5' cy='10.5' rx='2.3' ry='3'/%3E%3Cellipse cx='19' cy='10.5' rx='2.3' ry='3'/%3E%3Cellipse cx='9' cy='6' rx='2.2' ry='2.9'/%3E%3Cellipse cx='15' cy='6' rx='2.2' ry='2.9'/%3E%3Cpath d='M12 11c2.8 0 5 2 5 4.3 0 2-1.7 3.2-3.6 2.9-.5-.1-.9-.1-1.4-.1s-.9 0-1.4.1C8.7 18.5 7 17.3 7 15.3 7 13 9.2 11 12 11Z'/%3E%3C/svg%3E");
}

/* ---- Botões ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 13px 22px; border-radius: var(--r-pill);
  font-weight: 700; font-size: .95rem; white-space: nowrap;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease;
  /* Neutraliza o .btn padrão do Materialize (uppercase, altura fixa, sombra) */
  height: auto; line-height: 1.25; text-transform: none; letter-spacing: normal;
  box-shadow: none; text-decoration: none;
}
.btn:hover { box-shadow: none; }
.btn:active { transform: translateY(1px); }
.btn--lg { padding: 16px 26px; font-size: 1rem; }

.btn--primary {
  background: var(--orange); color: #fff;
  box-shadow: 0 10px 22px rgba(255, 107, 61, .32);
}
.btn--primary:hover { background: #ff5b29; transform: translateY(-2px); box-shadow: 0 14px 28px rgba(255, 107, 61, .42); }

.btn--ghost {
  background: transparent; color: var(--title-dark);
  border: 1.6px solid var(--divider);
}
.btn--ghost:hover { border-color: var(--orange); color: var(--orange); }

.btn--outline {
  background: transparent; color: var(--orange);
  border: 1.6px solid var(--orange);
}
.btn--outline:hover { background: var(--orange); color: #fff; transform: translateY(-2px); }

.btn__paw {
  width: 18px; height: 18px; background: currentColor;
  -webkit-mask: var(--paw-mask) center/contain no-repeat;
          mask: var(--paw-mask) center/contain no-repeat;
}
.btn--primary .btn__paw { background: #fff; }
.btn__play {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--orange); position: relative;
}
.btn__play::after {
  content: ""; position: absolute; top: 50%; left: 54%; transform: translate(-50%,-50%);
  border-left: 7px solid #fff; border-top: 4.5px solid transparent; border-bottom: 4.5px solid transparent;
}

/* ---- Badges de loja ---- */
.store-badges { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }
.store-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: #111; color: #fff; padding: 9px 16px; border-radius: 12px;
  transition: transform .18s ease;
}
.store-badge:hover { transform: translateY(-2px); }
.store-badge svg { width: 22px; height: 22px; flex: none; }
.store-badge span { display: flex; flex-direction: column; line-height: 1.1; font-weight: 700; font-size: 1rem; }
.store-badge small { font-size: .58rem; font-weight: 500; letter-spacing: .06em; opacity: .85; text-transform: uppercase; }

/* ========================= 4. HEADER ========================= */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 241, 230, .82);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease, background-color .25s ease;
}
.site-header.is-scrolled { border-color: var(--divider); box-shadow: var(--shadow-sm); }
.header__inner { display: flex; align-items: center; gap: 24px; height: var(--header-h); }

.brand { display: inline-flex; align-items: center; gap: 10px; font-family: "Fraunces", serif; }
.brand__mark {
  width: 38px; height: 38px; border-radius: 11px; overflow: hidden;
  box-shadow: var(--shadow-sm); flex: none;
}
.brand__mark img { width: 100%; height: 100%; object-fit: cover; }
.brand__name { font-size: 1.45rem; font-weight: 800; color: var(--teal); letter-spacing: -.01em; }
.brand__name-accent { color: var(--orange); }

.nav { display: flex; gap: 26px; margin-inline: auto; }
.nav a {
  font-weight: 600; font-size: .95rem; color: var(--body-dark);
  position: relative; padding: 6px 2px; transition: color .18s ease;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 2px;
  background: var(--orange); border-radius: 2px; transition: width .22s ease;
}
.nav a:hover { color: var(--orange); }
.nav a:hover::after, .nav a.is-active::after { width: 100%; }
.nav a.is-active { color: var(--orange); }

.header__cta { flex: none; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { width: 24px; height: 2.5px; background: var(--title-dark); border-radius: 3px; transition: transform .25s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ========================= 5. HERO ========================= */
.hero {
  position: relative;
  background:
    radial-gradient(900px 500px at 88% -10%, var(--cream-strong), transparent 60%),
    radial-gradient(700px 460px at -6% 30%, #fff7ef, transparent 55%),
    var(--cream);
  padding-block: clamp(36px, 5vw, 64px) clamp(48px, 7vw, 88px);
  overflow: hidden;
}
/* Linhas (.row do Materialize) usadas como flex para centralizar verticalmente.
   As larguras das colunas vêm das classes .col .l* do Materialize. */
.hero__inner { display: flex; flex-wrap: wrap; align-items: center; }

.hero__title {
  font-size: clamp(2.4rem, 1.1rem + 4.6vw, 4.1rem);
  font-weight: 900; letter-spacing: -.015em;
}
.heart { color: var(--orange); }
.hero__subtitle { color: var(--muted); font-size: clamp(1rem, .95rem + .4vw, 1.2rem); margin-top: 22px; max-width: 34ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }

/* Coração reutilizado em ícones de funcionalidade e no botão de curtir */
:root { --heart-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 21s-7.5-4.7-10-9.4C.3 8.2 2 4.5 5.5 4.5c2 0 3.4 1.2 4.5 2.6 1.1-1.4 2.5-2.6 4.5-2.6 3.5 0 5.2 3.7 3.5 7.1C19.5 16.3 12 21 12 21Z'/%3E%3C/svg%3E"); }

/* ---- Visual do hero: leque de prints reais do app ---- */
/* Seletor com 2 classes para vencer o `.row .col { min-height:1px }` do Materialize */
.hero .hero__visual {
  position: relative;
  min-height: clamp(400px, 46vw, 600px);
  display: flex; align-items: center; justify-content: center;
}

.hero__phone {
  position: absolute; width: 58%; max-width: 320px; height: auto;
  filter: drop-shadow(0 26px 42px rgba(16, 42, 46, .28));
  transition: transform .3s ease;
}
/* Telefone central, em destaque (maior) */
.hero__phone--center { z-index: 3; transform: translateY(-1%) scale(1.04); }
/* Telefones laterais, levemente inclinados e atrás do central */
.hero__phone--left   { z-index: 2; transform: translateX(-52%) translateY(7%) rotate(-6deg) scale(.9); }
.hero__phone--right  { z-index: 1; transform: translateX(52%)  translateY(7%) rotate(6deg)  scale(.9); }
/* Leve abertura do leque ao passar o mouse */
.hero__visual:hover .hero__phone--left  { transform: translateX(-58%) translateY(5%) rotate(-7deg) scale(.9); }
.hero__visual:hover .hero__phone--right { transform: translateX(58%)  translateY(5%) rotate(7deg)  scale(.9); }

.hero__floating-paw {
  width: 30px; height: 30px; background: var(--coral-soft); opacity: .8;
  -webkit-mask: var(--paw-mask) center/contain no-repeat; mask: var(--paw-mask) center/contain no-repeat;
  position: absolute; z-index: 0;
}
.hero__floating-paw--1 { top: 4%; right: 10%; background: var(--butter); }
.hero__floating-paw--2 { bottom: 8%; left: 8%; width: 22px; height: 22px; }

/* ===================== 6. SOBRE + FUNCIONALIDADES ===================== */
.section--about { background: var(--cream); }
.about__inner { display: flex; flex-wrap: wrap; align-items: flex-start; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px 36px; }
.feature { padding-top: 6px; }
.feature h3 { font-size: 1.18rem; font-weight: 800; margin-bottom: 6px; }
.feature p { color: var(--muted); font-size: .92rem; }
.feature__icon {
  width: 46px; height: 46px; border-radius: 14px; margin-bottom: 14px;
  display: grid; place-items: center; position: relative;
}
.feature__icon--teal { background: var(--card-mint); }
.feature__icon--orange { background: var(--surface-peach); }
.feature__icon::after {
  content: ""; width: 24px; height: 24px;
  background: var(--teal);
  -webkit-mask: var(--mask) center/contain no-repeat; mask: var(--mask) center/contain no-repeat;
}
.feature__icon--orange::after { background: var(--orange); }
.feature__icon[data-icon="social"]   { --mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='8' cy='8' r='3.2'/%3E%3Ccircle cx='17' cy='9' r='2.6'/%3E%3Cpath d='M2.5 19c0-3 2.5-5 5.5-5s5.5 2 5.5 5v.5h-11Z'/%3E%3Cpath d='M14.5 19c0-2.4 1.4-4 3.5-4 2 0 3.5 1.6 3.5 4v.5h-7Z'/%3E%3C/svg%3E"); }
.feature__icon[data-icon="shield"]   { --mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2 4 5v6c0 5 3.4 9 8 11 4.6-2 8-6 8-11V5l-8-3Zm-1 13-3-3 1.4-1.4L11 12.2l4.6-4.6L17 9l-6 6Z'/%3E%3C/svg%3E"); }
.feature__icon[data-icon="heart"]    { --mask: var(--heart-mask); }
.feature__icon[data-icon="search"]   { --mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M10 2a8 8 0 1 0 4.9 14.3l5 5 1.4-1.4-5-5A8 8 0 0 0 10 2Zm0 2a6 6 0 1 1 0 12 6 6 0 0 1 0-12Z'/%3E%3C/svg%3E"); }
.feature__icon[data-icon="memories"] { --mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='3' y='5' width='18' height='14' rx='3'/%3E%3Ccircle cx='9' cy='10' r='2' fill='%23fff'/%3E%3Cpath d='M5 17l4-4 3 3 3-3 4 4Z' fill='%23fff'/%3E%3C/svg%3E"); }
.feature__icon[data-icon="vaccine"]  { --mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='m14 2 8 8-2 2-1-1-3 3 1 1-2 2-1-1-6 6-3 1 1-3 6-6-1-1 2-2 1 1 3-3-1-1 2-2Z'/%3E%3C/svg%3E"); }

/* ===================== 7. FUNCIONALIDADES (scroller) ===================== */
.section--features { background: linear-gradient(180deg, var(--cream-strong), #ffeede); }
.features__inner { display: flex; flex-wrap: wrap; align-items: center; }

.feature-scroller {
  display: flex; gap: 22px; overflow-x: auto; padding: 8px 4px 24px;
  scroll-snap-type: x mandatory; scrollbar-width: thin;
}
.feature-scroller::-webkit-scrollbar { height: 8px; }
.feature-scroller::-webkit-scrollbar-thumb { background: var(--divider); border-radius: 999px; }

.fcard { flex: 0 0 172px; scroll-snap-align: start; text-align: center; }
/* Altura de mídia padronizada para que todos os cards alinhem, sejam */
/* screenshots reais ou mockups com gradiente. */
.fcard__phone {
  width: 152px; height: 290px; background: #0e0e10; border-radius: 26px; padding: 6px;
  box-shadow: var(--shadow-md); margin: 0 auto 14px; transition: transform .25s ease;
}
.fcard:hover .fcard__phone { transform: translateY(-8px); }
/* Screenshot real do app (já inclui a moldura do aparelho) */
.fcard__img { height: 290px; width: auto; max-width: 100%; margin: 0 auto 14px; display: block; object-fit: contain; transition: transform .25s ease; filter: drop-shadow(0 12px 22px rgba(16,42,46,.16)); }
.fcard:hover .fcard__img { transform: translateY(-8px); }
.fcard__screen { width: 100%; height: 100%; border-radius: 21px; overflow: hidden; position: relative; background: var(--cream); }
.fcard__screen::before {
  content: ""; position: absolute; inset: 0;
  background: var(--screen, linear-gradient(160deg, var(--teal-light), var(--cream-strong)));
}
.fcard__screen::after {
  content: attr(data-emoji); position: absolute; inset: 0; display: grid; place-items: center; font-size: 46px;
}
.fcard h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 4px; }
.fcard p { color: var(--muted); font-size: .82rem; padding-inline: 4px; }

/* ===================== 8. PARA TODOS OS ANIMAIS ===================== */
.section--animals { background: var(--cream); }
.animals__inner { display: flex; flex-wrap: wrap; align-items: stretch; }
.animals__right { display: flex; }

.animal-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 22px 10px; margin-top: 30px; }
.animal { display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center; }
.animal__avatar {
  width: 62px; height: 62px; border-radius: 50%;
  display: grid; place-items: center; font-size: 30px;
  background: var(--surface-peach); border: 2px solid #fff; box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.animal:hover .animal__avatar { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.animal span { font-weight: 700; font-size: .82rem; color: var(--body-dark); }

.animals__photo {
  position: relative; flex: 1; width: 100%; min-height: 360px; height: 100%; border-radius: var(--r-lg); overflow: hidden;
  background: linear-gradient(135deg, #f6c89a, #e08f5a);
  box-shadow: var(--shadow-md);
}
.animals__photo > img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 35%;
}
.animals__overlay {
  position: absolute; inset: auto 0 0 0; padding: clamp(24px, 4vw, 44px);
  background: linear-gradient(to top, rgba(20,30,25,.78), transparent);
  color: #fff; text-align: right;
}
.animals__overlay h3 { color: #fff; font-size: clamp(1.5rem, 1rem + 2vw, 2.3rem); font-weight: 800; }
.animals__overlay p { margin-top: 12px; margin-left: auto; max-width: 32ch; opacity: .92; font-size: .98rem; }
.animals__like {
  width: 44px; height: 44px; border-radius: 50%; margin-top: 18px; margin-left: auto;
  background: rgba(255,255,255,.18); border: 1.5px solid rgba(255,255,255,.5); display: grid; place-items: center;
}
.animals__like::after { content: ""; width: 20px; height: 20px; background: #fff; -webkit-mask: var(--heart-mask) center/contain no-repeat; mask: var(--heart-mask) center/contain no-repeat; }
.animals__like:hover { background: var(--orange); border-color: var(--orange); }

/* ===================== 9. BLOG ===================== */
.section--blog { background: var(--cream); padding-bottom: clamp(40px, 6vw, 80px); }
.blog__inner { display: flex; flex-wrap: wrap; align-items: center; }
.blog__track-wrap { position: relative; }
.blog-track { display: flex; gap: 22px; overflow-x: auto; padding-bottom: 14px; scroll-snap-type: x mandatory; scrollbar-width: none; }
.blog-track::-webkit-scrollbar { display: none; }

.post { flex: 0 0 260px; scroll-snap-align: start; background: var(--surface-warm); border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .22s ease, box-shadow .22s ease; }
.post:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.post__link { display: block; color: inherit; }
.post__media { aspect-ratio: 16/10; position: relative; display: grid; place-items: center; font-size: 54px; }
.post__cat { position: absolute; top: 12px; left: 12px; background: rgba(255,255,255,.9); color: var(--orange); font-weight: 700; font-size: .72rem; padding: 4px 11px; border-radius: 999px; }
.post__body { padding: 16px 18px 20px; }
.post__body h3 { font-size: 1.08rem; font-weight: 800; line-height: 1.18; }
.post__body p { color: var(--muted); font-size: .87rem; margin-top: 8px; }
.post__more { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; font-weight: 700; color: var(--orange); font-size: .88rem; }
.post__more::after { content: "→"; transition: transform .2s ease; }
.post:hover .post__more::after { transform: translateX(4px); }

.blog__nav {
  position: absolute; right: -10px; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%; background: #fff; box-shadow: var(--shadow-md);
  display: grid; place-items: center; z-index: 2;
}
.blog__nav::after { content: "›"; font-size: 1.6rem; color: var(--title-dark); line-height: 1; margin-top: -3px; }
.blog__nav:hover { background: var(--orange); }
.blog__nav:hover::after { color: #fff; }

/* ===================== 10. LISTA DE ESPERA ===================== */
.waitlist { padding-block: clamp(40px, 6vw, 80px); background: var(--cream); }
.waitlist__card {
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 26px;
  background: linear-gradient(120deg, var(--olive), var(--olive-dark));
  border-radius: var(--r-lg); padding: clamp(24px, 4vw, 40px); color: #fff;
  box-shadow: var(--shadow-md);
}
.waitlist__icon { width: 60px; height: 60px; border-radius: 16px; background: rgba(255,255,255,.16); display: grid; place-items: center; flex: none; }
.waitlist__icon::after { content: ""; width: 32px; height: 32px; background: #fff; -webkit-mask: var(--paw-mask) center/contain no-repeat; mask: var(--paw-mask) center/contain no-repeat; }

/* Badges de loja dentro do banner de download */
.waitlist__stores { display: flex; flex-direction: column; gap: 12px; }
.waitlist__stores .store-badge { background: #111; }
.waitlist__stores .store-badge[href="#"] { opacity: .65; cursor: default; }
.waitlist__copy h2 { color: #fff; font-size: clamp(1.3rem, 1rem + 1.4vw, 1.8rem); font-weight: 800; }
.waitlist__copy p { margin-top: 8px; opacity: .9; font-size: .96rem; }
.waitlist__form { display: flex; gap: 12px; flex-wrap: wrap; }
.waitlist__form input {
  border: none; border-radius: var(--r-pill); padding: 14px 20px; min-width: 170px;
  background: #fff; color: var(--body-dark);
}
.waitlist__form input::placeholder { color: var(--muted); }
.waitlist__form input:focus-visible { outline: 3px solid var(--butter); }
.waitlist__feedback { text-align: center; margin-top: 16px; font-weight: 600; color: var(--teal-dark); min-height: 1.2em; }
.waitlist__feedback.is-error { color: var(--error); }

/* ===================== 11. FOOTER ===================== */
.site-footer { background: var(--surface-warm); border-top: 1px solid var(--divider); padding-top: clamp(40px, 5vw, 64px); }
.footer__inner { display: flex; flex-wrap: wrap; padding-bottom: 16px; }
.footer__brand p { color: var(--muted); margin-top: 14px; max-width: 22ch; font-size: .92rem; }
.footer__col h4 { font-family: "Bricolage Grotesque", sans-serif; font-size: .95rem; font-weight: 800; color: var(--title-dark); margin-bottom: 16px; }
.footer__col a { display: block; color: var(--muted); font-size: .92rem; padding: 5px 0; transition: color .16s ease; }
.footer__col a:hover { color: var(--orange); }
.footer__social { display: flex; align-items: center; gap: 9px; }
.footer__social span { width: 18px; height: 18px; background: var(--orange); flex: none; }
.ic-instagram { -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='3' y='3' width='18' height='18' rx='5' fill='none' stroke='%23000' stroke-width='2'/%3E%3Ccircle cx='12' cy='12' r='4' fill='none' stroke='%23000' stroke-width='2'/%3E%3Ccircle cx='17' cy='7' r='1.4'/%3E%3C/svg%3E") center/contain no-repeat; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='3' y='3' width='18' height='18' rx='5' fill='none' stroke='%23000' stroke-width='2'/%3E%3Ccircle cx='12' cy='12' r='4' fill='none' stroke='%23000' stroke-width='2'/%3E%3Ccircle cx='17' cy='7' r='1.4'/%3E%3C/svg%3E") center/contain no-repeat; }
.ic-tiktok { -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M14 3c.3 2.3 1.8 4 4 4.3V10c-1.5 0-2.9-.5-4-1.3V15a5.5 5.5 0 1 1-5.5-5.5c.3 0 .6 0 .9.1V12a2.6 2.6 0 1 0 1.8 2.5V3H14Z'/%3E%3C/svg%3E") center/contain no-repeat; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M14 3c.3 2.3 1.8 4 4 4.3V10c-1.5 0-2.9-.5-4-1.3V15a5.5 5.5 0 1 1-5.5-5.5c.3 0 .6 0 .9.1V12a2.6 2.6 0 1 0 1.8 2.5V3H14Z'/%3E%3C/svg%3E") center/contain no-repeat; }
.ic-mail { -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='3' y='5' width='18' height='14' rx='3' fill='none' stroke='%23000' stroke-width='2'/%3E%3Cpath d='m4 7 8 6 8-6' fill='none' stroke='%23000' stroke-width='2'/%3E%3C/svg%3E") center/contain no-repeat; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='3' y='5' width='18' height='14' rx='3' fill='none' stroke='%23000' stroke-width='2'/%3E%3Cpath d='m4 7 8 6 8-6' fill='none' stroke='%23000' stroke-width='2'/%3E%3C/svg%3E") center/contain no-repeat; }
.footer__col--stores .store-badge { margin-bottom: 12px; }
.footer__bottom { border-top: 1px solid var(--divider); padding-block: 22px; }
.footer__bottom p { color: var(--muted); font-size: .85rem; text-align: center; }

/* ===================== 11b. MENU LATERAL MOBILE (Materialize sidenav) ===================== */
.sidenav { background: var(--cream); width: 290px; }
.sidenav .mobile-nav__brand {
  display: flex; align-items: center; gap: 10px; height: auto;
  padding: 26px 20px 18px; border-bottom: 1px solid var(--divider); margin-bottom: 8px;
}
.sidenav li > a {
  color: var(--body-dark); font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 600; font-size: 1rem; height: 52px; line-height: 52px;
}
.sidenav li > a:hover { background: var(--surface-peach); color: var(--orange); }
.sidenav .mobile-nav__cta { padding: 16px 16px 8px; }
.sidenav .mobile-nav__cta .btn { width: 100%; height: auto; line-height: 1.25; }
.sidenav-overlay { background: rgba(16, 42, 46, .45); }

/* ===================== 12. RESPONSIVO ===================== */
/* Larguras de coluna vêm do grid do Materialize (s/m/l). Aqui só ajustamos
   ritmo vertical, respiro entre colunas e refinos por breakpoint. */

/* Respiro entre as colunas no desktop (o gutter padrão do Materialize é pequeno) */
@media (min-width: 993px) {
  .about__intro, .features__intro, .blog__intro { padding-right: 2.5vw; }
  .animals__left { padding-right: 1.5vw; }
}

/* Header: troca o menu horizontal pelo gatilho do sidenav */
@media (max-width: 992px) {
  .nav, .header__cta { display: none; }
  .nav-toggle { display: flex; margin-left: auto; }

  /* Espaço entre colunas empilhadas */
  .about__intro, .features__intro, .blog__intro, .animals__left { margin-bottom: 34px; }

  .hero__subtitle { max-width: none; }
  .hero .hero__visual { min-height: 560px; max-width: 500px; margin-inline: auto; width: 100%; }

  .feature-grid { gap: 26px 28px; }
}

@media (max-width: 720px) {
  .waitlist__card { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .waitlist__form { width: 100%; flex-direction: column; }
  .waitlist__form input, .waitlist__form .btn { width: 100%; }
  .waitlist__stores { flex-direction: row; flex-wrap: wrap; justify-content: center; }
  /* Overlay dos animais: texto à esquerda, fundo mais forte para legibilidade */
  .animals__overlay { text-align: left; }
  .animals__overlay p { margin-left: 0; }
  .animals__like { margin-left: 0; }
}

@media (max-width: 600px) {
  .feature-grid { grid-template-columns: 1fr; gap: 22px; }
  .animal-grid { grid-template-columns: repeat(4, 1fr); gap: 18px 6px; }
  .animal__avatar { width: 54px; height: 54px; font-size: 26px; }
  .store-badges { gap: 10px; }
  /* Leque de prints mais compacto no celular, contido na própria caixa */
  .hero .hero__visual { min-height: 390px; margin-top: 8px; }
  .hero__phone { max-width: 188px; }
  .hero__phone--left  { transform: translateX(-48%) translateY(8%) rotate(-8deg) scale(.8); }
  .hero__phone--right { transform: translateX(48%)  translateY(8%) rotate(8deg)  scale(.8); }
  /* Mais altura na foto dos animais para o texto não cobrir os bichos */
  .animals__photo { min-height: 460px; }
  .animals__overlay { background: linear-gradient(to top, rgba(20,30,25,.9) 35%, transparent); padding-top: 80px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
