/* ==============================================
   CVET - Clínica Veterinária - Tema FOFO
   Paleta pastel quentinha, cantos arredondados
   ============================================== */

:root {
  --bg: #fff6ec;             /* creme suave */
  --bg-soft: #fff1e1;
  --surface: #ffffff;
  --border: #f3e2cf;

  --primary: #ff8a5c;        /* pêssego */
  --primary-2: #ff6f91;      /* rosa quente */
  --primary-dark: #e85a2c;
  --mint: #88e0c5;
  --pink: #ffb3c6;
  --yellow: #ffd770;
  --lilac: #c9b6f2;
  --blue: #9bd3ff;

  --text: #3a2418;
  --text-dim: #6b5447;
  --text-mute: #a18b7c;

  --grad-primary: linear-gradient(135deg, #ffb070 0%, #ff8a5c 50%, #ff6f91 100%);
  --grad-soft: linear-gradient(135deg, #fff1e1 0%, #ffe4d4 100%);

  --shadow-sm: 0 4px 14px rgba(255, 138, 92, 0.12);
  --shadow-md: 0 12px 32px rgba(255, 138, 92, 0.18);
  --shadow-lg: 0 20px 50px rgba(255, 138, 92, 0.22);
  --shadow-soft: 0 8px 24px rgba(58, 36, 24, 0.08);

  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --radius-xl: 40px;
  --radius-full: 999px;

  --container: 1200px;
  --header-h: 84px;

  --font-display: 'Fredoka', sans-serif;
  --font-body: 'Quicksand', sans-serif;
}

/* ===== RESET ===== */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; position: relative; z-index: 2; }
.section { padding: 110px 0; position: relative; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-soft); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 10px; }

::selection { background: var(--primary); color: #fff; }

/* ===== PAW PRINT PATTERN ===== */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: .07;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 140 140'><g fill='%23ff8a5c'><circle cx='30' cy='30' r='5'/><circle cx='44' cy='20' r='4.2'/><circle cx='58' cy='30' r='5'/><ellipse cx='44' cy='48' rx='10' ry='8'/><circle cx='95' cy='95' r='5'/><circle cx='109' cy='85' r='4.2'/><circle cx='123' cy='95' r='5'/><ellipse cx='109' cy='113' rx='10' ry='8'/></g></svg>");
  background-size: 230px 230px;
}

/* ===== BLOBS DECORATIVOS ===== */
.blob {
  position: fixed;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .45;
  z-index: 0;
  pointer-events: none;
  animation: blobFloat 18s ease-in-out infinite;
}
.blob-1 { width: 420px; height: 420px; background: #ffd1b3; top: -120px; left: -120px; }
.blob-2 { width: 360px; height: 360px; background: #ffd0e2; bottom: -100px; right: -80px; animation-delay: -6s; }
.blob-3 { width: 300px; height: 300px; background: #c7f0e0; top: 45%; left: 60%; animation-delay: -12s; opacity: .35; }
@keyframes blobFloat {
  0%,100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(40px, -30px) scale(1.08); }
  66% { transform: translate(-30px, 40px) scale(.95); }
}

/* ===== PRELOADER ===== */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .5s ease, visibility .5s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-content { text-align: center; }
.paw-loader {
  width: 90px; height: 90px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--grad-primary);
  display: grid; place-items: center;
  font-size: 38px;
  color: #fff;
  animation: pawBounce 1.2s ease-in-out infinite;
  box-shadow: var(--shadow-md);
}
.loader-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--text-dim);
}
@keyframes pawBounce {
  0%,100% { transform: translateY(0) rotate(-6deg); }
  50% { transform: translateY(-16px) rotate(6deg); }
}

/* ===== HEADER ===== */
.header {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 100;
  transition: all .35s ease;
}
.header.scrolled {
  background: rgba(255, 246, 236, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 6px 24px rgba(58, 36, 24, .06);
}
.nav {
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}

.logo { display: flex; align-items: center; gap: 12px; }
.logo-icon {
  width: 48px; height: 48px;
  border-radius: 16px;
  background: var(--grad-primary);
  display: grid; place-items: center;
  font-size: 22px; color: #fff;
  box-shadow: var(--shadow-sm);
  animation: iconWiggle 4s ease-in-out infinite;
}
@keyframes iconWiggle {
  0%,100% { transform: rotate(-6deg); }
  50% { transform: rotate(6deg); }
}
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 1px;
  color: var(--primary-dark);
}
.logo-sub { font-size: 10px; color: var(--text-mute); letter-spacing: 1.5px; text-transform: uppercase; margin-top: 4px; font-weight: 600; }

.nav-list {
  display: flex; gap: 4px;
  background: rgba(255, 255, 255, .7);
  padding: 6px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-soft);
}
.nav-link {
  padding: 10px 18px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dim);
  transition: all .3s ease;
}
.nav-link:hover { color: var(--primary-dark); background: var(--bg-soft); }
.nav-link.active { color: #fff; background: var(--grad-primary); box-shadow: var(--shadow-sm); }

.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 22px;
  border-radius: var(--radius-full);
  background: var(--grad-primary);
  color: #fff;
  font-weight: 700; font-size: 14px;
  box-shadow: var(--shadow-md);
  transition: all .3s ease;
}
.nav-cta:hover { transform: translateY(-3px) rotate(-2deg); box-shadow: var(--shadow-lg); }

.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  border-radius: 14px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-toggle span {
  width: 22px; height: 2.5px;
  background: var(--primary-dark);
  border-radius: 3px;
  transition: all .3s ease;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 992px) {
  .nav-list {
    position: fixed; top: var(--header-h); left: 16px; right: 16px;
    flex-direction: column; padding: 20px;
    background: rgba(255, 255, 255, .98);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transform: translateY(-20px); opacity: 0; pointer-events: none;
    transition: all .35s ease;
  }
  .nav-list.active { transform: translateY(0); opacity: 1; pointer-events: all; }
  .nav-toggle { display: flex; }
  .nav-cta span { display: none; }
  .nav-cta { padding: 13px 16px; }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: calc(var(--header-h) + 50px);
  padding-bottom: 80px;
  display: flex; align-items: center;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 50px;
  align-items: center;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 9px 18px;
  background: #fff;
  border-radius: var(--radius-full);
  font-size: 13px; color: var(--primary-dark);
  font-weight: 600;
  margin-bottom: 24px;
  box-shadow: var(--shadow-soft);
}
.pulse-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 0 var(--mint);
  animation: pulseDot 1.8s infinite;
}
@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(136, 224, 197, .7); }
  70% { box-shadow: 0 0 0 14px rgba(136, 224, 197, 0); }
  100% { box-shadow: 0 0 0 0 rgba(136, 224, 197, 0); }
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 5.5vw, 64px);
  line-height: 1.1;
  letter-spacing: -.5px;
  color: var(--text);
  margin-bottom: 22px;
}
.text-highlight {
  position: relative;
  color: var(--primary-dark);
  display: inline-block;
}
.text-highlight::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 4px;
  height: 10px;
  background: rgba(255, 138, 92, .25);
  border-radius: 8px;
  z-index: -1;
}
.text-highlight.pink { color: #e85077; }
.text-highlight.pink::after { background: rgba(255, 179, 198, .55); }

.hero-subtitle {
  font-size: 17px;
  color: var(--text-dim);
  max-width: 540px;
  margin-bottom: 32px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 28px;
  border-radius: var(--radius-full);
  font-weight: 700; font-size: 15px;
  font-family: var(--font-display);
  transition: all .3s cubic-bezier(.34, 1.56, .64, 1);
}
.btn-lg { padding: 18px 34px; font-size: 16px; }
.btn-primary {
  background: var(--grad-primary);
  color: #fff;
  box-shadow: var(--shadow-md);
}
.btn-primary:hover { transform: translateY(-4px) scale(1.03); box-shadow: var(--shadow-lg); }
.btn-ghost {
  background: #fff;
  color: var(--text);
  box-shadow: var(--shadow-soft);
}
.btn-ghost:hover { transform: translateY(-4px) scale(1.03); color: var(--primary-dark); }

.hero-stats { display: flex; gap: 36px; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; }
.stat-num, .stat-suffix {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3vw, 38px);
  color: var(--primary-dark);
  display: inline;
}
.stat-label { font-size: 13px; color: var(--text-mute); margin-top: 4px; font-weight: 500; }

/* HERO VISUAL */
.hero-visual {
  position: relative;
  height: 540px;
  display: grid; place-items: center;
}
.hero-circle {
  position: absolute;
  width: 460px; height: 460px;
  border-radius: 50%;
  background: var(--grad-primary);
  opacity: .15;
  animation: pulseSoft 5s ease-in-out infinite;
}
@keyframes pulseSoft {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}
.hero-pets {
  position: relative;
  width: 100%;
  max-width: 520px;
  z-index: 2;
  filter: drop-shadow(0 18px 30px rgba(255, 138, 92, .3));
  animation: petFloat 5s ease-in-out infinite;
}
@keyframes petFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.float-card {
  position: absolute;
  background: #fff;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; gap: 12px;
  font-size: 13px;
  box-shadow: var(--shadow-md);
  animation: cardFloat 5s ease-in-out infinite;
  z-index: 3;
}
.float-card .emoji { font-size: 26px; }
.float-card strong { display: block; font-size: 13px; color: var(--text); font-family: var(--font-display); }
.float-card small { color: var(--text-mute); font-size: 11px; }
.card-1 { top: 6%; left: -10px; animation-delay: 0s; }
.card-2 { top: 48%; right: -20px; animation-delay: -1.6s; }
.card-3 { bottom: 8%; left: 5%; animation-delay: -3.2s; }
@keyframes cardFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.paw-deco {
  position: absolute;
  color: var(--primary);
  opacity: .25;
  animation: pawSpin 8s ease-in-out infinite;
}
.paw-1 { top: 18%; right: 12%; font-size: 32px; animation-delay: 0s; }
.paw-2 { bottom: 22%; right: 5%; font-size: 24px; animation-delay: -2s; }
.paw-3 { top: 35%; left: 4%; font-size: 28px; animation-delay: -4s; }
@keyframes pawSpin {
  0%,100% { transform: rotate(-10deg) scale(1); }
  50% { transform: rotate(15deg) scale(1.15); }
}

/* SCROLL INDICATOR */
.scroll-indicator {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--text-mute);
  font-size: 11px; letter-spacing: 1px; text-transform: uppercase;
  font-weight: 600;
}
.mouse {
  width: 22px; height: 36px;
  border: 2px solid var(--text-mute);
  border-radius: 14px;
  position: relative;
}
.mouse span {
  position: absolute;
  top: 5px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 6px;
  border-radius: 2px;
  background: var(--primary);
  animation: scrollMouse 1.8s ease-in-out infinite;
}
@keyframes scrollMouse {
  0% { opacity: 1; transform: translate(-50%, 0); }
  100% { opacity: 0; transform: translate(-50%, 12px); }
}

@media (max-width: 992px) {
  .hero-container { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-actions, .hero-stats { justify-content: center; }
  .hero-visual { height: 440px; }
  .hero-circle { width: 360px; height: 360px; }
}

/* ===== SECTION HEADER ===== */
.section-header { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.section-tag {
  display: inline-block;
  padding: 7px 18px;
  background: #fff;
  color: var(--primary-dark);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
  box-shadow: var(--shadow-soft);
}
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.15;
  letter-spacing: -.5px;
  margin-bottom: 16px;
}
.section-text { color: var(--text-dim); font-size: 17px; }

/* ===== SOBRE ===== */
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.sobre-visual { position: relative; }
.cute-card {
  position: relative;
  padding: 30px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #fff1e1 0%, #ffe1ec 100%);
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.cute-pets {
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  filter: drop-shadow(0 12px 20px rgba(255, 138, 92, .2));
}
.floating-badge {
  position: absolute;
  bottom: 20px; left: -20px;
  background: #fff;
  padding: 12px 18px;
  border-radius: var(--radius-full);
  display: flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow-md);
  font-size: 14px; font-weight: 600;
  color: var(--text);
  animation: cardFloat 4s ease-in-out infinite;
}
.floating-badge .emoji { font-size: 22px; }
.floating-heart {
  position: absolute;
  font-size: 28px;
  animation: heartFloat 4s ease-in-out infinite;
}
.heart-1 { top: 15px; right: 25px; animation-delay: 0s; }
.heart-2 { bottom: 80px; right: -10px; animation-delay: -1.5s; font-size: 22px; }
.heart-3 { top: 50%; left: -5px; animation-delay: -3s; font-size: 24px; }
@keyframes heartFloat {
  0%,100% { transform: translateY(0) rotate(-10deg); }
  50% { transform: translateY(-12px) rotate(10deg); }
}

.check-list { margin: 26px 0 32px; display: flex; flex-direction: column; gap: 12px; }
.check-list li { display: flex; align-items: center; gap: 12px; color: var(--text-dim); font-weight: 500; }
.check {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--mint);
  color: #fff;
  display: grid; place-items: center;
  font-weight: 800;
  font-size: 14px;
  flex: none;
}

@media (max-width: 992px) {
  .sobre-grid { grid-template-columns: 1fr; gap: 50px; }
}

/* ===== SERVIÇOS ===== */
.servicos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.servico-card {
  position: relative;
  padding: 36px 28px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  transition: all .35s cubic-bezier(.34, 1.56, .64, 1);
  overflow: hidden;
}
.servico-card:hover {
  transform: translateY(-10px) rotate(-1deg);
  box-shadow: var(--shadow-lg);
}
.servico-card::before {
  content: "🐾";
  position: absolute;
  top: -10px; right: -10px;
  font-size: 80px;
  opacity: .08;
  transition: transform .4s ease;
}
.servico-card:hover::before { transform: rotate(20deg) scale(1.1); }
.servico-icon {
  width: 64px; height: 64px;
  border-radius: 20px;
  display: grid; place-items: center;
  font-size: 26px; color: #fff;
  margin-bottom: 20px;
  transition: transform .4s ease;
}
.servico-card:hover .servico-icon { transform: rotate(-8deg) scale(1.1); }
.servico-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
  font-weight: 600;
  font-family: var(--font-display);
  color: var(--text);
}
.servico-card p { color: var(--text-dim); font-size: 15px; }

.color-peach  .servico-icon { background: linear-gradient(135deg, #ffb070, #ff8a5c); }
.color-mint   .servico-icon { background: linear-gradient(135deg, #a8ecd6, #6dd5b3); }
.color-pink   .servico-icon { background: linear-gradient(135deg, #ffc6d6, #ff97b3); }
.color-yellow .servico-icon { background: linear-gradient(135deg, #ffe09a, #ffc857); }
.color-lilac  .servico-icon { background: linear-gradient(135deg, #ddd0fa, #b69ef0); }
.color-blue   .servico-icon { background: linear-gradient(135deg, #b7e0ff, #82c4f7); }

@media (max-width: 900px) { .servicos-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .servicos-grid { grid-template-columns: 1fr; } }

/* ===== DIFERENCIAIS ===== */
.diferenciais { background: var(--grad-soft); border-radius: var(--radius-xl); margin: 0 24px; }
.dif-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.dif-card {
  padding: 32px 24px;
  background: #fff;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: all .35s cubic-bezier(.34, 1.56, .64, 1);
}
.dif-card:hover { transform: translateY(-8px) scale(1.02); box-shadow: var(--shadow-md); }
.dif-emoji {
  font-size: 52px;
  margin-bottom: 14px;
  display: inline-block;
  animation: emojiBounce 3s ease-in-out infinite;
}
.dif-card:nth-child(2) .dif-emoji { animation-delay: -.5s; }
.dif-card:nth-child(3) .dif-emoji { animation-delay: -1s; }
.dif-card:nth-child(4) .dif-emoji { animation-delay: -1.5s; }
@keyframes emojiBounce {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.dif-card h3 { font-size: 18px; margin-bottom: 10px; font-family: var(--font-display); }
.dif-card p { color: var(--text-dim); font-size: 14px; }

@media (max-width: 900px) { .dif-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .dif-grid { grid-template-columns: 1fr; } }

/* ===== DEPOIMENTOS ===== */
.dep-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.dep-card {
  padding: 32px 28px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease;
}
.dep-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.quote-icon {
  font-family: var(--font-display);
  font-size: 64px;
  color: var(--primary);
  opacity: .35;
  line-height: .5;
  margin-bottom: 8px;
}
.dep-card p { color: var(--text-dim); margin-bottom: 22px; font-size: 15px; }
.dep-author { display: flex; align-items: center; gap: 14px; }
.avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 700; color: #fff;
  font-size: 14px;
  font-family: var(--font-display);
}
.avatar.peach { background: linear-gradient(135deg, #ffb070, #ff8a5c); }
.avatar.mint  { background: linear-gradient(135deg, #a8ecd6, #6dd5b3); }
.avatar.pink  { background: linear-gradient(135deg, #ffc6d6, #ff97b3); }
.dep-author small { color: var(--text-mute); font-size: 13px; display: block; }
.dep-author strong { display: block; font-size: 15px; color: var(--text); }

@media (max-width: 900px) { .dep-grid { grid-template-columns: 1fr; } }

/* ===== CTA ===== */
.cta-section { padding: 80px 0; }
.cta-inner {
  position: relative;
  padding: 70px 40px;
  background: var(--grad-primary);
  border-radius: var(--radius-xl);
  text-align: center;
  color: #fff;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.cta-inner::before {
  content: "🐾";
  position: absolute;
  top: -30px; left: -20px;
  font-size: 180px;
  opacity: .1;
}
.cta-inner::after {
  content: "🐾";
  position: absolute;
  bottom: -50px; right: -10px;
  font-size: 200px;
  opacity: .1;
  transform: rotate(-20deg);
}
.cta-emoji {
  font-size: 54px;
  display: inline-block;
  margin-bottom: 14px;
  animation: emojiBounce 2s ease-in-out infinite;
}
.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 38px);
  margin-bottom: 14px;
}
.cta-inner p { margin-bottom: 30px; font-size: 17px; opacity: .95; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-inner .btn-primary { background: #fff; color: var(--primary-dark); }
.cta-inner .btn-ghost { background: rgba(255,255,255,.18); color: #fff; backdrop-filter: blur(6px); }

/* ===== CONTATO ===== */
.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
}
.contato-info { display: flex; flex-direction: column; gap: 16px; }
.info-card {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 22px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  transition: all .3s ease;
}
.info-card:hover { transform: translateX(6px); box-shadow: var(--shadow-md); }
.info-icon {
  flex: none;
  width: 52px; height: 52px;
  border-radius: 16px;
  display: grid; place-items: center;
  font-size: 20px; color: #fff;
}
.info-icon.peach  { background: linear-gradient(135deg, #ffb070, #ff8a5c); }
.info-icon.mint   { background: linear-gradient(135deg, #a8ecd6, #6dd5b3); }
.info-icon.pink   { background: linear-gradient(135deg, #ffc6d6, #ff97b3); }
.info-icon.yellow { background: linear-gradient(135deg, #ffe09a, #ffc857); }
.info-card h4 { font-size: 15px; margin-bottom: 4px; font-family: var(--font-display); }
.info-card p, .info-card a { color: var(--text-dim); font-size: 14px; line-height: 1.55; }
.info-card a:hover { color: var(--primary-dark); }

.socials { display: flex; gap: 12px; margin-top: 8px; }
.socials a {
  width: 46px; height: 46px;
  border-radius: 14px;
  background: #fff;
  display: grid; place-items: center;
  color: var(--primary-dark);
  transition: all .3s ease;
  font-size: 17px;
  box-shadow: var(--shadow-soft);
}
.socials a:hover { background: var(--grad-primary); color: #fff; transform: translateY(-4px) rotate(-6deg); }

.contato-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 480px;
  box-shadow: var(--shadow-md);
  background: #fff;
  padding: 8px;
}
.contato-map iframe { border-radius: calc(var(--radius-lg) - 8px); height: 100%; }

@media (max-width: 900px) {
  .contato-grid { grid-template-columns: 1fr; }
  .contato-map { min-height: 360px; }
}

/* ===== FOOTER ===== */
.footer {
  background: #fff7ee;
  padding-top: 80px;
  margin-top: 60px;
  border-top-left-radius: var(--radius-xl);
  border-top-right-radius: var(--radius-xl);
  position: relative;
  z-index: 2;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
  gap: 40px;
  padding-bottom: 50px;
}
.footer-col h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 600;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li, .footer-col a, .footer-col p { color: var(--text-dim); font-size: 14px; }
.footer-col a:hover { color: var(--primary-dark); }
.footer-col i { margin-right: 8px; color: var(--primary); width: 16px; }
.footer-col p { margin-top: 14px; max-width: 320px; }

.footer-bottom {
  padding: 22px 0;
  border-top: 1px dashed var(--border);
  text-align: center;
  color: var(--text-mute);
  font-size: 13px;
}

@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  display: grid; place-items: center;
  color: #fff; font-size: 30px;
  box-shadow: 0 10px 24px rgba(37, 211, 102, .4);
  z-index: 99;
  transition: transform .3s ease;
}
.whatsapp-float:hover { transform: scale(1.12) rotate(-8deg); }
.wa-pulse {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: waPulse 1.8s ease-out infinite;
}
@keyframes waPulse {
  0% { transform: scale(1); opacity: .8; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 28px; left: 28px;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--grad-primary);
  color: #fff; font-size: 16px;
  display: grid; place-items: center;
  box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden;
  transform: translateY(12px);
  transition: all .35s ease;
  z-index: 99;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-4px); }

@media (max-width: 600px) {
  .whatsapp-float { width: 56px; height: 56px; font-size: 26px; bottom: 20px; right: 20px; }
  .back-to-top { width: 44px; height: 44px; bottom: 20px; left: 20px; }
  .section { padding: 80px 0; }
  .diferenciais { margin: 0; border-radius: 0; }
}

[data-aos] { pointer-events: none; }
[data-aos].aos-animate { pointer-events: auto; }
