/* ===================================================
   CACHORROS VOADORES — Stylesheet Principal
   Tema: Praias desertas, céu aberto, surreal e lúdico
   =================================================== */

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

:root {
  /* Paleta */
  --areia:        #f5e6c8;
  --areia-escura: #e8c98a;
  --areia-med:    #d4a85a;
  --oceano:       #1a6b8a;
  --oceano-claro: #3dafd4;
  --oceano-pale:  #b3dff0;
  --ceu:          #87ceeb;
  --ceu-profundo: #2c7bb6;
  --por-sol:      #f4852a;
  --por-sol-vivo: #ff6b35;
  --amarelo-sol:  #ffd166;
  --noite:        #1a2a4a;
  --noite-med:    #253a6e;
  --branco:       #ffffff;
  --texto:        #2d2d2d;
  --texto-claro:  #5a4a3a;

  /* Tipografia */
  --font-display: 'Pacifico', cursive;
  --font-body:    'Nunito', sans-serif;

  /* Espaçamentos */
  --gap-sm:  1rem;
  --gap-md:  2rem;
  --gap-lg:  4rem;

  /* Bordas */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 32px;
  --radius-xl: 48px;

  /* Sombras */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.10);
  --shadow-md: 0 6px 24px rgba(0,0,0,0.14);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.18);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--texto);
  background: var(--areia);
  overflow-x: hidden;
  line-height: 1.6;
}

img, svg { display: block; max-width: 100%; }

a {
  text-decoration: none;
  color: inherit;
}

ul { list-style: none; }

.container {
  width: min(1200px, 94vw);
  margin-inline: auto;
}

/* -------- SCROLLBAR CUSTOM -------- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--areia); }
::-webkit-scrollbar-thumb {
  background: var(--oceano-claro);
  border-radius: 4px;
}


/* ===================================================
   NAVBAR
   =================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--areia-escura);
  transition: box-shadow 0.3s;
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-container {
  width: min(1200px, 94vw);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--oceano);
  letter-spacing: -0.5px;
}

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

.nav-links a {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--texto-claro);
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--por-sol);
  border-radius: 2px;
  transition: width 0.3s;
}

.nav-links a:hover { color: var(--oceano); }
.nav-links a:hover::after { width: 100%; }

.btn-nav {
  background: var(--por-sol);
  color: var(--branco) !important;
  padding: 0.5rem 1.4rem;
  border-radius: var(--radius-xl);
  font-weight: 900 !important;
  transition: background 0.2s, transform 0.2s !important;
}

.btn-nav:hover {
  background: var(--por-sol-vivo) !important;
  transform: translateY(-2px);
}

.btn-nav::after { display: none !important; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--oceano);
}

/* ===================================================
   HERO SECTION
   =================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 80px;
}

/* Sky background gradient */
.hero-sky {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    #2c7bb6 0%,
    #5cb3e8 30%,
    #87ceeb 55%,
    #f4c98e 75%,
    #f4852a 88%,
    #e07535 100%
  );
  z-index: 0;
}

/* Nuvens CSS */
.cloud {
  position: absolute;
  background: rgba(255, 255, 255, 0.88);
  border-radius: 50px;
  filter: blur(2px);
}

.cloud::before,
.cloud::after {
  content: '';
  position: absolute;
  background: inherit;
  border-radius: 50%;
}

.cloud-1 {
  width: 180px; height: 55px;
  top: 15%; left: 8%;
  animation: cloudDrift 22s linear infinite;
}
.cloud-1::before {
  width: 90px; height: 80px;
  top: -40px; left: 25px;
}
.cloud-1::after {
  width: 70px; height: 65px;
  top: -30px; left: 75px;
}

.cloud-2 {
  width: 140px; height: 42px;
  top: 28%; right: 12%;
  animation: cloudDrift 30s linear infinite reverse;
  opacity: 0.8;
}
.cloud-2::before {
  width: 70px; height: 60px;
  top: -30px; left: 20px;
}
.cloud-2::after {
  width: 55px; height: 50px;
  top: -24px; left: 60px;
}

.cloud-3 {
  width: 220px; height: 65px;
  top: 10%; right: 30%;
  animation: cloudDrift 26s linear infinite;
  opacity: 0.6;
}
.cloud-3::before {
  width: 100px; height: 90px;
  top: -45px; left: 35px;
}
.cloud-3::after {
  width: 80px; height: 70px;
  top: -35px; left: 100px;
}

@keyframes cloudDrift {
  from { transform: translateX(-60px); }
  to   { transform: translateX(60px); }
}

/* Sol */
.sun {
  position: absolute;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, #ffe066 0%, #f4852a 70%, transparent 100%);
  border-radius: 50%;
  top: 18%;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 60px 30px rgba(244,133,42,0.35), 0 0 120px 60px rgba(244,133,42,0.15);
  animation: sunPulse 4s ease-in-out infinite;
  z-index: 1;
}

@keyframes sunPulse {
  0%, 100% { box-shadow: 0 0 60px 30px rgba(244,133,42,0.35), 0 0 120px 60px rgba(244,133,42,0.15); }
  50%       { box-shadow: 0 0 80px 45px rgba(244,133,42,0.50), 0 0 160px 80px rgba(244,133,42,0.20); }
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: var(--gap-md);
  max-width: 680px;
}

.hero-eyebrow {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--amarelo-sol);
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
  margin-bottom: 0.75rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 1.05;
  color: var(--branco);
  text-shadow: 0 4px 24px rgba(0,0,0,0.35);
  margin-bottom: 1.25rem;
}

.hero-title .highlight {
  color: var(--amarelo-sol);
  display: block;
  text-shadow: 0 4px 24px rgba(0,0,0,0.4), 0 0 40px rgba(255,209,102,0.6);
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255,255,255,0.92);
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
  max-width: 520px;
  margin: 0 auto 2rem;
  font-weight: 600;
  font-style: italic;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--por-sol);
  color: var(--branco);
  padding: 0.85rem 2.2rem;
  border-radius: var(--radius-xl);
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(244,133,42,0.4);
  display: inline-block;
}

.btn-primary:hover {
  background: var(--por-sol-vivo);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(244,133,42,0.5);
}

.btn-secondary {
  background: rgba(255,255,255,0.2);
  color: var(--branco);
  padding: 0.85rem 2.2rem;
  border-radius: var(--radius-xl);
  font-weight: 900;
  font-size: 1rem;
  border: 2px solid rgba(255,255,255,0.6);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  backdrop-filter: blur(8px);
  display: inline-block;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.35);
  transform: translateY(-3px);
}

/* -------- DOG CSS ART (Hero) -------- */
.hero-scene {
  position: absolute;
  z-index: 5;
  right: 8%;
  top: 52%;
  transform: translateY(-50%);
  pointer-events: none;
}

.dog-art {
  position: relative;
  width: 220px;
  height: 160px;
  animation: dogFloat 3.5s ease-in-out infinite;
}

@keyframes dogFloat {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50%       { transform: translateY(-22px) rotate(4deg); }
}

.dog-body { position: relative; }

.dog-head {
  position: absolute;
  width: 85px;
  height: 72px;
  background: #c8873a;
  border-radius: 50% 50% 45% 45%;
  top: 0;
  left: 20px;
  box-shadow: inset -6px -6px 12px rgba(0,0,0,0.12);
}

.dog-ear {
  position: absolute;
  width: 28px;
  height: 36px;
  background: #a06020;
  border-radius: 50% 50% 45% 45%;
  top: -12px;
}

.dog-ear-left  { left: 4px;  transform: rotate(-20deg); }
.dog-ear-right { right: 4px; transform: rotate(20deg); }

.dog-snout {
  position: absolute;
  width: 38px;
  height: 30px;
  background: #d9a060;
  border-radius: 50% 50% 50% 50% / 40% 40% 60% 60%;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
}

.dog-nose {
  position: absolute;
  width: 14px;
  height: 10px;
  background: #2d1a0e;
  border-radius: 50% 50% 48% 48%;
  top: 2px;
  left: 50%;
  transform: translateX(-50%);
}

.dog-eye {
  position: absolute;
  width: 14px;
  height: 14px;
  background: #2d1a0e;
  border-radius: 50%;
  top: 20px;
}
.dog-eye::after {
  content: '';
  position: absolute;
  width: 5px; height: 5px;
  background: white;
  border-radius: 50%;
  top: 2px; left: 2px;
}
.dog-eye-left  { left: 14px; }
.dog-eye-right { right: 14px; }

.dog-tongue {
  position: absolute;
  width: 18px;
  height: 24px;
  background: #e85c7a;
  border-radius: 50% 50% 60% 60%;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.dog-torso {
  position: absolute;
  width: 120px;
  height: 70px;
  background: #c8873a;
  border-radius: 40% 60% 55% 45%;
  top: 54px;
  left: 0;
  box-shadow: inset -8px -8px 16px rgba(0,0,0,0.10);
}

.dog-leg {
  position: absolute;
  width: 18px;
  height: 36px;
  background: #b06830;
  border-radius: 6px 6px 10px 10px;
}

.dog-leg-front-left  { top: 42px; left: 16px;  transform: rotate(20deg); }
.dog-leg-front-right { top: 42px; left: 38px;  transform: rotate(-10deg); }
.dog-leg-back-left   { top: 42px; right: 20px; transform: rotate(-20deg); }
.dog-leg-back-right  { top: 42px; right: 0px;  transform: rotate(10deg); }

.dog-tail {
  position: absolute;
  width: 14px;
  height: 50px;
  background: #a06020;
  border-radius: 30px;
  right: -10px;
  top: 0px;
  transform: rotate(40deg);
  transform-origin: bottom center;
  animation: tailWag 0.5s ease-in-out infinite alternate;
}

@keyframes tailWag {
  from { transform: rotate(30deg); }
  to   { transform: rotate(60deg); }
}

/* -------- BEACH BOTTOM -------- */
.hero-beach {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 4;
}

.beach-sand {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 90px;
  background: linear-gradient(to top, var(--areia-escura), var(--areia));
  border-radius: 60% 60% 0 0 / 30px 30px 0 0;
}

.beach-wave {
  position: absolute;
  height: 24px;
  border-radius: 50%;
  background: rgba(61, 175, 212, 0.45);
  filter: blur(4px);
}

.wave-1 { width: 80%; left: 5%;  bottom: 65px; animation: waveSway 5s ease-in-out infinite; }
.wave-2 { width: 70%; left: 15%; bottom: 52px; animation: waveSway 4s ease-in-out infinite 0.5s; opacity: 0.7; }
.wave-3 { width: 60%; left: 20%; bottom: 42px; animation: waveSway 3.5s ease-in-out infinite 1s; opacity: 0.5; }

@keyframes waveSway {
  0%, 100% { transform: scaleX(1) translateX(0); }
  50%       { transform: scaleX(1.04) translateX(12px); }
}


/* ===================================================
   SECTION COMMON STYLES
   =================================================== */
.section-header {
  text-align: center;
  margin-bottom: var(--gap-lg);
}

.section-tag {
  display: inline-block;
  background: var(--oceano-pale);
  color: var(--oceano);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: var(--radius-xl);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--oceano);
  margin-bottom: 1rem;
  line-height: 1.1;
}

.section-desc {
  max-width: 620px;
  margin-inline: auto;
  color: var(--texto-claro);
  font-size: 1.05rem;
  font-weight: 600;
  font-style: italic;
}


/* ===================================================
   SOBRE OS CACHORROS
   =================================================== */
.sobre {
  padding: var(--gap-lg) 0;
  background: linear-gradient(to bottom, var(--areia), #fff9ee);
  position: relative;
}

.sobre::before {
  content: '';
  position: absolute;
  top: -40px;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, var(--areia-escura), var(--areia));
  border-radius: 0 0 50% 50% / 0 0 30px 30px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--gap-md);
}

.card {
  background: var(--branco);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 2px solid transparent;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--oceano-claro), var(--por-sol));
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.card:hover {
  transform: translateY(-8px);
  border-color: var(--oceano-pale);
  box-shadow: var(--shadow-md);
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--oceano);
  margin-bottom: 0.75rem;
}

.card-text {
  color: var(--texto-claro);
  font-size: 0.97rem;
  line-height: 1.7;
}


/* ===================================================
   GALERIA DE CARDS
   =================================================== */
.galeria {
  padding: var(--gap-lg) 0;
  background: linear-gradient(
    to bottom,
    #fff9ee 0%,
    var(--oceano-pale) 40%,
    #c8e8f5 100%
  );
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--gap-md);
}

.gallery-card {
  background: var(--branco);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s cubic-bezier(.22,.68,0,1.2), box-shadow 0.3s;
  cursor: pointer;
}

.gallery-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

/* -------- SCENE CARDS (CSS Art Miniaturas) -------- */
.gallery-card-art {
  height: 180px;
  overflow: hidden;
  position: relative;
}

.scene-card {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.scene-sky {
  position: absolute;
  inset: 0;
}

/* Cenas individuais */
.scene-1 .scene-sky {
  background: linear-gradient(to bottom, #5cb3e8, #f4c98e 70%, #f4852a);
}
.scene-2 .scene-sky {
  background: linear-gradient(to bottom, #0d1b3e, #1a2a6c, #2c4a8a);
}
.scene-3 .scene-sky {
  background: linear-gradient(to bottom, #3dafd4, #87ceeb 60%, #b0d8f0);
}
.scene-4 .scene-sky {
  background: linear-gradient(to bottom, #a0cce8, #d0eaf8);
}
.scene-5 .scene-sky {
  background: linear-gradient(to bottom, #f4852a, #ffb347 40%, #ffe0a0);
}
.scene-6 .scene-sky {
  background: linear-gradient(to bottom, #4a5568, #718096, #a0aec0);
}

/* Sol nas cenas */
.scene-sun {
  position: absolute;
  width: 40px;
  height: 40px;
  background: radial-gradient(circle, #ffe066, #f4852a 80%);
  border-radius: 50%;
  top: 18px;
  right: 30px;
  box-shadow: 0 0 18px 8px rgba(255,200,60,0.35);
  animation: sunPulse 4s ease-in-out infinite;
}

.scene-sun.s-big {
  width: 55px; height: 55px;
  top: 12px; right: 20px;
}

.scene-sun.sunset {
  background: radial-gradient(circle, #ffb347, #e07535 80%);
  box-shadow: 0 0 30px 14px rgba(224,117,53,0.45);
  top: 30px;
  width: 65px; height: 65px;
  right: 15px;
}

/* Lua */
.scene-moon {
  position: absolute;
  width: 38px; height: 38px;
  background: #f5f0d0;
  border-radius: 50%;
  top: 16px;
  right: 28px;
  box-shadow: 0 0 14px 6px rgba(245,240,208,0.35);
}
.scene-moon::after {
  content: '';
  position: absolute;
  width: 28px; height: 28px;
  background: #1a2a4a;
  border-radius: 50%;
  top: -4px;
  right: -8px;
}

/* Estrelas */
.scene-star {
  position: absolute;
  color: #ffe066;
  font-size: 0.85rem;
  top: 20px; left: 30px;
  animation: starTwinkle 2s ease-in-out infinite;
}
.scene-star.s2 {
  top: 40px; left: 60px;
  animation-delay: 1s;
  font-size: 0.65rem;
}

@keyframes starTwinkle {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.7); }
}

/* Nuvem nas cenas */
.scene-cloud {
  position: absolute;
  width: 65px;
  height: 20px;
  background: rgba(255,255,255,0.8);
  border-radius: 20px;
  top: 25px;
  left: 20px;
  filter: blur(1.5px);
}
.scene-cloud::before {
  content: '';
  position: absolute;
  width: 32px; height: 30px;
  background: inherit;
  border-radius: 50%;
  top: -16px; left: 10px;
}
.scene-cloud.c2 { top: 18px; left: 15px; width: 50px; }
.scene-cloud.c3 { top: 38px; left: 50px; width: 40px; }
.scene-cloud.c4 { top: 15px; left: 25px; width: 70px; opacity: 0.7; }

.scene-wave {
  position: absolute;
  font-size: 1.8rem;
  bottom: 40px;
  left: 10px;
  opacity: 0.7;
}

.scene-rain {
  position: absolute;
  font-size: 1.5rem;
  top: 18px;
  left: 20px;
}

/* Areia das cenas */
.scene-sand {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(to top, #d4a85a, #e8c98a);
  border-radius: 50% 50% 0 0 / 12px 12px 0 0;
}

/* -------- DOG MINI (em cenas) -------- */
.dog-mini {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  animation: dogFloat 3s ease-in-out infinite;
}

.dog-mini-1 { animation-duration: 3.2s; }
.dog-mini-2 { animation-duration: 4.1s; bottom: 38px; }
.dog-mini-3 { animation-duration: 2.8s; }
.dog-mini-4 { animation-duration: 3.7s; bottom: 28px; }
.dog-mini-5 { animation-duration: 3.5s; }
.dog-mini-6 { animation-duration: 4.5s; bottom: 30px; }

.dm-cta {
  animation-duration: 2.5s;
  position: relative;
  bottom: auto;
  left: auto;
  transform: none;
}

.dm-head {
  position: relative;
  width: 48px;
  height: 42px;
  background: #c8873a;
  border-radius: 50% 50% 44% 44%;
  margin-inline: auto;
}

.dog-mini-2 .dm-head { background: #6a8cbb; }
.dog-mini-4 .dm-head { background: #d4a0d0; }
.dog-mini-5 .dm-head { background: #d4a040; }
.dog-mini-6 .dm-head { background: #8a9a7a; }

.dm-ear-l, .dm-ear-r {
  position: absolute;
  width: 15px;
  height: 20px;
  background: #a06020;
  border-radius: 50% 50% 44% 44%;
  top: -8px;
}
.dog-mini-2 .dm-ear-l,
.dog-mini-2 .dm-ear-r { background: #4a6ca0; }
.dog-mini-4 .dm-ear-l,
.dog-mini-4 .dm-ear-r { background: #b070b0; }
.dog-mini-5 .dm-ear-l,
.dog-mini-5 .dm-ear-r { background: #b08020; }
.dog-mini-6 .dm-ear-l,
.dog-mini-6 .dm-ear-r { background: #6a7a5a; }

.dm-ear-l { left: 2px;  transform: rotate(-18deg); }
.dm-ear-r { right: 2px; transform: rotate(18deg); }

.dm-nose {
  position: absolute;
  width: 14px;
  height: 10px;
  background: #2d1a0e;
  border-radius: 50% 50% 48% 48%;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
}

.dm-tongue {
  position: absolute;
  width: 11px;
  height: 14px;
  background: #e85c7a;
  border-radius: 50% 50% 60% 60%;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: tongueBob 0.6s ease-in-out infinite alternate;
}

@keyframes tongueBob {
  from { transform: translateX(-50%) scaleY(0.9); }
  to   { transform: translateX(-50%) scaleY(1.1) rotate(3deg); }
}

.dm-body {
  width: 60px;
  height: 34px;
  background: #c8873a;
  border-radius: 40% 60% 55% 45%;
  margin: 8px auto 0;
  position: relative;
}

.dog-mini-2 .dm-body { background: #6a8cbb; }
.dog-mini-4 .dm-body { background: #d4a0d0; }
.dog-mini-5 .dm-body { background: #d4a040; }
.dog-mini-6 .dm-body { background: #8a9a7a; }

.dm-tail {
  position: absolute;
  width: 8px;
  height: 24px;
  background: #a06020;
  border-radius: 20px;
  right: -6px;
  top: 0;
  transform: rotate(40deg);
  transform-origin: bottom center;
  animation: tailWag 0.45s ease-in-out infinite alternate;
}

.dog-mini-2 .dm-tail { background: #4a6ca0; }
.dog-mini-4 .dm-tail { background: #b070b0; }
.dog-mini-5 .dm-tail { background: #b08020; }
.dog-mini-6 .dm-tail { background: #6a7a5a; }

/* Gallery Card Info */
.gallery-card-info {
  padding: 1.25rem 1.5rem 1.5rem;
}

.dog-tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--oceano);
  background: var(--oceano-pale);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-xl);
  display: inline-block;
  margin-bottom: 0.6rem;
}

.gallery-card-info h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--texto);
  margin-bottom: 0.5rem;
}

.gallery-card-info p {
  color: var(--texto-claro);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.badge {
  display: inline-block;
  padding: 0.22rem 0.8rem;
  border-radius: var(--radius-xl);
  font-size: 0.78rem;
  font-weight: 700;
}

.badge-rare      { background: #fff3cd; color: #856404; }
.badge-legendary { background: #f3e8ff; color: #6b21a8; }
.badge-common    { background: #d1fae5; color: #065f46; }


/* ===================================================
   DEPOIMENTOS
   =================================================== */
.depoimentos {
  padding: var(--gap-lg) 0;
  background: linear-gradient(to bottom, #c8e8f5, var(--areia));
}

.depo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--gap-md);
}

.depo-card {
  background: var(--branco);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border-left: 5px solid var(--oceano-claro);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}

.depo-card::before {
  content: '\201C';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 5rem;
  color: var(--oceano-pale);
  font-family: Georgia, serif;
  line-height: 1;
}

.depo-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.depo-card p {
  color: var(--texto-claro);
  font-size: 0.97rem;
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}

.depo-card footer {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.depo-card footer strong {
  color: var(--oceano);
  font-size: 0.95rem;
}

.depo-card footer span {
  color: var(--texto-claro);
  font-size: 0.82rem;
}


/* ===================================================
   CONTATO / CTA
   =================================================== */
.contato {
  padding: var(--gap-lg) 0;
  background: linear-gradient(135deg, var(--oceano) 0%, var(--ceu-profundo) 60%, var(--noite-med) 100%);
  position: relative;
  overflow: hidden;
}

.contato::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,209,102,0.12), transparent 70%);
  top: -200px; right: -150px;
  pointer-events: none;
}

.cta-box {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--gap-lg);
  align-items: center;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 3rem;
  backdrop-filter: blur(10px);
}

.cta-dog-art {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.cta-dog-art .dm-cta {
  transform: scale(2);
  animation: dogFloat 2.8s ease-in-out infinite;
  margin-bottom: 2rem;
}

.cta-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  color: var(--branco);
  margin-bottom: 1rem;
}

.cta-text p {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  margin-bottom: 1.75rem;
  font-weight: 600;
}

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

.cta-form input,
.cta-form textarea {
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  color: var(--branco);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

.cta-form input::placeholder,
.cta-form textarea::placeholder {
  color: rgba(255,255,255,0.55);
}

.cta-form input:focus,
.cta-form textarea:focus {
  border-color: var(--amarelo-sol);
  background: rgba(255,255,255,0.18);
}

.cta-form textarea { resize: vertical; }

.cta-form .btn-primary {
  align-self: flex-start;
}


/* ===================================================
   FOOTER
   =================================================== */
.footer {
  background: var(--noite);
  color: rgba(255,255,255,0.75);
  padding: 2.5rem 0 1.5rem;
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--gap-md);
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.footer-brand .logo {
  font-size: 1.3rem;
  color: var(--oceano-claro);
  display: block;
  margin-bottom: 0.5rem;
}

.footer-brand p {
  font-size: 0.9rem;
  max-width: 260px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  align-items: center;
}

.footer-links a {
  color: rgba(255,255,255,0.65);
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--oceano-claro); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.25rem;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.65;
}


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

/* Tablet */
@media (max-width: 900px) {
  .hero-scene {
    right: 2%;
    top: 58%;
  }

  .dog-art {
    width: 160px;
    height: 120px;
    transform: scale(0.75);
  }

  .cta-box {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 2rem;
  }

  .cta-dog-art { display: none; }

  .cta-form .btn-primary {
    align-self: center;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.97);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.25rem;
    box-shadow: var(--shadow-md);
    border-bottom-left-radius: var(--radius-md);
    border-bottom-right-radius: var(--radius-md);
    z-index: 999;
  }

  .nav-links.open { display: flex; }

  .menu-toggle { display: block; }

  .hero-scene { display: none; }

  .hero-content { padding: 1rem; }

  .cards-grid,
  .gallery-grid,
  .depo-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-brand p { max-width: 100%; }
}


/* ===================================================
   ANIMAÇÕES DE ENTRADA (serão ativadas pelo JS)
   =================================================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }
.fade-in-delay-5 { transition-delay: 0.5s; }
.fade-in-delay-6 { transition-delay: 0.6s; }

/* Utilitário: estado do botão form enviado */
.btn-primary.sent {
  background: #22c55e;
  pointer-events: none;
}
