/* =========================
   RESET & VARIÁVEIS
   ========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #FFF8F0;
  --bg-alt: #FFEFE0;
  --white: #FFFFFF;
  --petrol: #1E4A5F;
  --petrol-light: #2C6480;
  --coral: #FF7A5C;
  --coral-dark: #E55A3C;
  --mint: #7FD1AE;
  --mint-light: #A8E0C7;
  --text: #1F2937;
  --text-muted: #6B7280;
  --border: #F0E4D6;

  --font-display: 'Fredoka', system-ui, sans-serif;
  --font-body: 'Nunito', system-ui, sans-serif;

  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

/* =========================
   TIPOGRAFIA / SEÇÕES
   ========================= */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--petrol);
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-top: 14px;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-header-light .section-title { color: var(--bg); }
.section-header-light .section-eyebrow { color: var(--mint-light); }

/* =========================
   BOTÕES
   ========================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 100px;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 6px 20px -6px rgba(255, 122, 92, 0.55);
}
.btn-primary:hover {
  background: var(--coral-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px -8px rgba(255, 122, 92, 0.65);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--petrol);
  border: 2px solid var(--petrol);
}
.btn-outline:hover {
  background: var(--petrol);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-full { width: 100%; }

/* =========================
   HEADER
   ========================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(255, 248, 240, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 2px 20px -8px rgba(30, 74, 95, 0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  transition: var(--transition);
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  background: var(--coral);
  border-radius: 50%;
  font-size: 1.2rem;
  box-shadow: 0 4px 12px -4px rgba(255, 122, 92, 0.6);
}

.logo-text em {
  font-style: normal;
  color: var(--coral);
}

.header.scrolled .logo { color: var(--petrol); }
.header.scrolled .logo-mark { background: var(--coral); }

.nav {
  display: flex;
  gap: 30px;
}

.nav a {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  transition: var(--transition);
  position: relative;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--coral);
  border-radius: 2px;
  transition: var(--transition);
}

.nav a:hover::after { width: 100%; }

.header.scrolled .nav a { color: var(--text); }
.header.scrolled .nav a:hover { color: var(--coral); }

.header-cta { padding: 10px 22px; font-size: 0.9rem; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
}
.menu-toggle span {
  display: block;
  height: 3px;
  background: var(--white);
  border-radius: 3px;
  transition: var(--transition);
}
.header.scrolled .menu-toggle span { background: var(--petrol); }

/* =========================
   HERO
   ========================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transform: scale(1.05);
  animation: heroZoom 25s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(30, 74, 95, 0.75) 0%,
    rgba(30, 74, 95, 0.85) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 700px;
  padding-top: 80px;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  color: var(--mint-light);
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 7vw, 5rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.hero-title em {
  font-style: normal;
  color: var(--coral);
}

.hero-subtitle {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  max-width: 540px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat strong {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 600;
  line-height: 1;
  color: var(--white);
}

.stat span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.04em;
}

/* patinhas decorativas */
.hero-paw {
  position: absolute;
  font-size: 3rem;
  opacity: 0.08;
  z-index: 1;
  animation: pawFloat 6s ease-in-out infinite;
}
.hero-paw-1 { top: 20%; right: 10%; animation-delay: 0s; }
.hero-paw-2 { bottom: 25%; right: 25%; font-size: 4rem; animation-delay: 2s; }
.hero-paw-3 { top: 60%; right: 5%; animation-delay: 4s; }

@keyframes pawFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-20px) rotate(10deg); }
}

/* =========================
   SERVIÇOS
   ========================= */
.servicos {
  padding: 120px 0;
  background: var(--bg);
}

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.servico-card {
  background: var(--white);
  padding: 36px 28px;
  border-radius: var(--radius-xl);
  border: 2px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.servico-card:hover {
  transform: translateY(-6px);
  border-color: var(--coral);
  box-shadow: 0 20px 40px -20px rgba(255, 122, 92, 0.3);
}

.servico-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  display: inline-block;
}

.servico-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--petrol);
  margin-bottom: 10px;
}

.servico-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 20px;
  flex: 1;
}

.servico-price {
  display: inline-block;
  padding: 8px 16px;
  background: var(--bg-alt);
  color: var(--coral);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 100px;
  align-self: flex-start;
}

/* =========================
   PLANOS
   ========================= */
.planos {
  padding: 120px 0;
  background: var(--bg-alt);
}

.planos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.plano-card {
  background: var(--white);
  padding: 40px 32px;
  border-radius: var(--radius-xl);
  border: 2px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
}

.plano-card:hover {
  transform: translateY(-6px);
  border-color: var(--petrol);
}

.plano-card.featured {
  background: var(--petrol);
  color: var(--white);
  border-color: var(--coral);
  box-shadow: 0 24px 48px -20px rgba(30, 74, 95, 0.4);
  transform: scale(1.03);
}

.plano-card.featured:hover {
  transform: scale(1.03) translateY(-6px);
}

.plano-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--coral);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 6px 16px;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 4px 12px -4px rgba(255, 122, 92, 0.6);
}

.plano-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 8px;
}

.plano-card.featured .plano-tag { color: var(--mint-light); }

.plano-card h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--petrol);
  margin-bottom: 24px;
}

.plano-card.featured h3 { color: var(--white); }

.plano-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
  flex: 1;
}

.plano-list li {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.plano-card.featured .plano-list li {
  color: rgba(255, 255, 255, 0.85);
}

.plano-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 24px;
  padding-top: 20px;
  border-top: 2px dashed var(--border);
  flex-wrap: wrap;
}

.plano-card.featured .plano-price {
  border-top-color: rgba(255, 255, 255, 0.15);
}

.plano-from {
  font-size: 0.95rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.plano-to {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--coral);
  line-height: 1;
}

.plano-card.featured .plano-to { color: var(--mint-light); }

.plano-to small {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-muted);
  margin-left: 2px;
}

.plano-card.featured .plano-to small {
  color: rgba(255, 255, 255, 0.6);
}

.plano-card .btn { width: 100%; }

.plano-card.featured .btn-outline {
  border-color: var(--white);
  color: var(--white);
}

.plano-card.featured .btn-outline:hover {
  background: var(--white);
  color: var(--petrol);
}

/* =========================
   SOBRE
   ========================= */
.sobre {
  padding: 120px 0;
  background: var(--bg);
}

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

.sobre-image {
  position: relative;
}

.sobre-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: 0 30px 60px -30px rgba(30, 74, 95, 0.35);
}

.sobre-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 130px;
  height: 130px;
  background: var(--coral);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  box-shadow: 0 20px 40px -12px rgba(255, 122, 92, 0.5);
  transform: rotate(-8deg);
}

.sobre-badge strong {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.sobre-badge span {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sobre-content h2 {
  margin-bottom: 24px;
}

.sobre-content p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 18px;
}

.sobre-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0 36px;
}

.sobre-feature {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sobre-feature span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  background: var(--mint);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.9rem;
  font-weight: 700;
  flex-shrink: 0;
}

.sobre-feature p {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--petrol);
  margin: 0;
}

/* =========================
   GALERIA
   ========================= */
.galeria {
  padding: 120px 0;
  background: var(--bg-alt);
}

.galeria-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 240px);
  gap: 16px;
}

.galeria-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--petrol-light);
  cursor: pointer;
}

.galeria-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform var(--transition-slow);
  display: block;
}

.galeria-item:hover img { transform: scale(1.06); }

.galeria-item-1 {
  grid-column: span 2;
  grid-row: span 2;
}

/* =========================
   DEPOIMENTOS
   ========================= */
.depoimentos {
  padding: 120px 0;
  background: var(--bg);
}

.depoimentos-slider {
  max-width: 780px;
  margin: 0 auto 40px;
  text-align: center;
  min-height: 260px;
  position: relative;
}

.depoimento {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.depoimento.active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

.depoimento-stars {
  font-size: 1.4rem;
  color: #F4B942;
  letter-spacing: 4px;
  margin-bottom: 20px;
}

.depoimento-text {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 400;
  line-height: 1.6;
  color: var(--petrol);
  margin-bottom: 28px;
}

.depoimento-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.depoimento-author strong {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}

.depoimento-author span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  transition: var(--transition);
}

.dot.active {
  background: var(--coral);
  width: 32px;
  border-radius: 100px;
}

/* =========================
   AGENDAMENTO
   ========================= */
.agendar {
  padding: 120px 0;
  background: var(--petrol);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.agendar::before {
  content: '🐾';
  position: absolute;
  top: 10%;
  left: 5%;
  font-size: 8rem;
  opacity: 0.05;
  transform: rotate(-20deg);
}

.agendar::after {
  content: '🐾';
  position: absolute;
  bottom: 10%;
  right: 5%;
  font-size: 10rem;
  opacity: 0.05;
  transform: rotate(15deg);
}

.agendar-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  text-align: center;
}

.agendar .section-eyebrow { color: var(--mint-light); }
.agendar .section-title { color: var(--white); }

.agendar-text {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  margin: 20px 0 48px;
  line-height: 1.7;
}

.agendar-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  text-align: left;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.form-group input,
.form-group select {
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  border: 2px solid transparent;
  border-radius: var(--radius);
  transition: var(--transition);
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 4px rgba(255, 122, 92, 0.2);
}

.agendar-form .btn-full {
  grid-column: 1 / -1;
  margin-top: 8px;
  padding: 18px;
  font-size: 1rem;
}

/* =========================
   FOOTER
   ========================= */
.footer {
  background: #142F3D;
  color: var(--white);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
}

.logo-footer {
  color: var(--white);
  margin-bottom: 20px;
}

.footer-tagline {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  font-size: 1.1rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--coral);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--coral);
  margin-bottom: 20px;
}

.footer-col p,
.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
  line-height: 1.6;
  transition: var(--transition);
}

.footer-col p strong { color: var(--white); font-weight: 700; }

.footer-col a:hover { color: var(--coral); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a {
  color: var(--coral);
  transition: var(--transition);
}

.footer-bottom a:hover { color: var(--mint-light); }

/* =========================
   RESPONSIVO
   ========================= */
@media (max-width: 1024px) {
  .servicos-grid { grid-template-columns: 1fr 1fr; }
  .planos-grid { grid-template-columns: 1fr 1fr; }
  .plano-card.featured { transform: none; }
  .plano-card.featured:hover { transform: translateY(-6px); }
  .sobre-grid { gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .menu-toggle { display: flex; }
  .header-cta { display: none; }

  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    padding: 24px;
    gap: 20px;
    box-shadow: 0 16px 32px -8px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  }
  .nav.open a { color: var(--text); }

  .hero { min-height: 90vh; }
  .hero-title { font-size: 2.5rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; }
  .hero-stats { gap: 28px; }

  .servicos,
  .planos,
  .sobre,
  .galeria,
  .depoimentos,
  .agendar { padding: 80px 0; }

  .servicos-grid { grid-template-columns: 1fr; }
  .planos-grid { grid-template-columns: 1fr; }
  .sobre-grid { grid-template-columns: 1fr; gap: 56px; }
  .sobre-image { max-width: 420px; margin: 0 auto; }
  .sobre-features { grid-template-columns: 1fr; }

  .galeria-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 180px 180px 180px;
  }
  .galeria-item-1 { grid-column: span 2; grid-row: span 1; }

  .agendar-form { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 40px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .section-header { margin-bottom: 40px; }
  .hero-stats { gap: 20px; }
  .stat strong { font-size: 1.5rem; }
  .sobre-badge { width: 100px; height: 100px; bottom: -16px; right: -16px; }
  .sobre-badge strong { font-size: 1.8rem; }
  .plano-card { padding: 32px 24px; }
}