/* ============================================================
   COLORIR — Espaço Terapêutico | assets/css/style.css
   ============================================================ */

:root {
  --verde:   #4da796;
  --lilas:   #bb7cb3;
  --amarelo: #f1d34a;
  --rosa:    #ed6a77;
  --laranja: #f29a37;
  --azul:    #8499ca;
  --branco:  #ffffff;
  --texto:   #3a3a5c;
  --fundo:   #fdfaf6;
}

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', sans-serif;
  background: var(--fundo);
  color: var(--texto);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 5%; }
section { padding: 80px 5%; }
.mt-1 { margin-top: 1rem; }

/* ── Typography helpers ───────────────────────────────────── */
.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  margin-bottom: 0.8rem;
}
.label-verde   { background: rgba(77,167,150,0.12);  color: var(--verde); }
.label-rosa    { background: rgba(237,106,119,0.12); color: var(--rosa); }
.label-azul    { background: rgba(132,153,202,0.12); color: var(--azul); }
.label-lilas   { background: rgba(187,124,179,0.12); color: var(--lilas); }
.label-laranja { background: rgba(242,154,55,0.12);  color: var(--laranja); }

.section-title {
  font-family: 'Baloo 2', cursive;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1.05rem;
  color: #6a6a8a;
  max-width: 540px;
  line-height: 1.7;
}

.color-rosa    { color: var(--rosa); }
.color-azul    { color: var(--azul); }
.color-verde   { color: var(--verde); }
.color-laranja { color: var(--laranja); }
.color-lilas   { color: var(--lilas); }

/* ── Buttons ──────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--rosa), var(--laranja));
  color: white;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1rem;
  box-shadow: 0 6px 20px rgba(237,106,119,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(237,106,119,0.5); color: white; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  color: var(--azul);
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1rem;
  border: 2.5px solid var(--azul);
  transition: transform 0.2s, background 0.2s, color 0.2s;
}
.btn-secondary:hover { transform: translateY(-3px); background: var(--azul); color: white; }

/* ── Scroll Reveal ────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════════════════ */
.colorir-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(253,250,246,0.93);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 3px solid transparent;
  border-image: linear-gradient(90deg, var(--verde), var(--azul), var(--lilas), var(--rosa), var(--laranja), var(--amarelo)) 1;
  transition: box-shadow 0.3s;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img,
.nav-logo .custom-logo { height: 52px; width: auto; }
.nav-logo a { display: flex; align-items: center; }

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

.nav-links li a {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--texto);
  position: relative;
  transition: color 0.2s;
}
.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--rosa), var(--laranja));
  transition: width 0.3s;
}
.nav-links li a:hover { color: var(--rosa); }
.nav-links li a:hover::after { width: 100%; }

.nav-links li a.nav-cta {
  background: linear-gradient(135deg, var(--rosa), var(--laranja));
  color: white !important;
  padding: 0.5rem 1.4rem;
  border-radius: 50px;
  font-weight: 800;
  box-shadow: 0 4px 14px rgba(237,106,119,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.nav-links li a.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(237,106,119,0.5);
}
.nav-links li a.nav-cta::after { display: none; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 3px;
  background: var(--texto);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ══════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  padding: 110px 5% 70px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 10% 20%, rgba(77,167,150,0.18) 0%, transparent 50%),
    radial-gradient(ellipse at 90% 80%, rgba(132,153,202,0.18) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(241,211,74,0.10) 0%, transparent 60%);
  pointer-events: none;
}

.bubble {
  position: absolute;
  border-radius: 50%;
  opacity: 0.14;
  animation: float 6s ease-in-out infinite;
}
.bubble:nth-child(1) { width:180px;height:180px;background:var(--verde); top:8%;  left:2%;   animation-delay:0s; }
.bubble:nth-child(2) { width:120px;height:120px;background:var(--rosa);  top:15%; right:8%;  animation-delay:1s; }
.bubble:nth-child(3) { width:90px; height:90px; background:var(--amarelo);bottom:20%;left:15%;animation-delay:2s; }
.bubble:nth-child(4) { width:150px;height:150px;background:var(--lilas); bottom:10%;right:5%;animation-delay:0.5s; }
.bubble:nth-child(5) { width:70px; height:70px; background:var(--laranja);top:50%;left:50%; animation-delay:3s; }

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

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 580px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(77,167,150,0.12);
  border: 2px solid var(--verde);
  color: var(--verde);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.6s ease both;
}

.hero-title {
  font-family: 'Baloo 2', cursive;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.2rem;
  animation: fadeUp 0.7s 0.1s ease both;
}

.rainbow-text {
  background: linear-gradient(135deg, var(--rosa), var(--laranja), var(--amarelo), var(--verde), var(--azul), var(--lilas));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #5a5a7a;
  margin-bottom: 2rem;
  animation: fadeUp 0.7s 0.2s ease both;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 0.7s 0.3s ease both;
}

.stats-bar {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  background: white;
  border-radius: 20px;
  padding: 1.4rem 2rem;
  box-shadow: 0 8px 40px rgba(0,0,0,0.07);
  margin-top: 2.5rem;
  animation: fadeUp 0.7s 0.4s ease both;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Baloo 2', cursive;
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--rosa), var(--laranja));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label { font-size: 0.78rem; font-weight: 700; color: #888; text-transform: uppercase; letter-spacing: 0.05em; }

.hero-image {
  position: absolute;
  right: 2%; bottom: 0;
  width: 44%; max-width: 540px;
  z-index: 2;
  animation: heroImgIn 0.9s 0.2s ease both;
}

@keyframes heroImgIn {
  from { opacity:0; transform: translateX(40px) scale(0.95); }
  to   { opacity:1; transform: translateX(0) scale(1); }
}
@keyframes fadeUp {
  from { opacity:0; transform: translateY(24px); }
  to   { opacity:1; transform: translateY(0); }
}

/* ══════════════════════════════════════════════════════════
   SOBRE
══════════════════════════════════════════════════════════ */
.section-sobre { background: white; }

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.sobre-card-bg {
  background: linear-gradient(135deg, rgba(77,167,150,0.10), rgba(132,153,202,0.10));
  border-radius: 32px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}
.sobre-card-bg::before {
  content: '🌈';
  font-size: 7rem;
  position: absolute;
  top: -20px; right: -20px;
  opacity: 0.12;
  pointer-events: none;
}
.sobre-card-title {
  font-family: 'Baloo 2', cursive;
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.8rem;
}
.sobre-card-text { color: #6a6a8a; line-height: 1.7; font-size: 0.95rem; }
.sobre-quote {
  margin-top: 1.5rem;
  padding: 1rem 1.2rem;
  background: white;
  border-radius: 14px;
  border-left: 4px solid var(--amarelo);
}
.sobre-quote p { font-style: italic; color: #888; font-size: 0.88rem; }

.sobre-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.5rem;
}
.pill {
  padding: 0.45rem 1rem;
  border-radius: 50px;
  font-size: 0.83rem;
  font-weight: 700;
  color: white;
}
.pill-verde   { background: var(--verde); }
.pill-lilas   { background: var(--lilas); }
.pill-rosa    { background: var(--rosa); }
.pill-azul    { background: var(--azul); }
.pill-laranja { background: var(--laranja); }

/* ══════════════════════════════════════════════════════════
   ESPECIALIDADES
══════════════════════════════════════════════════════════ */
.section-especialidades { background: var(--fundo); }
.espec-header { margin-bottom: 3rem; }

.espec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.2rem;
}

.espec-card {
  background: white;
  border-radius: 20px;
  padding: 1.6rem 1.2rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}
.espec-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  border-radius: 20px 20px 0 0;
}
.espec-card:hover { transform: translateY(-6px); box-shadow: 0 12px 36px rgba(0,0,0,0.10); }

.c1::before { background: var(--verde); }
.c2::before { background: var(--lilas); }
.c3::before { background: var(--amarelo); }
.c4::before { background: var(--rosa); }
.c5::before { background: var(--laranja); }
.c6::before { background: var(--azul); }
.c7::before { background: var(--verde); }
.c8::before { background: var(--lilas); }
.c9::before { background: var(--amarelo); }

.espec-icon { font-size: 2.2rem; margin-bottom: 0.7rem; }
.espec-name { font-family: 'Baloo 2', cursive; font-weight: 700; font-size: 1rem; margin-bottom: 0.3rem; }
.espec-desc { font-size: 0.8rem; color: #888; line-height: 1.5; }

/* ══════════════════════════════════════════════════════════
   ABORDAGENS
══════════════════════════════════════════════════════════ */
.section-abordagens { background: white; }
.abord-header { margin-bottom: 3rem; }

.abord-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.abord-card {
  border-radius: 24px;
  padding: 2rem;
  transition: transform 0.25s;
}
.abord-card:hover { transform: translateY(-5px); }

.ac1 { background: linear-gradient(135deg,rgba(77,167,150,0.10),rgba(77,167,150,0.04));  border: 2px solid rgba(77,167,150,0.22); }
.ac2 { background: linear-gradient(135deg,rgba(187,124,179,0.10),rgba(187,124,179,0.04));border: 2px solid rgba(187,124,179,0.22); }
.ac3 { background: linear-gradient(135deg,rgba(241,211,74,0.14),rgba(241,211,74,0.04));  border: 2px solid rgba(241,211,74,0.28); }
.ac4 { background: linear-gradient(135deg,rgba(237,106,119,0.10),rgba(237,106,119,0.04));border: 2px solid rgba(237,106,119,0.22); }
.ac5 { background: linear-gradient(135deg,rgba(242,154,55,0.10),rgba(242,154,55,0.04));  border: 2px solid rgba(242,154,55,0.22); }
.ac6 { background: linear-gradient(135deg,rgba(132,153,202,0.10),rgba(132,153,202,0.04));border: 2px solid rgba(132,153,202,0.22); }

.abord-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.8rem;
  border-radius: 50px;
  margin-bottom: 0.8rem;
}
.ac1 .abord-tag { background: rgba(77,167,150,0.18);  color: var(--verde); }
.ac2 .abord-tag { background: rgba(187,124,179,0.18); color: var(--lilas); }
.ac3 .abord-tag { background: rgba(241,211,74,0.3);   color: #9a7000; }
.ac4 .abord-tag { background: rgba(237,106,119,0.18); color: var(--rosa); }
.ac5 .abord-tag { background: rgba(242,154,55,0.18);  color: var(--laranja); }
.ac6 .abord-tag { background: rgba(132,153,202,0.18); color: var(--azul); }

.abord-title { font-family: 'Baloo 2', cursive; font-weight: 800; font-size: 1.25rem; margin-bottom: 0.5rem; }
.abord-desc  { font-size: 0.9rem; color: #6a6a8a; line-height: 1.6; }

/* ══════════════════════════════════════════════════════════
   PÚBLICO
══════════════════════════════════════════════════════════ */
.section-publico {
  background: linear-gradient(135deg, #fdfaf6 0%, #f0f8ff 100%);
}
.publico-header { margin-bottom: 3rem; }

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

.pub-card {
  background: white;
  border-radius: 28px;
  padding: 2.5rem 2rem;
  box-shadow: 0 6px 28px rgba(0,0,0,0.06);
  transition: transform 0.25s;
  text-align: center;
}
.pub-card:hover { transform: translateY(-6px); }
.pub-emoji { font-size: 3.5rem; margin-bottom: 1rem; }
.pub-title { font-family: 'Baloo 2', cursive; font-weight: 800; font-size: 1.15rem; margin-bottom: 0.6rem; }
.pub-desc  { font-size: 0.9rem; color: #7a7a9a; line-height: 1.65; }

/* ══════════════════════════════════════════════════════════
   CONTATO
══════════════════════════════════════════════════════════ */
.section-contato { background: white; }

.contato-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.contato-items { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }

.contato-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  background: var(--fundo);
  border-radius: 16px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.contato-item:hover { transform: translateX(4px); box-shadow: 0 4px 16px rgba(0,0,0,0.07); }

.contato-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.icon-verde  { background: rgba(37,211,102,0.12); }
.icon-rosa   { background: rgba(237,106,119,0.12); }
.icon-azul   { background: rgba(132,153,202,0.12); }
.icon-verde2 { background: rgba(77,167,150,0.12); }

.ci-label { font-weight: 800; font-size: 0.95rem; }
.ci-value { font-size: 0.82rem; color: #888; }

/* Form */
.contato-form {
  background: var(--fundo);
  border-radius: 28px;
  padding: 2.5rem;
}
.form-title { font-family: 'Baloo 2', cursive; font-size: 1.4rem; font-weight: 800; margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-weight: 700; font-size: 0.88rem; margin-bottom: 0.4rem; color: #5a5a7a; }

.form-group input,
.form-group select,
.form-group textarea,
.colorir-form input,
.colorir-form select,
.colorir-form textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 2.5px solid #e8e0f0;
  border-radius: 14px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  color: var(--texto);
  background: white;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
.colorir-form input:focus,
.colorir-form select:focus,
.colorir-form textarea:focus {
  border-color: var(--rosa);
  box-shadow: 0 0 0 3px rgba(237,106,119,0.15);
}
.form-group textarea,
.colorir-form textarea { height: 100px; resize: vertical; }

.btn-form {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, var(--rosa), var(--laranja));
  color: white;
  border: none;
  border-radius: 14px;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(237,106,119,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-form:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(237,106,119,0.5); }

/* Contact Form 7 override */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 select,
.wpcf7 textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 2.5px solid #e8e0f0;
  border-radius: 14px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  color: var(--texto);
  background: white;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  margin-bottom: 1rem;
}
.wpcf7 input[type="submit"] {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, var(--rosa), var(--laranja));
  color: white;
  border: none;
  border-radius: 14px;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(237,106,119,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.wpcf7 input[type="submit"]:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(237,106,119,0.5); }

/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
.colorir-footer {
  background: var(--texto);
  color: white;
  padding: 3rem 5% 2rem;
  text-align: center;
}
.footer-inner { max-width: 900px; margin: 0 auto; }

.footer-logo img,
.footer-logo .custom-logo {
  height: 56px; width: auto;
  margin: 0 auto 1rem;
  filter: brightness(0) invert(1);
}
.footer-tagline { color: rgba(255,255,255,0.6); font-size: 0.9rem; }

.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  justify-content: center;
  list-style: none;
  margin: 1rem 0;
}
.footer-menu a { color: rgba(255,255,255,0.55); font-size: 0.88rem; transition: color 0.2s; }
.footer-menu a:hover { color: white; }

.footer-rainbow {
  height: 5px;
  background: linear-gradient(90deg, var(--verde), var(--azul), var(--lilas), var(--rosa), var(--laranja), var(--amarelo), var(--verde));
  border-radius: 3px;
  margin: 1.5rem 0;
}
.footer-copy p { font-size: 0.82rem; color: rgba(255,255,255,0.4); }

/* ── WhatsApp Float ───────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 9999;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
  transition: transform 0.2s;
  animation: pulse 2.5s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); }

@keyframes pulse {
  0%,100% { box-shadow: 0 6px 24px rgba(37,211,102,0.5); }
  50%      { box-shadow: 0 6px 40px rgba(37,211,102,0.8); }
}

/* ── Inner pages ──────────────────────────────────────────── */
.page-title, .single-title { margin-bottom: 1.5rem; }
.entry-content { line-height: 1.8; font-size: 1rem; }
.entry-content p { margin-bottom: 1rem; }
.entry-content h2, .entry-content h3 { font-family: 'Baloo 2', cursive; font-weight: 800; margin: 1.5rem 0 0.5rem; }
.single-meta { font-size: 0.85rem; color: #999; margin-bottom: 0.5rem; }
.single-thumb { border-radius: 16px; overflow: hidden; margin-bottom: 2rem; }
.single-thumb img { width: 100%; }
.single-nav { display: flex; justify-content: space-between; margin-top: 3rem; }
.prev-post a, .next-post a { font-weight: 700; color: var(--azul); transition: color 0.2s; }
.prev-post a:hover, .next-post a:hover { color: var(--rosa); }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */
@media (max-width: 980px) {
  .hero-image { display: none; }
  .sobre-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contato-container { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  .nav-links-wrap {
    display: none;
    position: absolute;
    top: 74px; left: 0; right: 0;
    background: rgba(253,250,246,0.97);
    padding: 1.5rem 5%;
    border-bottom: 3px solid transparent;
    border-image: linear-gradient(90deg, var(--verde), var(--rosa), var(--azul)) 1;
  }
  .nav-links-wrap.open { display: block; }
  .nav-links { flex-direction: column; gap: 1rem; }
  .nav-toggle { display: flex; }
  section { padding: 60px 5%; }
  .stats-bar { gap: 1.2rem; }
  .espec-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .espec-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; }
  .btn-primary, .btn-secondary { justify-content: center; }
}
