/* ============================================
   Zanad Bull Terrier
   style.css
   ============================================ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

img, video {
  max-width: 100%;
}

button, input, textarea {
  font-family: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

:root {
  --orange:   #51A8B1;
  --orange2:  #003333;
  --grad:     linear-gradient(135deg, #51A8B1 0%, #003333 100%);
  --grad-h:   linear-gradient(135deg, #3d9199 0%, #002222 100%);
  --black:    #1a1a1a;
  --gray:     #888888;
  --light:    #f5f5f5;
  --white:    #ffffff;
}

/* ── UTILITÁRIO: TEXTO COM DEGRADÊ ── */
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255,255,255,0.98);
  padding: 15px calc(40px + env(safe-area-inset-right)) 15px calc(30px + env(safe-area-inset-left));
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  transition: box-shadow 0.3s;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  justify-self: start;
}

/* Botão WhatsApp arredondado no menu — gradiente verde da identidade */
.navbar-whatsapp {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--grad);
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 11px 22px;
  border-radius: 50px;
  box-shadow: 0 6px 18px rgba(0,51,51,0.25);
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}

.navbar-whatsapp i { font-size: 15px; }

.navbar-whatsapp:hover {
  background: var(--grad-h);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,51,51,0.35);
}

/* ── BOTÃO HAMBÚRGUER (mobile) ── */
.nav-toggle {
  display: none;
  justify-self: end;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MENU MOBILE (painel deslizante) ── */
.mobile-nav {
  position: fixed;
  top: 84px;
  left: 0;
  width: 100%;
  max-height: 0;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
  z-index: 997;
  transition: max-height 0.4s ease;
}

.mobile-nav.active {
  max-height: 600px;
}

.mobile-nav ul {
  list-style: none;
  padding: 10px 24px 0;
}

.mobile-nav li {
  border-bottom: 1px solid #eeeeee;
}

.mobile-nav a {
  display: block;
  padding: 16px 4px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--black);
  text-decoration: none;
}

.mobile-nav a:hover {
  color: var(--orange);
}

.mobile-nav-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 20px 24px 24px;
  padding: 14px;
  background: var(--grad);
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
}

.logo-icon {
  width: 50px; height: 50px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.logo-text strong {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  color: var(--black);
  display: block;
}

.logo-text strong span { color: var(--orange); }

.logo-text small {
  font-size: 11px;
  color: var(--gray);
  letter-spacing: 2px;
  text-transform: uppercase;
}

nav ul { list-style: none; display: flex; gap: 35px; }

nav a {
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: color 0.3s;
}

nav a:hover {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── SIDE DOTS ── */
.side-dots {
  position: fixed;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.side-dot {
  /* caixa clicável de 24px (recomendação de acessibilidade), com o ponto visível de 10px centralizado via padding + background-clip */
  width: 24px; height: 24px;
  padding: 7px;
  background: #cccccc;
  background-clip: content-box;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}

.side-dot.active {
  background: var(--grad);
  transform: scale(1.4);
}

/* ── SIDE ICONS ── */
.side-icons {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  display: flex;
  flex-direction: column;
}

.side-icon {
  width: 55px; height: 55px;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  cursor: pointer;
  transition: opacity 0.3s;
  text-decoration: none;
}

.side-icon:nth-child(2) { background: linear-gradient(135deg, #3d9199 0%, #002a2a 100%); }
.side-icon:nth-child(3) { background: linear-gradient(135deg, #2d8188 0%, #002020 100%); }
.side-icon:hover        { background: #111111; }

/* ── LAYOUT HELPERS ── */
.section-full {
  position: relative;
  min-height: 70vh;
  min-height: 70dvh; /* iOS Safari: 100vh/70vh não desconta a barra de endereço dinâmica */
  display: flex;
  align-items: center;
  padding: 60px 0;
}

/* ── SEPARADOR VERDE NO TOPO DE CADA SEÇÃO ── */
.section-divider {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 5;
}

.section-divider .divider-line {
  width: 60px;
  height: 2px;
  background: var(--grad);
  border-radius: 2px;
}

.section-divider .divider-dot {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--orange);
  border: 2px solid var(--orange);
  box-shadow: 0 4px 14px rgba(0,51,51,0.18);
}

@media (max-width: 600px) {
  .section-divider .divider-line { width: 32px; }
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 60px;
  width: 100%;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}

/* Dá mais espaço à coluna da imagem (história), deslocando-a para a esquerda e aumentando o tamanho */
.two-col-match-height {
  grid-template-columns: 1fr 1.3fr;
  align-items: center;
}

.history-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── SECTION LABEL ── */
.section-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label::after {
  content: '';
  height: 2px;
  width: 55px;
  background: var(--grad);
  display: block;
  flex-shrink: 0;
}

/* ── TYPOGRAPHY ── */
.big-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(44px, 5.5vw, 76px);
  line-height: 0.98;
  margin-bottom: 28px;
  font-weight: 700;
}

.big-title .orange {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-text {
  font-size: 15px;
  line-height: 1.82;
  color: #555555;
  max-width: 470px;
}

.section-text strong { color: var(--black); }

/* ── BUTTONS ── */
.btn-orange,
.btn-outline {
  position: relative;
  overflow: hidden;
}

.btn-orange::after,
.btn-outline::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.35) 50%, transparent 100%);
  transform: skewX(-20deg);
  transition: left 0s;
  pointer-events: none;
}

.btn-orange:hover::after,
.btn-outline:hover::after {
  left: 150%;
  transition: left 0.55s ease;
}

.btn-orange {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--grad);
  color: white;
  padding: 15px 32px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  margin-top: 32px;
  transition: opacity 0.3s;
  font-family: 'Open Sans', sans-serif;
}

.btn-orange:hover { opacity: 0.9; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 2px solid #51A8B1;
  background: transparent;
  padding: 13px 30px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  text-decoration: none;
  margin-top: 32px;
  transition: all 0.3s;
  font-family: 'Open Sans', sans-serif;
  color: #003333;
}

.btn-outline:hover {
  background: var(--grad);
  color: white;
  border-color: transparent;
}

/* ── HERO ── */
#hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 98px;
  min-height: calc(100vh - 98px);
  min-height: calc(100dvh - 98px);
  padding: 0;
}

.hero-left {
  position: relative;
  background: #c9cccb;
  overflow: hidden;
}

/* Slideshow em tela cheia do Hero */
.hero-slideshow {
  position: absolute;
  inset: 0;
}

.hero-slideshow img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: 0;
  transition: opacity 1.8s ease;
}

.hero-slideshow img.active {
  opacity: 1;
  z-index: 1;
}

/* Camada branca que aparece entre uma foto e outra (fade out branco) */
.hero-slide-fade {
  position: absolute;
  inset: 0;
  background: #ffffff;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1s ease;
  z-index: 2;
}

.hero-slide-fade.active {
  opacity: 1;
}

.hero-right {
  display: flex;
  align-items: center;
  padding: 80px 60px 80px 50px;
}

.hero-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(52px, 6.5vw, 92px);
  line-height: 0.94;
  margin-bottom: 30px;
  font-weight: 700;
}

.hero-title .orange {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── VIDEO ── */
.video-wrap {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.video-wrap img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s;
}

.video-wrap:hover img { transform: scale(1.04); }

/* ── TIMELINE ── */
.timeline {
  display: flex;
  align-items: center;
  margin: 28px 0 32px;
  flex-wrap: wrap;
  gap: 2px;
  border-bottom: 1px solid #eeeeee;
  padding-bottom: 18px;
}

.tl-year {
  font-size: 13px;
  font-weight: 700;
  color: var(--black);
  cursor: pointer;
  padding: 2px 0;
  transition: color 0.3s;
}

.tl-year.active,
.tl-year:hover {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tl-dash {
  width: 40px;
  height: 1px;
  background: #cccccc;
  margin: 0 8px;
}

.history-img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

/* ── BLOG CARD ── */
.blog-card {
  background: white;
  box-shadow: 0 4px 30px rgba(0,0,0,0.09);
  overflow: hidden;
}

.blog-card-img-wrap {
  overflow: hidden;
  height: 270px;
}

.blog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.blog-card:hover .blog-card-img { transform: scale(1.04); }

.blog-card-body { padding: 25px 28px; }

.blog-card-title {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  color: var(--black);
  margin-bottom: 14px;
  line-height: 1.3;
}

.blog-meta {
  display: flex;
  gap: 18px;
  font-size: 12px;
  color: var(--gray);
  flex-wrap: wrap;
}

.blog-meta span { display: flex; align-items: center; gap: 5px; }
.blog-meta i {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.blog-dots { display: flex; gap: 8px; margin-top: 18px; }

.blog-dot {
  /* caixa clicável de 24px (recomendação de acessibilidade), com o ponto visível de 10px centralizado via padding + background-clip */
  width: 24px; height: 24px;
  padding: 7px;
  background: #dddddd;
  background-clip: content-box;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
  border: none;
}

.blog-dot.active { background: var(--grad); }

/* ── TRAINING WHEEL ── */
.training-wheel {
  position: relative;
  width: 430px; height: 430px;
  margin: 0 auto;
}

.wheel-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 370px; height: 370px;
  border: 1px dashed #d0d0d0;
  border-radius: 50%;
}

.wheel-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -78px);
  width: 115px; height: 115px;
  background: #111111;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 30px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.25);
  z-index: 2;
}

.wheel-dog-img {
  width: 75px;
  height: 75px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.wheel-info {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, 48px);
  text-align: center;
  width: 190px;
  z-index: 2;
}

.wheel-info-title {
  font-family: 'Oswald', sans-serif;
  font-size: 17px;
  color: var(--black);
  margin-bottom: 7px;
}

.wheel-info-text {
  font-size: 12px;
  color: #666666; /* era #777 (contraste 4.49:1, abaixo do mínimo 4.5:1 pra texto pequeno) */
  line-height: 1.6;
}

.wheel-info-link {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
  display: inline-block;
  margin-top: 10px;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.wheel-info-link:hover { opacity: 0.7; }

.wicon {
  position: absolute;
  width: 54px; height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── PUPPIES ── */
.puppy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.puppy-card {
  text-align: center;
}

/* Carrossel — cada quadradinho troca de foto automaticamente */
.puppy-carousel {
  position: relative;
  width: 100%;
  max-width: 1080px;
  max-height: 1080px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  background: var(--light);
  margin: 0 auto;
}

.puppy-carousel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity 1.4s ease, transform 8s ease;
  transform: scale(1);
}

.puppy-carousel img.active {
  opacity: 1;
  transform: scale(1.04);
}

.puppy-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 10px;
}

.puppy-carousel-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d8d8d8;
  transition: background 0.3s, transform 0.3s;
}

.puppy-carousel-dots span.active {
  background: var(--orange);
  transform: scale(1.3);
}

.puppy-name-tag {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  margin-top: 8px;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── LIGHTBOX (popup de foto 1080x1080 e galeria de vídeos) ── */
#puppy-lightbox,
#video-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.92);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

#puppy-lightbox.active,
#video-lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

#puppy-lightbox .lightbox-inner,
#video-lightbox .lightbox-inner {
  position: relative;
  transform: scale(0.94);
  transition: transform 0.3s ease;
}

#puppy-lightbox.active .lightbox-inner,
#video-lightbox.active .lightbox-inner {
  transform: scale(1);
}

#puppy-lightbox .lightbox-inner {
  width: min(1080px, 88vw, 88vh);
  aspect-ratio: 1 / 1;
  max-width: 1080px;
  max-height: 1080px;
}

#puppy-lightbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
  box-shadow: 0 25px 70px rgba(0,0,0,0.6);
}

#puppy-lightbox .lightbox-caption {
  text-align: center;
  color: rgba(255,255,255,0.85);
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 14px;
}

/* Vídeo — proporção 16:9 */
.video-lightbox-inner {
  width: min(900px, 90vw);
  aspect-ratio: 16 / 9;
}

#video-lightbox video {
  width: 100%;
  height: 100%;
  display: block;
  background: #000;
  border-radius: 10px;
  box-shadow: 0 25px 70px rgba(0,0,0,0.6);
}

#puppy-lightbox .lightbox-close,
#video-lightbox .lightbox-close {
  position: absolute;
  top: -46px;
  right: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

#puppy-lightbox .lightbox-close:hover,
#video-lightbox .lightbox-close:hover {
  background: rgba(255,255,255,0.25);
  transform: rotate(90deg);
}

/* Setinhas prev/next do lightbox */
#puppy-lightbox .lightbox-arrow,
#video-lightbox .lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  z-index: 2;
}

#puppy-lightbox .lightbox-arrow:hover,
#video-lightbox .lightbox-arrow:hover {
  background: var(--grad);
  border-color: transparent;
}

#puppy-lightbox .lightbox-prev,
#video-lightbox .lightbox-prev { left: -60px; }

#puppy-lightbox .lightbox-next,
#video-lightbox .lightbox-next { right: -60px; }

#puppy-lightbox .lightbox-prev:hover,
#video-lightbox .lightbox-prev:hover { transform: translateY(-50%) translateX(-4px); }

#puppy-lightbox .lightbox-next:hover,
#video-lightbox .lightbox-next:hover { transform: translateY(-50%) translateX(4px); }

@media (max-width: 900px) {
  #puppy-lightbox .lightbox-prev,
  #video-lightbox .lightbox-prev { left: 8px; }

  #puppy-lightbox .lightbox-next,
  #video-lightbox .lightbox-next { right: 8px; }

  #puppy-lightbox .lightbox-arrow,
  #video-lightbox .lightbox-arrow { width: 40px; height: 40px; background: rgba(0,0,0,0.35); }
}

@media (max-width: 600px) {
  #puppy-lightbox .lightbox-close,
  #video-lightbox .lightbox-close { top: -40px; width: 34px; height: 34px; }
}

/* ── CARD DE TEXTO ROTATIVO (características dos filhotes) ── */
.puppy-text-card {
  display: flex;
  flex-direction: column;
}

.puppy-text-carousel {
  position: relative;
  width: 100%;
  max-width: 1080px;
  max-height: 1080px;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  overflow: hidden;
  background: var(--light);
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.puppy-text-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 14px 12px;
  opacity: 0;
  transition: opacity 1s ease;
}

.puppy-text-slide.active { opacity: 1; }

.puppy-text-name {
  font-family: 'Oswald', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.puppy-text-desc {
  font-size: 11.5px;
  line-height: 1.6;
  color: #555555;
}

/* ── CONTACT ── */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-field {
  position: relative;
  border: 1px solid #dddddd;
  display: flex;
  transition: border-color 0.3s;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 17px 38px 17px 20px;
  border: none;
  outline: none;
  font-size: 11px;
  font-family: 'Open Sans', sans-serif;
  color: var(--black);
  background: transparent;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.form-field textarea  { height: 130px; resize: none; }
.form-field::after    { content: '*'; position: absolute; right: 14px; top: 17px; color: #bbbbbb; font-size: 15px; }

.form-field input::placeholder,
.form-field textarea::placeholder { color: #bbbbbb; }

.form-field:focus-within {
  border-image: var(--grad) 1;
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
}

.contact-info i {
  font-size: 26px;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.phone-num       { font-family: 'Oswald', sans-serif; font-size: 30px; color: var(--black); }
.phone-hours     { font-size: 13px; color: var(--gray); margin-top: 2px; }

/* ── LOGO IMAGEM NO MENU ── */
.logo-img {
  height: 68px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* ── FOOTER ── */
.footer-main {
  position: relative;
  background: linear-gradient(160deg, #51A8B1 0%, #1a6a72 40%, #003333 100%);
  overflow: hidden;
  color: rgba(255,255,255,0.85);
}

/* canvas da rede neural — ocupa todo o footer */
.footer-neural {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.footer-grid {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: 0 auto;
  padding: 80px 60px 60px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 60px;
}

/* ── Coluna genérica ── */
.footer-col {}

/* Logo */
.footer-logo img {
  height: 64px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.92;
  display: block;
  margin-bottom: 20px;
}

.footer-about {
  font-size: 13.5px;
  line-height: 1.8;
  color: rgba(255,255,255,0.72);
  max-width: 300px;
  margin-bottom: 28px;
}

/* Ícones sociais */
.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.8);
  font-size: 15px;
  text-decoration: none;
  transition: background 0.3s, border-color 0.3s, color 0.3s, transform 0.25s;
}

.footer-social a:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.65);
  color: #fff;
  transform: translateY(-3px);
}

/* Títulos das colunas */
.footer-col-title {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 26px;
  padding-bottom: 14px;
  position: relative;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 2px;
  background: rgba(255,255,255,0.45);
  border-radius: 2px;
}

/* Links de navegação */
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-links a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.25s, gap 0.25s;
}

.footer-links a::before {
  content: '›';
  font-size: 16px;
  color: rgba(255,255,255,0.4);
  transition: color 0.25s;
}

.footer-links a:hover {
  color: #fff;
  gap: 12px;
}

.footer-links a:hover::before {
  color: rgba(255,255,255,0.8);
}

/* Lista de contato */
.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 30px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.72);
  line-height: 1.5;
}

.footer-contact-list i {
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  margin-top: 2px;
  flex-shrink: 0;
}

/* Botão CTA no footer */
.footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 26px;
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  font-family: 'Open Sans', sans-serif;
  transition: background 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}

.footer-cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.2) 50%, transparent 100%);
  transform: skewX(-20deg);
  transition: left 0s;
}

.footer-cta:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.7);
}

.footer-cta:hover::after {
  left: 150%;
  transition: left 0.55s ease;
}

/* Barra inferior */
.footer-bottom {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: 0 auto;
  padding: 22px 60px;
  border-top: 1px solid rgba(255,255,255,0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}

.footer-credit-line a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-weight: 700;
  transition: color 0.3s;
}

.footer-credit-line a:hover { color: #fff; }

/* ── BOTÃO TOPO ── */
@keyframes float-up {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}

.back-to-top {
  position: fixed;
  bottom: calc(36px + env(safe-area-inset-bottom));
  left: calc(36px + env(safe-area-inset-left));
  z-index: 998;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--grad);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  box-shadow: 0 6px 20px rgba(0,51,51,0.35);
  animation: float-up 2s ease-in-out infinite;
  transition: background 0.3s, box-shadow 0.3s;
}

.back-to-top:hover {
  background: var(--grad-h);
  box-shadow: 0 8px 28px rgba(0,51,51,0.45);
}

.back-to-top i   { font-size: 15px; }
.back-to-top span { font-size: 9px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; font-family: 'Open Sans', sans-serif; }

/* ── WHATSAPP FLUTUANTE ── */
@keyframes wa-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.55); }
  70%  { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

.wa-float-btn {
  position: fixed;
  bottom: calc(36px + env(safe-area-inset-bottom));
  right: calc(36px + env(safe-area-inset-right));
  z-index: 998;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(37,211,102,0.4);
  animation: wa-pulse 2.4s infinite;
  transition: transform 0.3s, background 0.3s;
}

.wa-float-btn:hover {
  background: #1ebe5a;
  transform: scale(1.08);
}

/* ── BANNER DE COOKIES ── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--black);
  color: var(--white);
  padding: 18px 40px calc(18px + env(safe-area-inset-bottom));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
  transform: translateY(0);
  transition: transform 0.4s ease;
}

.cookie-banner.hidden {
  transform: translateY(110%);
}

.cookie-text {
  font-size: 13px;
  line-height: 1.6;
  flex: 1;
}

.cookie-text i {
  color: var(--orange);
  margin-right: 8px;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 10px 24px;
  border: none;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Open Sans', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: opacity 0.3s;
}

.cookie-btn:hover { opacity: 0.85; }

.cookie-accept {
  background: var(--grad);
  color: var(--white);
}

.cookie-refuse {
  background: transparent;
  color: #aaa;
  border: 1px solid #555;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  #hero           { grid-template-columns: 1fr; margin-top: 84px; min-height: auto; }
  .hero-left      { min-height: 50vh; min-height: 50dvh; }
  .hero-right     { padding: 50px 24px; }
  /* Evita zoom automático do Safari/iOS ao focar em campos com fonte < 16px */
  .form-field input,
  .form-field textarea { font-size: 16px; letter-spacing: 1px; }
  .two-col        { grid-template-columns: 1fr; gap: 40px; }
  .history-img-wrap { height: auto; }
  .history-img    { width: 100%; height: auto; max-height: none; }
  .container      { padding: 0 20px; }
  nav             { display: none; }
  .side-icons     { display: none; }
  .side-dots      { display: none; }
  .logo           { margin-right: 0; justify-self: start; }
  .navbar         { grid-template-columns: auto auto auto; padding: 14px 16px; gap: 12px; justify-content: space-between; }
  .navbar-whatsapp span { display: none; }
  .navbar-whatsapp {
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 50%;
    justify-content: center;
    flex-shrink: 0;
  }
  .navbar-whatsapp i { font-size: 17px; }
  .nav-toggle     { display: flex; }
  .mobile-nav     { top: 82px; }

  /* Roda de treinamento vira uma pilha simples no mobile (evita ícones sobrepondo o texto) */
  .training-wheel {
    width: 100%;
    max-width: 320px;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }
  .wheel-ring,
  .wicon { display: none; }
  .wheel-center {
    position: static;
    transform: none;
    width: 100px;
    height: 100px;
  }
  .wheel-dog-img { width: 58px; height: 58px; }
  .wheel-info {
    position: static;
    transform: none;
    width: 100%;
    max-width: 260px;
  }
  .puppy-grid      { grid-template-columns: repeat(2, 1fr); }
  .footer-grid     { grid-template-columns: 1fr; gap: 40px; padding: 50px 20px 40px; }
  .footer-bottom   { padding: 18px 20px; flex-direction: column; text-align: center; }
  .footer-about    { max-width: 100%; }
  .footer-logo img { height: 54px; }
  .cookie-banner   { flex-direction: column; padding: 20px; text-align: center; }
  .cookie-actions  { width: 100%; justify-content: center; }
  .logo-img        { height: 54px; }
  .back-to-top     { bottom: 80px; left: 20px; width: 50px; height: 50px; }
  .wa-float-btn    { bottom: 20px; right: 20px; width: 54px; height: 54px; font-size: 26px; }
}

/* ── TELAS BEM PEQUENAS (celulares menores) ── */
@media (max-width: 480px) {
  .container       { padding: 0 16px; }
  .navbar          { padding: 12px 14px; }
  .logo-img        { height: 42px; }
  #hero            { margin-top: 72px; }
  .mobile-nav      { top: 66px; }
  .hero-title      { font-size: 40px; }
  .big-title       { font-size: 34px; }
  .btn-orange,
  .btn-outline     { padding: 13px 22px; font-size: 10px; }
  .puppy-grid      { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .blog-card-img-wrap { height: 200px; }
  .training-wheel  { max-width: 260px; gap: 14px; }
  .wheel-center    { width: 85px; height: 85px; }
  .wheel-dog-img   { width: 46px; height: 46px; }
  .wheel-info-title { font-size: 15px; }
  .wheel-info-text { font-size: 11px; }
  .back-to-top,
  .wa-float-btn    { width: 48px; height: 48px; font-size: 22px; }

  #puppy-lightbox .lightbox-inner,
  #video-lightbox .lightbox-inner { width: 92vw; }
}
