/* ============================================================
   VARIÁVEIS NATIVAS CSS
   ============================================================ */
:root {
  --pink:        #e91e8c;
  --pink-light:  #f48fb1;
  --purple:      #8e24aa;
  --dark-purple: #3d1060;
  --teal:        #1a8a8a;
  --footer-bg:   #4a0e78;
  --gold:        #c9921a;
  --bg:          #faf2ec;
  --cream:       #fff8f3;
  --text:        #2d1040;
  --text-light:  #6b4f7a;
  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   24px;
  --shadow:      0 4px 18px rgba(60, 0, 80, 0.10);
}

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

html {
  height: 100%;
  overflow: hidden;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--text);
  height: 100%;
  overflow: hidden;
}

a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }
img { display: block; max-width: 100%; }
svg { display: inline-block; }

/* ============================================================
   PAGE WRAPPER
   ============================================================ */
.page {
  height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  background-color: var(--bg);
  /* gradiente sutil + pata repetida em marca d'água */
  background-image:
    radial-gradient(ellipse 60% 50% at 30% 60%, rgba(233, 30, 140, 0.14) 0%, transparent 70%);
}

/* Patinhas decorativas individuais */
.paw-bg {
  position: absolute;
  width: 36px;
  height: 36px;
  object-fit: contain;
  pointer-events: none;
  z-index: 0;
  opacity: 0.22;
}
.paw-1  { top:  6%; left:  4%;  transform: rotate(22deg);  }
.paw-2  { top: 20%; left: 44%;  transform: rotate(-38deg); }
.paw-3  { top: 35%; left:  7%;  transform: rotate(55deg);  }
.paw-4  { top: 52%; left: 28%;  transform: rotate(-18deg); }
.paw-5  { top: 13%; left: 18%;  transform: rotate(-30deg); }
.paw-6  { top: 14%; left: 78%;  transform: rotate(-52deg); }
.paw-7  { top: 44%; left: 91%;  transform: rotate(28deg);  }
.paw-8  { top: 76%; left: 62%;  transform: rotate(-28deg); }
.paw-9  { top: 10%; left: 61%;  transform: rotate(68deg);  }
.paw-10 { top: 44%; left:  6%;  transform: rotate(35deg);  }
.paw-11 { top: 28%; left: 36%;  transform: rotate(33deg);  }
.paw-12 { top: 48%; left: 34%;  transform: rotate(-47deg); }
.paw-13 { top: 20%; left: 32%;  transform: rotate(-15deg); }
.paw-14 { top: 38%; left: 74%;  transform: rotate(-44deg); }
.paw-15 { top: 72%; left: 86%;  transform: rotate(58deg);  }

/* ============================================================
   ELEMENTOS DECORATIVOS
   ============================================================ */

/* Estrelas douradas */
.deco-star {
  position: absolute;
  color: var(--gold);
  font-size: 1rem;
  opacity: 0.7;
  pointer-events: none;
  z-index: 0;
}
.deco-star.s1 { top:  7vh; left: 48%;  font-size: 0.75rem; }
.deco-star.s2 { top: 16vh; left: 54%;  font-size: 1.1rem;  }
.deco-star.s3 { top:  5vh; right: 12%; font-size: 0.9rem;  }
.deco-star.s4 { top: 24vh; right: 20%; font-size: 0.7rem;  }
.deco-star.s5 { top: 55vh; left:  8%;  font-size: 0.8rem;  }
.deco-star.s6 { top: 42vh; right:  6%; font-size: 1rem;    }
.deco-star.s7 { top: 72vh; left: 58%;  font-size: 0.65rem; }

/* Folhas roxas laterais */
.deco-leaf {
  position: absolute;
  width: 120px;
  height: 260px;
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  opacity: 0.45;
  z-index: 0;
}
.deco-leaf.leaf-left {
  bottom: 40px;
  left: -28px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 140 300'%3E%3Cellipse cx='70' cy='150' rx='55' ry='140' fill='%236a1b9a' opacity='.3' transform='rotate(-15 70 150)'/%3E%3Cellipse cx='50' cy='120' rx='35' ry='100' fill='%234a0e78' opacity='.25' transform='rotate(-25 50 120)'/%3E%3C/svg%3E");
}
.deco-leaf.leaf-right {
  top: 0;
  right: -20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 140 300'%3E%3Cellipse cx='70' cy='150' rx='55' ry='140' fill='%236a1b9a' opacity='.25' transform='rotate(15 70 150)'/%3E%3Cellipse cx='90' cy='120' rx='35' ry='100' fill='%234a0e78' opacity='.2' transform='rotate(25 90 120)'/%3E%3C/svg%3E");
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  flex-shrink: 0;
  position: relative;
  z-index: 10;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: clamp(8px, 1.4vh, 16px) clamp(20px, 3vw, 40px);
  gap: 12px;
}

/* --- Logotipo --- */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-icon {
  height: clamp(216px, 24vh, 240px);
  width: auto;
  flex-shrink: 0;
}
.logo-icon img {
  height: 100%;
  width: auto;
  display: block;
}
.logo-texts {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-brand {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(1.6rem, 2.4vw, 2.6rem);
  font-weight: 700;
  background: linear-gradient(135deg, #3d1060 0%, #8e24aa 45%, #e91e8c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
}
.logo-tagline {
  font-size: clamp(0.5rem, 0.65vw, 0.62rem);
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.08em;
  margin-top: 2px;
}
.logo-heart {
  color: var(--pink);
  font-size: 0.9rem;
  margin-top: 3px;
}

/* --- Navegação --- */
.nav {
  display: flex;
  gap: clamp(16px, 2.2vw, 32px);
  align-items: center;
}
.nav-link {
  font-size: clamp(0.78rem, 0.9vw, 0.9rem);
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-link:hover {
  color: var(--pink);
}
.nav-link.active {
  color: var(--pink);
  font-weight: 600;
}
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 3px;
  border-radius: 2px;
  background: var(--pink);
}

/* --- Botão "Agende agora" --- */
.btn-agende {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #25D366;
  color: #fff;
  font-size: clamp(0.76rem, 0.9vw, 0.88rem);
  font-weight: 600;
  padding: clamp(7px, 1vh, 10px) clamp(14px, 1.5vw, 22px);
  border-radius: 50px;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.btn-agende:hover {
  background: #1ebe57;
  transform: translateX(-50%) translateY(-1px);
}
.btn-agende svg {
  width: 17px;
  height: 17px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  flex: 1;
  min-height: 0;
  z-index: 1;
  display: block;
  overflow: hidden;
  /* .hero-right usa position:absolute ancorado em .page */
}

/* --- Coluna esquerda (conteúdo) --- */
.hero-left {
  width: 42%;
  height: 100%;
  position: relative;
  z-index: 3; /* fica acima da imagem (z-index: 1) */
  padding: clamp(4px, 0.5vh, 8px) clamp(20px, 3vw, 36px) clamp(8px, 1.5vh, 16px) clamp(20px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: clamp(6px, 1vh, 12px);
  overflow-y: auto;
  scrollbar-width: none;
}
.hero-left::-webkit-scrollbar {
  display: none;
}

/* Título principal */
.hero-title {
  font-size: clamp(1.1rem, 1.6vw, 1.7rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}
.title-highlight {
  color: var(--pink);
}
.title-tiffany {
  color: #0ABAB5;
}
.title-heart {
  width: 20px;
  height: 20px;
  margin-left: 4px;
  flex-shrink: 0;
}

/* Subtítulo */
.hero-desc {
  font-size: clamp(0.75rem, 0.88vw, 0.9rem);
  color: var(--text-light);
  line-height: 1.55;
}

/* ============================================================
   GRADE DE SERVIÇOS
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(6px, 1vh, 12px);
  margin-bottom: clamp(8px, 1.2vh, 14px);
}

.service-card {
  background: transparent;
  border-radius: var(--radius-md);
  border: 1px solid rgba(142, 36, 170, 0.15);
  padding: clamp(8px, 1.2vh, 14px) clamp(8px, 1vw, 12px);
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow);
}

/* Ícone de cada serviço */
.svc-icon {
  width: clamp(36px, 4vw, 46px);
  height: clamp(36px, 4vw, 46px);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.svc-icon svg {
  width: clamp(22px, 2.64vw, 28.6px);
  height: clamp(22px, 2.64vw, 28.6px);
}

/* Cores dos ícones por tipo */
.svc-pink   { background: linear-gradient(135deg, #e91e8c, #f06292); }
.svc-teal   { background: linear-gradient(135deg, #00897b, #26a69a); }
.svc-purple { background: linear-gradient(135deg, #4a1259, #7b2d8b); }

/* Texto do card */
.svc-info {
  flex: 1;
  min-width: 0;
}
.svc-info h3 {
  font-size: clamp(0.66rem, 0.76vw, 0.78rem);
  font-weight: 700;
  color: var(--dark-purple);
  line-height: 1.25;
  margin-bottom: 2px;
}
.svc-info p {
  font-size: clamp(0.58rem, 0.68vw, 0.68rem);
  color: var(--text-light);
  line-height: 1.3;
}

/* Seta "›" */
.svc-arrow {
  font-size: 1.2rem;
  color: var(--pink);
  font-weight: 700;
  flex-shrink: 0;
}

/* ============================================================
   BADGES DE DIFERENCIAIS
   ============================================================ */
.badges-row {
  display: flex;
  gap: clamp(6px, 1vw, 14px);
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: clamp(16px, 2.5vh, 32px);
}
.badge-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: clamp(0.64rem, 0.72vw, 0.72rem);
  color: var(--text);
  font-weight: 500;
  line-height: 1.3;
}
.badge-icon {
  width: clamp(30px, 3.2vw, 38px);
  height: clamp(30px, 3.2vw, 38px);
  border-radius: 50%;
  border: 1.5px solid var(--pink-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(233, 30, 140, 0.06);
}
.badge-icon svg {
  width: clamp(16px, 1.8vw, 20px);
  height: clamp(16px, 1.8vw, 20px);
}

/* ============================================================
   COLUNA DIREITA — IMAGEM (cobre toda a altura da viewport)
   ============================================================ */
.hero-right {
  position: absolute; /* ancora em .page (position: relative) */
  top: 0;
  right: 0;
  width: 58%;
  height: 100vh; /* do topo ao rodapé, inclusive atrás do header */
  z-index: 1;    /* abaixo do header (z:10) e hero-left (z:3) */
  overflow: hidden;
}

/* Coração decorativo de fundo */
.bg-heart {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 0;
}
.bg-heart svg {
  width: 90%;
  height: 90%;
}

/* Foto principal */
.hero-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 90%;
  display: block;
}

/* Card Hydra Groomers (canto superior direito) */
.hydra-card {
  position: absolute;
  top: 120px;
  right: 120px;
  z-index: 5;
  background: transparent;
  display: flex;
  align-items: center;
}
.hydra-logo-icon {
  width: 72px;
  height: 72px;
}
.hydra-logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.hydra-name {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--dark-purple);
}
.hydra-sub {
  font-family: 'Dancing Script', cursive;
  font-size: 0.82rem;
  color: var(--pink);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  flex-shrink: 0;
  background: var(--footer-bg);
  padding: clamp(12px, 2vh, 20px) clamp(20px, 3vw, 40px);
  position: relative;
  z-index: 2;
}

/* Onda de transição acima do rodapé */
.footer-wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transform: translateY(-99%);
  line-height: 0;
  pointer-events: none;
}
.footer-wave svg {
  display: block;
  width: 100%;
  height: 60px;
  fill: var(--footer-bg);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* Bloco de contatos */
.footer-contacts {
  display: flex;
  gap: clamp(18px, 2.5vw, 36px);
  align-items: flex-start;
  flex-wrap: wrap;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s;
}
.contact-item:hover { opacity: 0.8; }

.contact-icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg {
  width: 22px;
  height: 22px;
}
.contact-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.contact-text span {
  font-size: clamp(0.7rem, 0.8vw, 0.8rem);
  line-height: 1.4;
}
.contact-text span:first-child {
  font-weight: 600;
}
.contact-text span:last-child {
  font-size: clamp(0.62rem, 0.72vw, 0.72rem);
  opacity: 0.8;
}

/* Card branco com slogan */
.slogan-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(13px, 1.76vh, 22px) clamp(18px, 2.24vw, 32px);
  display: flex;
  align-items: center;
  gap: 13px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
  flex: 0 0 auto;
}
.slogan-paw {
  width: clamp(42px, 4.8vw, 64px);
  height: clamp(42px, 4.8vw, 64px);
  flex-shrink: 0;
}
.slogan-paw svg {
  width: 100%;
  height: 100%;
}
.slogan-text {
  font-size: clamp(0.78rem, 0.9vw, 0.95rem);
  font-weight: 600;
  color: var(--dark-purple);
  line-height: 1.4;
  white-space: nowrap;
}
.slogan-text em {
  font-family: 'Dancing Script', cursive;
  font-style: normal;
  font-size: clamp(1rem, 1.2vw, 1.3rem);
  color: var(--pink);
}
.slogan-heart {
  width: 14px;
  height: 14px;
  vertical-align: middle;
  margin-left: 3px;
}

/* ============================================================
   RESPONSIVO — TABLET  (< 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .nav { gap: 14px; }
  .logo-tagline { display: none; }
}

/* ============================================================
   RESPONSIVO — MOBILE  (< 768px)
   ============================================================ */
@media (max-width: 768px) {
  html,
  body {
    height: auto;
    overflow: auto;
  }

  .page {
    height: auto;
    min-height: 100vh;
    overflow: visible;
  }

  .header {
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 12px 16px;
    gap: 8px;
  }

  .logo {
    margin-top: 44px;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    padding-bottom: 4px;
  }

  .btn-agende {
    padding: 8px 16px;
    font-size: 0.82rem;
  }

  .hero {
    min-height: auto;
  }

  /* Imagem passa a ser relativa e aparece acima do conteúdo */
  .hero-right {
    position: relative;
    width: 100%;
    height: 50vw;
    min-height: 220px;
    max-height: 340px;
    order: -1;
  }

  .hero-img {
    object-position: center 15%;
  }

  .hydra-card {
    top: 16px;
    right: 16px;
  }

  .hydra-logo-icon { width: 56px; height: 56px; }

  .hero-left {
    width: 100%;
    height: auto;
    padding: 18px 16px 16px;
    gap: 14px;
    justify-content: flex-start;
    overflow: visible;
  }

  .hero-title { font-size: 1.4rem; }
  .hero-desc  { font-size: 0.85rem; }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .svc-icon        { width: 42px; height: 42px; }
  .svc-info h3     { font-size: 0.78rem; }
  .svc-info p      { font-size: 0.68rem; }

  .badges-row { gap: 14px; }
  .badge-item { font-size: 0.72rem; }
  .badge-icon { width: 34px; height: 34px; }

  .footer { padding: 18px 16px; }
  .footer-wave svg { height: 40px; }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .footer-contacts {
    flex-direction: column;
    gap: 14px;
  }

  .slogan-card { align-self: stretch; white-space: normal; }
  .slogan-text { white-space: normal; }

  /* Oculta decorativos no mobile */
  .deco-leaf,
  .deco-star { display: none; }
}

/* ============================================================
   RESPONSIVO — TELAS MUITO PEQUENAS  (< 480px)
   ============================================================ */
@media (max-width: 480px) {
  .logo-brand { font-size: 1.8rem; }
  .logo-icon  { width: 208px; height: 232px; margin-top: 12px; }
  .hero-title { font-size: 1.2rem; }
  .nav        { gap: 10px; }
  .nav-link   { font-size: 0.78rem; }
}
