/* ============================================================
   CLÍNICA VITEA – KIDS THEME
   Colors from logo:
   --orange:  #F47920
   --green:   #8DC63F
   --dkgreen: #3D5C2A
   --blue:    #29A9E0
   --teal:    #007B8A
   --red:     #ED1C24
   --purple:  #A0517A
   --brown:   #6D4B32
   --gray:    #58595B
   ============================================================ */

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

:root {
  --orange:  #F47920;
  --green:   #8DC63F;
  --dkgreen: #3D5C2A;
  --blue:    #29A9E0;
  --teal:    #007B8A;
  --red:     #ED1C24;
  --purple:  #A0517A;
  --brown:   #6D4B32;
  --gray:    #58595B;
  --dark:    #2a2a3e;
  --light:   #fff;
  --font-main: 'Nunito', sans-serif;
  --font-fun:  'Fredoka One', cursive;
  --radius: 20px;
  --shadow: 0 8px 30px rgba(0,0,0,.12);
  --shadow-hover: 0 16px 50px rgba(0,0,0,.2);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  color: var(--dark);
  overflow-x: hidden;
  background: #fff;
}

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

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

/* ===== FLOATING SHAPES BG ===== */
.floating-shapes {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.shape {
  position: absolute;
  opacity: .12;
  font-size: 2rem;
  animation: floatAround linear infinite;
}
.s1 { top:5%;  left:3%;  color:var(--orange); font-size:2.5rem; animation-duration:14s; }
.s2 { top:20%; right:4%; color:var(--blue);   font-size:1.8rem; animation-duration:18s; animation-delay:-4s; }
.s3 { top:55%; left:8%;  color:var(--green);  font-size:1.4rem; animation-duration:12s; animation-delay:-6s; }
.s4 { top:75%; right:6%; color:var(--purple); font-size:2rem;   animation-duration:16s; animation-delay:-2s; }
.s5 { top:88%; left:40%; color:var(--orange); font-size:1.6rem; animation-duration:20s; animation-delay:-8s; }
.c1 { top:10%; left:20%; width:60px; height:60px; border-radius:50%; background:var(--blue);   animation-duration:22s; }
.c2 { top:35%; right:15%;width:40px; height:40px; border-radius:50%; background:var(--orange); animation-duration:17s; animation-delay:-3s; }
.c3 { top:60%; left:50%; width:50px; height:50px; border-radius:50%; background:var(--green);  animation-duration:19s; animation-delay:-7s; }
.c4 { top:80%; right:30%;width:35px; height:35px; border-radius:50%; background:var(--purple); animation-duration:15s; animation-delay:-5s; }
.c5 { top:20%; left:60%; width:45px; height:45px; border-radius:50%; background:var(--red);    animation-duration:25s; animation-delay:-10s; }
.z1 { top:30%; left:78%; color:var(--orange); font-size:3rem; animation-duration:13s; }
.z2 { top:70%; left:15%; color:var(--green);  font-size:3rem; animation-duration:21s; animation-delay:-9s; }
.d1 { top:45%; right:10%; color:var(--blue);   font-size:4rem; animation-duration:11s; animation-delay:-1s; }
.d2 { top:15%; left:45%;  color:var(--orange); font-size:3rem; animation-duration:16s; animation-delay:-4s; }
.d3 { top:90%; right:45%; color:var(--purple); font-size:5rem; animation-duration:24s; animation-delay:-12s; }

@keyframes floatAround {
  0%   { transform: translateY(0px) rotate(0deg); }
  25%  { transform: translateY(-30px) rotate(90deg); }
  50%  { transform: translateY(-10px) rotate(180deg); }
  75%  { transform: translateY(-40px) rotate(270deg); }
  100% { transform: translateY(0px) rotate(360deg); }
}

/* ===== WAVE DIVIDERS ===== */
.wave-divider { line-height: 0; margin-top: -2px; position: relative; z-index: 1; }
.wave-divider svg { width: 100%; height: 80px; }

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-bottom: 3px solid transparent;
  transition: border-color .3s, box-shadow .3s;
  padding: 10px 0;
}
#navbar.scrolled {
  border-bottom-color: var(--orange);
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav-logo img {
  height: 56px;
  width: auto;
  transition: transform .3s;
}
.nav-logo:hover img { transform: scale(1.05) rotate(-2deg); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: .95rem;
  padding: 8px 14px;
  border-radius: 50px;
  color: var(--dark);
  transition: background .2s, color .2s, transform .2s;
}
.nav-links a:hover {
  background: #f0f9ff;
  color: var(--blue);
  transform: translateY(-2px);
}
.btn-nav {
  background: var(--orange) !important;
  color: #fff !important;
  font-family: var(--font-fun) !important;
  font-size: 1rem !important;
  padding: 10px 22px !important;
  animation: pulseBtn 2.5s ease-in-out infinite;
}
.btn-nav:hover {
  background: #d9620f !important;
  transform: translateY(-3px) scale(1.04) !important;
}

@keyframes pulseBtn {
  0%,100% { box-shadow: 0 0 0 0 rgba(244,121,32,.5); }
  50%      { box-shadow: 0 0 0 10px rgba(244,121,32,0); }
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--dark);
  border-radius: 4px;
  transition: transform .3s, opacity .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.hero-badge i { color: #fff; font-size: 1rem; vertical-align: middle; }

.hero-badge-float i { font-size: 1rem; vertical-align: middle; }
.b1 i { color: var(--orange); }
.b2 i { color: #FFB800; }
.b3 i { color: var(--red); }

.btn-primary i, .btn-secondary i, .btn-nav i { vertical-align: middle; font-size: 1.1rem; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-fun);
  font-size: 1.05rem;
  padding: 14px 32px;
  border-radius: 50px;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 6px 20px rgba(244,121,32,.4);
  border: none;
  cursor: pointer;
}
.btn-primary:hover { transform: translateY(-4px) scale(1.03); box-shadow: 0 12px 30px rgba(244,121,32,.5); }
.btn-primary.full-width { width: 100%; text-align: center; }

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--blue);
  font-family: var(--font-fun);
  font-size: 1.05rem;
  padding: 13px 30px;
  border-radius: 50px;
  border: 3px solid var(--blue);
  transition: transform .2s, background .2s, color .2s;
}
.btn-secondary:hover { background: var(--blue); color: #fff; transform: translateY(-4px); }

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  font-family: var(--font-fun);
  font-size: 1.1rem;
  padding: 14px 32px;
  border-radius: 50px;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 6px 20px rgba(37,211,102,.4);
}
.btn-whatsapp:hover { transform: translateY(-4px) scale(1.03); box-shadow: 0 12px 30px rgba(37,211,102,.5); }

.btn-light {
  display: inline-block;
  background: rgba(255,255,255,.2);
  color: #fff;
  font-family: var(--font-fun);
  font-size: 1.05rem;
  padding: 13px 30px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,.6);
  transition: transform .2s, background .2s;
}
.btn-light:hover { background: rgba(255,255,255,.35); transform: translateY(-3px); }

.bounce-btn { animation: bounceCTA 2s ease-in-out infinite; }
@keyframes bounceCTA {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
.bounce-btn:hover { animation: none; transform: translateY(-4px) scale(1.03); }

/* ===== SECTION COMMONS ===== */
section { position: relative; z-index: 1; padding: 90px 0 60px; }

.section-tag {
  display: inline-block;
  background: color-mix(in srgb, var(--tag-color) 15%, transparent);
  color: var(--tag-color);
  font-family: var(--font-fun);
  font-size: .9rem;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 12px;
  border: 2px solid color-mix(in srgb, var(--tag-color) 30%, transparent);
}
.section-title {
  font-family: var(--font-fun);
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--dark);
}
.section-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 48px;
  line-height: 1.7;
}
.highlight-orange { color: var(--orange); }
.highlight-green  { color: var(--green); }
.highlight-blue   { color: var(--blue); }

/* ===== HERO ===== */
#hero {
  padding: 140px 24px 0;
  background: linear-gradient(135deg, #fff9f0 0%, #e8f9ff 50%, #f0ffe8 100%);
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.hero-bg-blobs { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .35;
}
.blob1 { width: 500px; height: 500px; background: var(--orange); top: -150px; right: -100px; animation: blobPulse 8s ease-in-out infinite; }
.blob2 { width: 400px; height: 400px; background: var(--blue);   bottom: 100px; left: -150px; animation: blobPulse 10s ease-in-out infinite reverse; }
.blob3 { width: 300px; height: 300px; background: var(--green);  top: 50%; left: 40%; animation: blobPulse 7s ease-in-out infinite; }
@keyframes blobPulse {
  0%,100% { transform: scale(1); }
  50%      { transform: scale(1.15); }
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 2;
  padding-bottom: 80px;
}

.hero-badge {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  font-family: var(--font-fun);
  font-size: .95rem;
  padding: 6px 20px;
  border-radius: 50px;
  margin-bottom: 20px;
  animation: slideInLeft .6s ease;
}
.hero-text h1 {
  font-family: var(--font-fun);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-text p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 32px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-img-wrapper {
  position: relative;
  border-radius: 30px;
  overflow: visible;
}
.hero-img {
  width: 100%;
  border-radius: 30px;
  box-shadow: var(--shadow-hover);
  animation: heroFloat 4s ease-in-out infinite;
}
@keyframes heroFloat {
  0%,100% { transform: translateY(0px); }
  50%      { transform: translateY(-14px); }
}

.hero-badge-float {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  padding: 10px 16px;
  font-family: var(--font-fun);
  font-size: .9rem;
  box-shadow: var(--shadow);
  white-space: nowrap;
  animation: badgeFloat 3s ease-in-out infinite;
}
.b1 { top: 20px;  left: -40px; color: var(--orange); animation-delay: 0s; }
.b2 { top: 50%;   right: -40px; color: var(--blue); animation-delay: .8s; }
.b3 { bottom: 30px; left: -30px; color: var(--purple); animation-delay: 1.6s; }
@keyframes badgeFloat {
  0%,100% { transform: translateY(0) rotate(-2deg); }
  50%      { transform: translateY(-8px) rotate(2deg); }
}

/* ===== SOBRE ===== */
#sobre { padding: 80px 0 20px; background: #fff; }
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.img-stack { position: relative; }
.img-main {
  width: 100%;
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.img-secondary {
  position: absolute;
  width: 50%;
  bottom: -30px;
  right: -30px;
  border-radius: 18px;
  border: 4px solid #fff;
  box-shadow: var(--shadow);
}
.wobble { animation: wobble 5s ease-in-out infinite; }
@keyframes wobble {
  0%,100% { transform: rotate(-1deg); }
  50%      { transform: rotate(1.5deg); }
}
.spin-border { animation: spinBorder 6s linear infinite; }
@keyframes spinBorder {
  0%   { border-color: var(--orange); }
  25%  { border-color: var(--blue); }
  50%  { border-color: var(--green); }
  75%  { border-color: var(--purple); }
  100% { border-color: var(--orange); }
}

.sobre-text .lead {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 16px;
}
.sobre-text p {
  font-size: 1rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 32px;
}

.sobre-stats {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
}
.stat-card {
  flex: 1;
  background: #fff;
  border-radius: 16px;
  padding: 20px 12px;
  text-align: center;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--c);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform .3s;
}
.stat-card:hover { transform: translateY(-6px); }
.stat-num {
  font-family: var(--font-fun);
  font-size: 2.4rem;
  color: var(--c);
  line-height: 1;
}
.stat-card > span:nth-child(2) {
  font-family: var(--font-fun);
  font-size: 1.8rem;
  color: var(--c);
  line-height: 1;
}
.stat-label {
  font-size: .8rem;
  color: #888;
  margin-top: 6px;
  line-height: 1.3;
}

/* ===== ESPECIALIDADES ===== */
#especialidades { padding: 80px 0 30px; }
.esp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.esp-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: var(--shadow);
  border-top: 5px solid var(--card-color);
  transition: transform .3s, box-shadow .3s;
  position: relative;
  overflow: hidden;
  cursor: default;
}
.esp-card::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 80px; height: 80px;
  background: var(--card-color);
  opacity: .06;
  border-radius: 50% 0 0 0;
  transition: opacity .3s;
}
.esp-card:hover { transform: translateY(-10px) scale(1.02); box-shadow: var(--shadow-hover); }
.esp-card:hover::after { opacity: .14; }
.esp-icon {
  font-size: 2.6rem;
  margin-bottom: 14px;
  display: block;
  color: var(--card-color);
  animation: iconBounce 2.5s ease-in-out infinite;
}
.esp-card:nth-child(2) .esp-icon { animation-delay: .4s; }
.esp-card:nth-child(3) .esp-icon { animation-delay: .8s; }
.esp-card:nth-child(4) .esp-icon { animation-delay: 1.2s; }
.esp-card:nth-child(5) .esp-icon { animation-delay: 1.6s; }
.esp-card:nth-child(6) .esp-icon { animation-delay: 2s; }
@keyframes iconBounce {
  0%,100% { transform: translateY(0) rotate(0deg); }
  30%      { transform: translateY(-6px) rotate(-5deg); }
  60%      { transform: translateY(-4px) rotate(5deg); }
}
.esp-card h3 {
  font-family: var(--font-fun);
  font-size: 1.3rem;
  color: var(--card-color);
  margin-bottom: 10px;
}
.esp-card p { font-size: .95rem; color: #666; line-height: 1.7; }

/* ===== ESTRUTURA / GALLERY ===== */
#estrutura { background: #fff; }
.gallery-grid {
  columns: 3;
  column-gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  break-inside: avoid;
  margin-bottom: 16px;
}
.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform .5s;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.6) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity .3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: #fff;
  font-family: var(--font-fun);
  font-size: 1rem;
}

/* ===== DIFERENCIAIS ===== */
#diferenciais { padding: 80px 0 30px; }
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.diff-item {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  transition: transform .3s;
  text-align: center;
}
.diff-item:hover { transform: translateY(-8px); }
.diff-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 16px;
  transition: transform .3s;
}
.diff-item:hover .diff-icon { transform: rotate(15deg) scale(1.1); }
.diff-item h4 {
  font-family: var(--font-fun);
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.diff-item p { font-size: .9rem; color: #777; line-height: 1.6; }

/* ===== DEPOIMENTOS ===== */
#depoimentos { padding: 80px 0 30px; overflow: hidden; }
.testimonials-track-wrapper { overflow: hidden; position: relative; }
.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform .5s cubic-bezier(.25,.46,.45,.94);
  will-change: transform;
}
.testi-card {
  width: 100%; /* sobrescrito por JS */
  flex: 0 0 auto;
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 28px 24px;
  box-shadow: var(--shadow);
}
.testi-stars { color: #FFD700; font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 14px; }
.testi-card p {
  font-size: .95rem;
  line-height: 1.7;
  color: #555;
  font-style: italic;
  margin-bottom: 20px;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testi-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-fun);
  font-size: 1.3rem;
  flex-shrink: 0;
}
.testi-author strong { display: block; font-size: .95rem; }
.testi-author span { font-size: .82rem; color: #999; }

.testi-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}
.testi-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: background .3s, transform .3s;
}
.testi-dot.active { background: var(--orange); transform: scale(1.4); }

/* ===== FAQ ===== */
#faq { background: #fff; }
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-radius: 16px;
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
  background: #fff;
  border: 2px solid transparent;
  transition: border-color .3s;
}
.faq-item.open { border-color: var(--blue); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark);
  cursor: pointer;
  text-align: left;
  gap: 16px;
  transition: background .2s;
}
.faq-q:hover { background: #f9f9ff; }
.faq-icon {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--blue);
  transition: transform .3s;
  flex-shrink: 0;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s;
  padding: 0 24px;
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding: 0 24px 20px;
}
.faq-a p { font-size: .95rem; color: #666; line-height: 1.7; }

/* ===== CTA BANNER ===== */
#cta-banner {
  background: var(--orange);
  padding: 70px 24px;
  position: relative;
  z-index: 1;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-text h2 {
  font-family: var(--font-fun);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #fff;
  margin-bottom: 12px;
}
.cta-text p { color: rgba(255,255,255,.9); font-size: 1.05rem; line-height: 1.7; }
.cta-action { display: flex; flex-direction: column; gap: 14px; }

/* ===== CONTATO ===== */
#contato { padding: 80px 0; }
.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
  margin-top: 48px;
}
.contato-info { display: flex; flex-direction: column; gap: 20px; }
.info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  border-radius: 16px;
  padding: 18px 20px;
  box-shadow: var(--shadow);
  transition: transform .3s;
}
.info-card:hover { transform: translateX(6px); }
.info-icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.info-card strong { display: block; font-size: .95rem; margin-bottom: 4px; }
.info-card p { font-size: .88rem; color: #777; line-height: 1.5; }

.social-links { display: flex; gap: 10px; margin-top: 12px; }
.social-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--sc) 12%, white);
  color: var(--sc);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s, background .2s;
}
.social-btn:hover { background: var(--sc); color: #fff; transform: translateY(-4px) scale(1.1); }
.social-btn.light { background: rgba(255,255,255,.15); color: #fff; }
.social-btn.light:hover { background: var(--sc); }

/* ===== FORM ===== */
.contato-form {
  background: #fff;
  border-radius: 24px;
  padding: 40px 36px;
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-group label { font-weight: 700; font-size: .9rem; color: #555; }
.form-group input,
.form-group select,
.form-group textarea {
  border: 2px solid #e5e5e5;
  border-radius: 12px;
  padding: 13px 16px;
  font-family: var(--font-main);
  font-size: .95rem;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  background: #fafafa;
  color: var(--dark);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(41,169,224,.12);
  background: #fff;
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
  display: none;
  text-align: center;
  margin-top: 20px;
  padding: 16px;
  background: #e8f5e9;
  border-radius: 12px;
  color: #2e7d32;
  font-weight: 700;
  font-size: 1rem;
}
.form-success.show { display: block; animation: slideInUp .4s ease; }

/* ===== FOOTER ===== */
#footer {
  background: var(--dark);
  color: #ccc;
  padding-bottom: 0;
}
.footer-wave { line-height: 0; }
.footer-wave svg { width: 100%; height: 60px; }
.footer-content { padding: 40px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-logo { height: 90px; width: auto; margin-bottom: 16px; }
.footer-brand p { font-size: .9rem; line-height: 1.7; color: #aaa; }
.footer-links-col h5 {
  font-family: var(--font-fun);
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 16px;
}
.footer-links-col ul li {
  margin-bottom: 8px;
  font-size: .88rem;
  color: #aaa;
}
.footer-links-col ul li a {
  color: #aaa;
  transition: color .2s;
}
.footer-links-col ul li a:hover { color: var(--orange); }
.footer-links-col ul li i {
  color: var(--orange);
  vertical-align: middle;
  margin-right: 4px;
  font-size: .95rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 24px;
  text-align: center;
  font-size: .85rem;
  color: #888;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 8px 24px rgba(37,211,102,.5);
  z-index: 998;
  transition: transform .2s, box-shadow .2s;
  animation: waBounce 3s ease-in-out infinite;
}
.whatsapp-float i {
  font-size: 1.8rem;
  line-height: 1;
}
.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 14px 34px rgba(37,211,102,.6);
  animation: none;
}
@keyframes waBounce {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

/* ===== AOS-LIKE SIMPLE ANIMATIONS ===== */
[data-aos] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s ease, transform .7s ease;
}
[data-aos="fade-right"]  { transform: translateX(-40px); }
[data-aos="fade-left"]   { transform: translateX(40px); }
[data-aos="zoom-in"]     { transform: scale(.85); }
[data-aos="flip-left"]   { transform: perspective(400px) rotateY(-40deg); }
[data-aos="fade-up"]     { transform: translateY(40px); }
[data-aos].aos-animate {
  opacity: 1;
  transform: none;
}

@keyframes slideInLeft  { from { opacity:0; transform:translateX(-40px); } to { opacity:1; transform:none; } }
@keyframes slideInUp    { from { opacity:0; transform:translateY(20px); }  to { opacity:1; transform:none; } }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .esp-grid  { grid-template-columns: repeat(2, 1fr); }
  .diff-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { columns: 2; }
  .testi-card { /* width definido por JS */ }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 20px;
    gap: 8px;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform .3s;
    box-shadow: 0 10px 30px rgba(0,0,0,.12);
  }
  .nav-links.open { transform: scaleY(1); }
  .nav-links a { padding: 12px 16px; width: 100%; text-align: center; }

  .hero-content { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero-btns { justify-content: center; }
  .hero-badge-float.b1, .hero-badge-float.b2, .hero-badge-float.b3 { display: none; }

  .sobre-grid { grid-template-columns: 1fr; }
  .img-secondary { display: none; }

  .esp-grid  { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: 1fr; }
  .gallery-grid { columns: 2; }

  .contato-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contato-form { padding: 28px 20px; }

  .cta-inner { flex-direction: column; text-align: center; }
  .cta-action { align-items: center; }

  .footer-grid { grid-template-columns: 1fr 1fr; }

  .testi-card { /* width definido por JS */ }
  .sobre-stats { flex-direction: column; }
}

@media (max-width: 480px) {
  .gallery-grid { columns: 1; }
  .footer-grid { grid-template-columns: 1fr; }
}
