/* ============================================================
   EMANUELLE PET SITTER — CSS
   Mobile First | Modern | Minimal
   ============================================================ */

/* ---------- CSS VARIABLES ---------- */
:root {
  --white:       #FFFFFF;
  --cream:       #F6F4F1;
  --cream-dark:  #F0EBE0;
  --beige:       #E8DDD0;
  --gold:        #C9A96E;
  --gold-dark:   #A07840;
  --purple:      #6B3FA0;
  --purple-dark: #522E80;
  --purple-light:#F3EEF9;
  --green:       #7FBF7F;
  --green-dark:  #5A9E5A;
  --gray-50:     #F9F9F9;
  --gray-100:    #F2F2F2;
  --gray-300:    #CCCCCC;
  --gray-500:    #888888;
  --gray-700:    #555555;
  --gray-900:    #1A1A1A;
  --whatsapp:    #25D366;
  --whatsapp-d:  #1DA851;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Nunito', system-ui, sans-serif;

  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  22px;
  --radius-xl:  32px;
  --radius-full: 999px;

  --shadow-sm:  0 2px 8px rgba(0,0,0,.06);
  --shadow-md:  0 6px 24px rgba(0,0,0,.09);
  --shadow-lg:  0 16px 48px rgba(0,0,0,.12);
  --shadow-xl:  0 24px 72px rgba(0,0,0,.15);

  --nav-h: 72px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--gray-700);
  background: var(--white);
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }
blockquote { quotes: none; }
blockquote::before, blockquote::after { content: ''; }

/* ---------- UTILITY ---------- */
.container {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 5vw, 2.5rem);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple);
  background: var(--purple-light);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.25;
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 560px;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header .section-desc { margin-inline: auto; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border-radius: var(--radius-full);
  padding: 12px 24px;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
}

.btn--primary {
  background: var(--purple);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(107,63,160,.3);
}
.btn--primary:hover, .btn--primary:focus-visible {
  background: var(--purple-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(107,63,160,.4);
}

.btn--outline {
  background: transparent;
  color: var(--gray-700);
  border: 2px solid var(--beige);
}
.btn--outline:hover, .btn--outline:focus-visible {
  border-color: var(--purple);
  color: var(--purple);
  transform: translateY(-2px);
}

.btn--whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,.35);
}
.btn--whatsapp:hover, .btn--whatsapp:focus-visible {
  background: var(--whatsapp-d);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,.45);
}

.btn--lg  { padding: 14px 30px; font-size: 1rem; }
.btn--xl  { padding: 18px 40px; font-size: 1.1rem; }
.btn--full { width: 100%; }

/* ---------- FADE-IN ANIMATIONS ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--delay, 0s);
}
.fade-in--delay { transition-delay: 0.18s; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  border-bottom-color: var(--beige);
  box-shadow: var(--shadow-sm);
}

.navbar__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  height: 100%;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-mark {
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-900);
}

.logo-sub {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple);
}

.navbar__nav {
  margin-left: auto;
}

.navbar__list {
  display: none;
  gap: 0.25rem;
}

.navbar__link {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gray-700);
  padding: 8px 14px;
  border-radius: var(--radius-full);
  transition: all var(--transition);
}

.navbar__link:hover,
.navbar__link.active {
  color: var(--purple);
  background: var(--purple-light);
}

.navbar__cta {
  display: none;
  flex-shrink: 0;
}

.navbar__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.navbar__hamburger:hover { background: var(--cream); }

.hamburger__bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: all var(--transition);
}

.navbar__hamburger[aria-expanded="true"] .hamburger__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.navbar__hamburger[aria-expanded="true"] .hamburger__bar:nth-child(2) {
  opacity: 0; transform: scaleX(0);
}
.navbar__hamburger[aria-expanded="true"] .hamburger__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav open */
.navbar__nav.open {
  display: block;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--beige);
  box-shadow: var(--shadow-md);
  padding: 1rem;
}

.navbar__nav.open .navbar__list {
  display: flex;
  flex-direction: column;
}

.navbar__nav.open .navbar__link {
  display: block;
  padding: 12px 16px;
  font-size: 1rem;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--nav-h) + 3rem);
  padding-bottom: 4rem;
  overflow: hidden;
  background: var(--cream);
}

.hero__bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.5;
}

.shape--1 {
  width: 500px; height: 500px;
  top: -120px; right: -100px;
  background: radial-gradient(circle, var(--purple-light) 0%, transparent 70%);
}

.shape--2 {
  width: 300px; height: 300px;
  bottom: 10%; left: -80px;
  background: radial-gradient(circle, #E8F5E8 0%, transparent 70%);
}

.shape--3 {
  width: 200px; height: 200px;
  top: 40%; left: 30%;
  background: radial-gradient(circle, rgba(201,169,110,.15) 0%, transparent 70%);
}

.hero__inner {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: rgba(201,169,110,.15);
  border: 1px solid rgba(201,169,110,.3);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--gray-900);
  margin-bottom: 1.25rem;
}

.hero__title em {
  font-style: italic;
  color: var(--purple);
  position: relative;
}

.hero__title em::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--gold));
  border-radius: 2px;
  opacity: 0.4;
}

.hero__subtitle {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 480px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  max-width: 340px;
  margin-bottom: 2.5rem;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gray-900);
}

.stat span {
  font-size: 0.78rem;
  color: var(--gray-500);
}

.stat__divider {
  width: 1px;
  height: 36px;
  background: var(--beige);
}

.hero__visual {
  width: 100%;
  max-width: 380px;
}

.hero__image-wrap {
  position: relative;
}

.hero__image-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background: var(--white);
  aspect-ratio: 4/5;
}

.image-placeholder--hero {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--cream-dark), var(--cream));
  padding: 1rem;
}

.hero-illustration {
  width: 100%;
  height: 100%;
  max-height: 400px;
}

.hero__badge-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  box-shadow: var(--shadow-md);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gray-700);
  white-space: nowrap;
}

.hero__badge-float--tl {
  top: -16px; left: -12px;
}

.hero__badge-float--br {
  bottom: -16px; right: -12px;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
}

.hero__scroll-hint span {
  display: block;
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, var(--purple), transparent);
  border-radius: 2px;
  animation: scrollHint 2s ease-in-out infinite;
}

@keyframes scrollHint {
  0%, 100% { opacity: 0.3; transform: scaleY(0.7); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ============================================================
   SOBRE
   ============================================================ */
.sobre {
  padding: 6rem 0;
  background: var(--white);
}

.sobre__inner {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
}

.sobre__image-wrap {
  position: relative;
  width: 100%;
  max-width: 340px;
}

.sobre__image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(145deg, var(--cream-dark), var(--cream));
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  box-shadow: var(--shadow-lg);
}

.sobre-illustration {
  width: 100%; height: 100%;
}

.sobre__experience-badge {
  position: absolute;
  bottom: -20px; right: -16px;
  background: var(--purple);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.sobre__experience-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}

.sobre__experience-badge span {
  font-size: 0.72rem;
  font-weight: 600;
  opacity: 0.85;
  letter-spacing: 0.04em;
}

.sobre__text {
  color: var(--gray-500);
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.75;
}

.sobre__highlights {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--cream-dark);
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.highlight-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: var(--cream);
  border-radius: var(--radius-sm);
}

.highlight-item strong {
  display: block;
  font-weight: 700;
  color: var(--gray-900);
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.highlight-item span {
  font-size: 0.85rem;
  color: var(--gray-500);
}

/* ============================================================
   SERVIÇOS
   ============================================================ */
.servicos {
  padding: 6rem 0;
  background: var(--cream);
}

.servicos__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.servico-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid transparent;
  transition: all var(--transition);
  transition-delay: var(--delay, 0s);
  position: relative;
  overflow: hidden;
}

.servico-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.servico-card:hover {
  border-color: var(--purple-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.servico-card:hover::before {
  transform: scaleX(1);
}

.servico-card__icon {
  margin-bottom: 1.25rem;
}

.servico-card__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
}

.servico-card__desc {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.servico-card__link {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--purple);
  transition: gap var(--transition);
}

.servico-card__link:hover { letter-spacing: 0.02em; }

/* ============================================================
   GALERIA
   ============================================================ */
.galeria {
  padding: 6rem 0;
  background: var(--white);
}

.galeria__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
}

.galeria__item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.galeria__item--tall {
  grid-row: span 2;
}

.galeria__item--wide {
  grid-column: span 2;
}

.galeria__img {
  width: 100%;
  height: 100%;
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.45s ease;
}

.galeria__img--1 { background: linear-gradient(145deg, #F5E8D0, #ECD8B0); }
.galeria__img--2 { background: linear-gradient(145deg, #D8E8F0, #C0D8EC); }
.galeria__img--3 { background: linear-gradient(145deg, #DDD0C0, #CCC0A8); }
.galeria__img--4 { background: linear-gradient(145deg, #EDEDEA, #E0E0DC); }

.gallery-dog {
  width: 80%;
  height: auto;
}

.galeria__item:hover .galeria__img {
  transform: scale(1.06);
}

.galeria__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  background: linear-gradient(transparent 50%, rgba(0,0,0,.35));
  opacity: 0;
  transition: opacity var(--transition);
}

.galeria__overlay span {
  font-size: 0.82rem;
  font-weight: 700;
  color: white;
  background: rgba(0,0,0,.3);
  backdrop-filter: blur(4px);
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.galeria__item:hover .galeria__overlay { opacity: 1; }

/* ============================================================
   AVALIAÇÕES
   ============================================================ */
.avaliacoes {
  padding: 6rem 0;
  background: var(--cream);
}

.google-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-top: 0.5rem;
  font-size: 0.92rem;
  color: var(--gray-500);
}

.google-rating strong {
  color: var(--gray-900);
  font-size: 1rem;
}

.carousel {
  position: relative;
}

.carousel__track {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  overflow: hidden;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--cream-dark);
  transition: all var(--transition);
  display: none;
}

.review-card.active {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  animation: slideIn 0.4s ease;
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}

.review-card__header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.review-card__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--purple);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  flex-shrink: 0;
}

.review-card__name {
  display: block;
  font-size: 0.95rem;
  color: var(--gray-900);
}

.review-card__stars { font-size: 0.85rem; }

.review-card__google {
  margin-left: auto;
  flex-shrink: 0;
}

.review-card__text {
  font-size: 0.95rem;
  color: var(--gray-700);
  line-height: 1.7;
  font-style: italic;
}

.review-card__date {
  font-size: 0.78rem;
  color: var(--gray-300);
}

.carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.carousel__btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--beige);
  color: var(--gray-700);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.carousel__btn:hover {
  background: var(--purple);
  border-color: var(--purple);
  color: var(--white);
  transform: scale(1.08);
}

.carousel__dots {
  display: flex;
  gap: 8px;
}

.carousel__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--beige);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}

.carousel__dot.active {
  background: var(--purple);
  width: 24px;
  border-radius: 4px;
}

/* ============================================================
   CONTATO / FORMULÁRIO
   ============================================================ */
.contato {
  padding: 6rem 0;
  background: var(--white);
}

.contato__inner {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.contato__info p {
  color: var(--gray-500);
  margin-bottom: 1.5rem;
}

.contato__features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-700);
  background: var(--cream);
  padding: 8px 16px;
  border-radius: var(--radius-full);
}

.contato__whatsapp-direct p {
  font-size: 0.88rem;
  color: var(--gray-500);
  margin-bottom: 0.75rem;
}

/* Form */
.form-card {
  background: var(--cream);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.87rem;
  font-weight: 700;
  color: var(--gray-700);
  margin-bottom: 6px;
}

.form-label span { color: var(--purple); }

.form-input {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--gray-900);
  background: var(--white);
  border: 1.5px solid var(--beige);
  border-radius: var(--radius-md);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}

.form-input::placeholder { color: var(--gray-300); }

.form-input:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(107,63,160,.12);
}

.form-input.invalid {
  border-color: #E86B6B;
  box-shadow: 0 0 0 3px rgba(232,107,107,.12);
}

.form-select { cursor: pointer; }

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

.form-error {
  display: block;
  font-size: 0.78rem;
  color: #E86B6B;
  margin-top: 4px;
  min-height: 1em;
}

.form-success {
  text-align: center;
  padding: 2rem 1rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  margin-bottom: 1.5rem;
}

.form-success span {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 0.75rem;
}

.form-success strong {
  display: block;
  font-size: 1.1rem;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.form-success p {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin: 0;
}

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta-final {
  padding: 7rem 0;
  background: linear-gradient(135deg, #2D1A60 0%, var(--purple) 50%, #3D1F80 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-final__bg { position: absolute; inset: 0; pointer-events: none; }

.cta-paw {
  position: absolute;
  font-size: 4rem;
  opacity: 0.07;
  animation: floatPaw 6s ease-in-out infinite;
}

.cta-paw--1 { top: 10%; left: 5%; animation-delay: 0s; font-size: 5rem; }
.cta-paw--2 { top: 50%; right: 8%; animation-delay: 2s; font-size: 3.5rem; }
.cta-paw--3 { bottom: 15%; left: 40%; animation-delay: 4s; font-size: 4.5rem; }

@keyframes floatPaw {
  0%, 100% { transform: translateY(0) rotate(-10deg); }
  50% { transform: translateY(-20px) rotate(10deg); }
}

.cta-final__inner {
  position: relative;
  z-index: 1;
}

.cta-logo-badge {
  display: inline-flex;
  margin-bottom: 2rem;
}

.cta-final__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 1rem;
}

.cta-final__sub {
  font-size: 1rem;
  color: rgba(255,255,255,.75);
  max-width: 480px;
  margin: 0 auto 2.5rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--gray-900);
  color: var(--gray-300);
  padding: 4rem 0 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer__brand .navbar__logo {
  margin-bottom: 1rem;
}

.footer__brand .logo-name { color: var(--white); }
.footer__brand .logo-sub  { color: var(--gold); }

.footer__tagline {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin-bottom: 0.5rem;
}

.footer__city {
  font-size: 0.85rem;
  color: var(--gray-500);
}

.footer__heading {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 1rem;
}

.footer__list { display: flex; flex-direction: column; gap: 0.5rem; }

.footer__link {
  font-size: 0.9rem;
  color: var(--gray-300);
  transition: color var(--transition);
}

.footer__link:hover { color: var(--white); }

.footer__social {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: var(--radius-full);
  transition: all var(--transition);
  width: fit-content;
}

.social-link--wa {
  background: rgba(37,211,102,.12);
  color: #25D366;
}
.social-link--wa:hover {
  background: #25D366;
  color: white;
}

.social-link--ig {
  background: rgba(225,48,108,.12);
  color: #E1306C;
}
.social-link--ig:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: white;
}

.footer__bottom {
  padding: 1.25rem 0;
  text-align: center;
}

.footer__bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,.3);
}

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.5rem;
  z-index: 999;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.5);
  transition: all var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.12) rotate(-3deg);
  box-shadow: 0 10px 32px rgba(37,211,102,.6);
}

.whatsapp-float__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--whatsapp);
  animation: pulse 2.2s ease-out infinite;
}

@keyframes pulse {
  0%   { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.8); opacity: 0; }
}

/* ============================================================
   MEDIA QUERIES
   ============================================================ */

/* 480px */
@media (min-width: 480px) {
  .hero__actions {
    flex-direction: row;
    max-width: 100%;
  }

  .galeria__grid {
    gap: 1.25rem;
  }
}

/* 640px */
@media (min-width: 640px) {
  .servicos__grid {
    grid-template-columns: 1fr 1fr;
  }

  .carousel__track {
    grid-template-columns: 1fr 1fr;
  }

  .review-card.active {
    display: flex;
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }
}

/* 768px (Tablet) */
@media (min-width: 768px) {
  :root { --nav-h: 78px; }

  .navbar__hamburger { display: none; }
  .navbar__list { display: flex; }
  .navbar__cta { display: inline-flex; }

  .hero__inner {
    flex-direction: row;
    align-items: center;
    gap: 4rem;
  }

  .hero__content {
    flex: 1;
  }

  .hero__visual {
    flex: 0 0 320px;
    max-width: 320px;
  }

  .hero__actions {
    flex-direction: row;
  }

  .sobre__inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 4rem;
  }

  .sobre__visual {
    flex: 0 0 280px;
  }

  .sobre__content {
    flex: 1;
  }

  .contato__inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 4rem;
  }

  .contato__info {
    flex: 1;
  }

  .contato__form-wrap {
    flex: 1;
  }

  .footer__inner {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

/* 1024px (Desktop) */
@media (min-width: 1024px) {
  .hero__visual {
    flex: 0 0 420px;
    max-width: 420px;
  }

  .servicos__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .carousel__track {
    grid-template-columns: repeat(3, 1fr);
  }

  .sobre__visual {
    flex: 0 0 360px;
  }
}

/* 1440px */
@media (min-width: 1440px) {
  .hero__visual {
    flex: 0 0 480px;
    max-width: 480px;
  }
}

/* Focus visible for accessibility */
:focus-visible {
  outline: 3px solid var(--purple);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* Skip to content (accessibility) */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--purple);
  color: white;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  z-index: 9999;
  transition: top 0.2s;
}

.skip-link:focus { top: 1rem; }

/* Print */
@media print {
  .navbar, .whatsapp-float, .cta-final { display: none; }
  .fade-in { opacity: 1; transform: none; }
}

/* ============================================================
   IMAGENS REAIS — Emanuelle
   ============================================================ */

/* Hero — foto real */
.hero__image-card {
  overflow: hidden;
}

.hero__real-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: inherit;
  transition: transform 0.6s ease;
}

.hero__image-card:hover .hero__real-img {
  transform: scale(1.03);
}

/* Sobre — foto real */
.sobre__image {
  overflow: hidden;
}

.sobre__real-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: inherit;
  transition: transform 0.6s ease;
}

.sobre__image:hover .sobre__real-img {
  transform: scale(1.03);
}

/* ============================================================
   GALERIA — fotos reais (sem overlay/label)
   ============================================================ */
.galeria__real-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
  min-height: 200px;
}

.galeria__item--tall .galeria__real-img {
  object-position: center top;
  min-height: 420px;
}

.galeria__item--wide .galeria__real-img {
  min-height: 220px;
}

.galeria__item:hover .galeria__real-img {
  transform: scale(1.06);
}

/* ============================================================
   CARROSSEL — REDESIGN ESTILO GOOGLE REVIEWS
   ============================================================ */

/* Seção */
.avaliacoes {
  background: linear-gradient(180deg, #F6F4F1 0%, #FFFFFF 100%);
}

/* Header da seção */
.google-rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1.5px solid #E8E0F0;
  border-radius: 40px;
  padding: 8px 20px;
  margin-top: 0.75rem;
  box-shadow: 0 2px 10px rgba(107,63,160,.08);
}

.google-rating .stars { font-size: 1rem; letter-spacing: 1px; }
.google-rating strong { font-size: 1.05rem; color: #1A1A1A; }
.google-rating span   { font-size: 0.82rem; color: #888; }

/* Wrapper do carrossel */
.carousel {
  position: relative;
  padding-bottom: 1rem;
}

/* Track: flex para animação suave */
.carousel__track {
  display: flex;
  gap: 1.25rem;
  overflow: hidden;
  position: relative;
}

/* CARD */
.review-card {
  display: none;
  flex-direction: column;
  gap: 1rem;
  background: #FFFFFF;
  border-radius: 20px;
  padding: 1.75rem;
  border: 1.5px solid #EDE8F5;
  box-shadow: 0 4px 20px rgba(107,63,160,.06), 0 1px 4px rgba(0,0,0,.04);
  flex: 0 0 100%;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  right: 20px;
  font-family: Georgia, serif;
  font-size: 7rem;
  color: #6B3FA0;
  opacity: 0.06;
  line-height: 1;
  pointer-events: none;
}

.review-card.active {
  display: flex;
  animation: cardSlideIn 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes cardSlideIn {
  from { opacity: 0; transform: translateX(30px) scale(0.98); }
  to   { opacity: 1; transform: translateX(0) scale(1); }
}

.review-card:hover {
  box-shadow: 0 8px 32px rgba(107,63,160,.12), 0 2px 8px rgba(0,0,0,.06);
  transform: translateY(-3px);
}

/* Topo do card */
.review-card__top {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

/* Avatar */
.review-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
  letter-spacing: 0.03em;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
}

/* Meta info */
.review-card__meta {
  flex: 1;
  min-width: 0;
}

.review-card__name {
  display: block;
  font-size: 0.97rem;
  font-weight: 700;
  color: #1A1A1A;
  line-height: 1.3;
  margin-bottom: 2px;
}

.reviewer-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  color: #1A73E8;
  background: rgba(26,115,232,.08);
  border-radius: 20px;
  padding: 2px 10px;
  margin-bottom: 5px;
}

/* Estrelas + data na mesma linha */
.review-card__stars-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}

.stars-svg { flex-shrink: 0; }

.review-card__date {
  font-size: 0.76rem;
  color: #AAAAAA;
  font-style: normal;
}

/* Logo Google */
.review-card__google {
  flex-shrink: 0;
  margin-left: auto;
  opacity: 0.85;
}

/* Texto da review */
.review-card__text {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.75;
  font-style: normal;
  position: relative;
  flex: 1;
  quotes: none;
}

/* Footer do card */
.review-card__footer {
  padding-top: 0.75rem;
  border-top: 1px solid #F0EBF8;
  display: flex;
  align-items: center;
}

.review-helpful-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #888;
  cursor: pointer;
  padding: 5px 12px;
  border-radius: 20px;
  transition: all 0.2s;
}

.review-helpful-btn:hover {
  background: #F0EBF8;
  color: #6B3FA0;
}

/* CONTROLES do carrossel */
.carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.carousel__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid #EDE8F5;
  color: #6B3FA0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  box-shadow: 0 2px 10px rgba(107,63,160,.1);
}

.carousel__btn:hover {
  background: #6B3FA0;
  border-color: #6B3FA0;
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 4px 16px rgba(107,63,160,.3);
}

.carousel__dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #D8CFF0;
  border: none;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0;
}

.carousel__dot.active {
  background: #6B3FA0;
  width: 28px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(107,63,160,.3);
}

/* Cards visíveis em desktop: 2 colunas */
@media (min-width: 768px) {
  .carousel__track { gap: 1.5rem; }

  .review-card {
    flex: 0 0 calc(50% - 0.75rem);
  }

  .review-card.active + .review-card.active {
    animation-delay: 0.08s;
  }
}

@media (min-width: 1024px) {
  .review-card {
    flex: 0 0 calc(33.333% - 1rem);
  }
}
/* ============================================================
   LOGO REAL — PNG enquadrado e contido
   ============================================================ */

/* Reset: garantir que img não vaze do container */
.navbar__logo img,
.footer__logo img,
.cta-logo-badge img {
  display: block;
}

/* Logo na navbar */
.logo-img {
  width: 58px !important;
  height: 58px !important;
  min-width: 58px;
  min-height: 58px;
  max-width: 58px;
  max-height: 58px;
  object-fit: contain;
  border-radius: 50%;
  filter: drop-shadow(0 3px 10px rgba(107,63,160,.35)) brightness(1.05);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.navbar__logo:hover .logo-img {
  transform: rotate(-5deg) scale(1.08);
}

/* Logo no footer — ligeiramente menor */
.footer__logo .logo-img,
.footer__brand .logo-img {
  width: 50px !important;
  height: 50px !important;
  min-width: 50px;
  max-width: 50px;
}

/* Logo no CTA final — maior e destacado */
.cta-logo-badge .logo-img {
  width: 100px !important;
  height: 100px !important;
  min-width: 100px;
  max-width: 100px;
  border-radius: 50%;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,.3));
}

/* Garantir que logo-mark não quebre layout */
.logo-mark {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}