/* ============================================================
   KOVI LOCADORA — CSS Principal
   Paleta: Branco (#FFFFFF) + Coral rosado (#F4435A → #EC407A)
   ============================================================ */

:root {
  --primary-start: #F4435A;
  --primary-end:   #EC407A;
  --gradient: linear-gradient(135deg, #F4435A 0%, #EC407A 100%);
  --gradient-hover: linear-gradient(135deg, #e03550 0%, #d63060 100%);
  --white: #ffffff;
  --off-white: #fafafa;
  --light-bg: #fff5f6;
  --text-dark: #1a1a2e;
  --text-mid: #4a4a6a;
  --text-light: #7a7a9a;
  --border: #f0e0e5;
  --shadow-sm: 0 2px 12px rgba(244, 67, 90, 0.08);
  --shadow-md: 0 8px 32px rgba(244, 67, 90, 0.15);
  --shadow-lg: 0 20px 60px rgba(244, 67, 90, 0.18);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition: all 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; font-size: 16px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ===== UTILITÁRIOS ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-tag {
  display: inline-block;
  background: var(--light-bg);
  color: var(--primary-start);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid rgba(244,67,90,0.2);
  margin-bottom: 12px;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-mid);
  font-size: 1.05rem;
}

/* ===== BOTÕES ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gradient);
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  padding: 14px 30px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 6px 24px rgba(244,67,90,0.35);
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--gradient-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(244,67,90,0.45);
  color: var(--white);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  padding: 13px 30px;
  border-radius: 100px;
  border: 2px solid rgba(255,255,255,0.6);
  transition: var(--transition);
  white-space: nowrap;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  color: var(--white);
}

.btn-full { width: 100%; justify-content: center; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  background: transparent;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  padding: 12px 0;
}

.navbar.scrolled .nav-links a { color: var(--text-dark); }
.navbar.scrolled .nav-links a:hover { color: var(--primary-start); }
.navbar.scrolled .logo-text,
.navbar.scrolled .logo-tag { color: var(--text-dark); }

.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
}

.logo-k {
  font-size: 2rem;
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  transition: var(--transition);
}

.logo-tag {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  align-self: flex-end;
  margin-bottom: 4px;
  margin-left: 4px;
  transition: var(--transition);
}

.logo-white .logo-text,
.logo-white .logo-tag { color: var(--white); opacity: 0.9; }

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}

.nav-links a {
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
  font-weight: 600;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gradient);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.nav-links a:hover::after { width: 100%; }

/* Nav WhatsApp button */
.btn-whatsapp-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gradient);
  color: var(--white) !important;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 100px;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(244,67,90,0.35);
  transition: var(--transition);
}

.btn-whatsapp-nav:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(244,67,90,0.5);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.navbar.scrolled .hamburger span { background: var(--text-dark); }

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.08) 0%, transparent 60%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.05) 0%, transparent 50%);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 100px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,40 C360,80 1080,0 1440,40 L1440,80 L0,80 Z' fill='%23ffffff'/%3E%3C/svg%3E") bottom/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(135deg, rgba(244,67,90,0.3) 0%, rgba(236,64,122,0.2) 100%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 140px 24px 140px;
  max-width: 680px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.25);
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}

.hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
}

.hero-content h1 .gradient-text {
  background: rgba(255,255,255,0.95);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content > p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.88);
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-ctas .btn-primary {
  background: var(--white);
  color: var(--primary-start);
  box-shadow: 0 8px 28px rgba(0,0,0,0.2);
}

.hero-ctas .btn-primary:hover {
  background: var(--white);
  color: var(--primary-end);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.25);
}

/* Hero Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 20px 28px;
  border-radius: var(--radius-lg);
  width: fit-content;
}

.stat strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.stat span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.25);
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 120px;
  right: 10%;
  z-index: 2;
}

.hero-scroll-indicator span {
  display: block;
  width: 24px; height: 40px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 12px;
  position: relative;
}

.hero-scroll-indicator span::after {
  content: '';
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 8px;
  background: var(--white);
  border-radius: 2px;
  animation: scrollBob 1.5s ease-in-out infinite;
}

@keyframes scrollBob {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50% { transform: translateX(-50%) translateY(8px); opacity: 0.4; }
}

/* ===== SOBRE ===== */
.sobre {
  padding: 100px 0;
  background: var(--white);
}

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

.sobre-img-wrap { display: flex; justify-content: center; }

.sobre-img-card {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4/3;
  background: var(--gradient);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  overflow: visible;
}

.sobre-icon-big {
  font-size: 8rem;
  color: rgba(255,255,255,0.9);
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.1));
}

.sobre-badge-float {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--white);
  color: var(--primary-start);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 100px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 6px;
}

.sobre-badge-float i { color: #F4D03F; }

.sobre-text { max-width: 520px; }

.sobre-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.sobre-text p {
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 16px;
}

.sobre-list {
  margin: 24px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sobre-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
}

.sobre-list li i {
  color: var(--primary-start);
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ===== PLANOS ===== */
.planos {
  padding: 100px 0;
  background: var(--light-bg);
  position: relative;
}

.planos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.plano-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 2px solid var(--border);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.plano-card:hover {
  border-color: rgba(244,67,90,0.3);
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}

.plano-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.plano-desc {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 24px;
}

.plano-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  flex: 1;
}

.plano-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-mid);
}

.plano-features li i {
  color: var(--primary-start);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.plano-icon-wrap {
  width: 64px; height: 64px;
  background: var(--light-bg);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
  color: var(--primary-start);
  transition: var(--transition);
}

.plano-card:hover .plano-icon-wrap {
  background: var(--gradient);
  color: var(--white);
}

.plano-price-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-start);
  text-align: center;
  padding: 10px;
  background: var(--light-bg);
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  border: 1px dashed rgba(244,67,90,0.3);
}

.btn-plano {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--gradient);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 14px 20px;
  border-radius: 100px;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(244,67,90,0.3);
  text-align: center;
}

.btn-plano:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(244,67,90,0.45);
  color: var(--white);
}

/* Plano destaque */
.plano-destaque {
  background: var(--gradient);
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px) scale(1.02);
}

.plano-destaque:hover {
  transform: translateY(-14px) scale(1.02);
}

.plano-destaque h3,
.plano-destaque .plano-desc,
.plano-destaque .plano-features li { color: var(--white); }

.plano-destaque .plano-icon-wrap {
  background: rgba(255,255,255,0.2);
  color: var(--white);
}

.plano-destaque .plano-features li i { color: rgba(255,255,255,0.9); }

.plano-destaque .plano-price-label {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.3);
  color: var(--white);
}

.plano-destaque .btn-plano {
  background: var(--white);
  color: var(--primary-start);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.plano-destaque .btn-plano:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.2); }

.plano-badge-top {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--text-dark);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

/* Plano próprio */
.plano-proprio { border-color: rgba(244,67,90,0.2); }

.planos-nota {
  text-align: center;
  margin-top: 40px;
  font-size: 0.9rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.planos-nota i { color: var(--primary-start); }

/* ===== VANTAGENS ===== */
.vantagens {
  padding: 100px 0;
  background: var(--white);
}

.vantagens-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.vantagem-item {
  padding: 36px 28px;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  background: var(--white);
}

.vantagem-item:hover {
  border-color: rgba(244,67,90,0.25);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.vantagem-icon {
  width: 60px; height: 60px;
  background: var(--light-bg);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--primary-start);
  margin-bottom: 20px;
  transition: var(--transition);
}

.vantagem-item:hover .vantagem-icon {
  background: var(--gradient);
  color: var(--white);
}

.vantagem-item h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.vantagem-item p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ===== DEPOIMENTOS ===== */
.depoimentos {
  padding: 100px 0;
  background: var(--light-bg);
  overflow: hidden;
}

.dep-slider-wrap {
  position: relative;
  overflow: hidden;
}

.dep-slider {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.dep-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  min-width: calc(33.333% - 16px);
  flex-shrink: 0;
  border: 2px solid var(--border);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dep-card:hover {
  border-color: rgba(244,67,90,0.25);
  box-shadow: var(--shadow-md);
}

.dep-stars { color: #F4D03F; font-size: 1rem; display: flex; gap: 3px; }

.dep-card > p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.8;
  flex: 1;
  font-style: italic;
}

.dep-card > p::before { content: '"'; }
.dep-card > p::after  { content: '"'; }

.dep-autor {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}

.dep-avatar {
  width: 44px; height: 44px;
  background: var(--gradient);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
}

.dep-autor strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
}

.dep-autor span {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* Controles do slider */
.dep-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.dep-btn {
  width: 44px; height: 44px;
  background: var(--white);
  border: 2px solid var(--border);
  color: var(--text-mid);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.9rem;
}

.dep-btn:hover {
  background: var(--gradient);
  border-color: transparent;
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.dep-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.dep-dot {
  width: 8px; height: 8px;
  background: var(--border);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
}

.dep-dot.active {
  background: var(--gradient);
  width: 24px;
  border-radius: 4px;
}

/* ===== CTA WHATSAPP ===== */
.cta-whatsapp {
  background: var(--gradient);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}

.cta-whatsapp::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/svg%3E");
}

.cta-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}

.cta-text p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
}

.btn-cta-big {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  color: var(--primary-start);
  font-size: 1.05rem;
  font-weight: 800;
  padding: 18px 36px;
  border-radius: 100px;
  transition: var(--transition);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-cta-big i { font-size: 1.3rem; color: #25D366; }

.btn-cta-big:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 40px rgba(0,0,0,0.25);
  color: var(--primary-end);
}

/* ===== CONTATO ===== */
.contato {
  padding: 100px 0;
  background: var(--white);
}

.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contato-info { max-width: 480px; }

.contato-info h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
}

.contato-info > p {
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 36px;
}

.contato-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contato-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contato-icon {
  width: 48px; height: 48px;
  background: var(--light-bg);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary-start);
  flex-shrink: 0;
}

.contato-item strong { display: block; font-size: 0.85rem; font-weight: 700; color: var(--text-dark); margin-bottom: 2px; }
.contato-item a, .contato-item span { font-size: 0.95rem; color: var(--text-mid); }
.contato-item a:hover { color: var(--primary-start); }

/* Form */
.contato-form-wrap {
  background: var(--light-bg);
  border-radius: var(--radius-xl);
  padding: 40px;
  border: 2px solid var(--border);
}

.contato-form h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 28px;
  color: var(--text-dark);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: var(--transition);
  outline: none;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-light); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-start);
  box-shadow: 0 0 0 4px rgba(244,67,90,0.08);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.8);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 72px 24px 48px;
}

.footer-brand .logo {
  margin-bottom: 16px;
  display: inline-flex;
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}

.footer-links a:hover { color: var(--white); padding-left: 6px; }

.footer-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 700;
  color: #25D366;
  margin-bottom: 12px;
  transition: var(--transition);
}

.footer-wa i { font-size: 1.3rem; }

.footer-wa:hover { color: #20bd5a; }

.footer-horario {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 24px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

/* ===== FLOAT WHATSAPP BUTTON ===== */
.float-wa {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 999;
  width: 60px; height: 60px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 8px 28px rgba(37,211,102,0.45);
  transition: var(--transition);
}

.float-wa:hover {
  background: #20bd5a;
  transform: scale(1.1);
  box-shadow: 0 12px 36px rgba(37,211,102,0.55);
  color: var(--white);
}

.float-wa:hover .float-wa-tooltip { opacity: 1; transform: translateX(-110%) translateY(-50%) scale(1); }

.float-wa-tooltip {
  position: absolute;
  right: calc(100% + 16px);
  top: 50%;
  transform: translateX(-100%) translateY(-50%) scale(0.9);
  background: var(--text-dark);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}

.float-wa-tooltip::after {
  content: '';
  position: absolute;
  top: 50%; right: -6px;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right: none;
  border-left-color: var(--text-dark);
}

/* Pulse animation on float button */
.float-wa::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.4);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .planos-grid { grid-template-columns: repeat(2, 1fr); }
  .plano-destaque { transform: none; }
  .plano-destaque:hover { transform: translateY(-8px); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .sobre-grid { grid-template-columns: 1fr; gap: 48px; }
  .sobre-img-wrap { display: none; }
  .vantagens-grid { grid-template-columns: repeat(2, 1fr); }
  .contato-grid { grid-template-columns: 1fr; gap: 48px; }
  .dep-card { min-width: calc(50% - 12px); }

  .nav-links { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(255,255,255,0.98); flex-direction: column; justify-content: center; align-items: center; gap: 24px; z-index: 999; padding: 32px; }
  .nav-links.open { display: flex; }
  .nav-links a { color: var(--text-dark); font-size: 1.2rem; }
  .nav-links a::after { bottom: -2px; }
  .btn-whatsapp-nav { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 640px) {
  .planos-grid { grid-template-columns: 1fr; }
  .vantagens-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .stat-divider { width: 80px; height: 1px; }
  .dep-card { min-width: 100%; }
  .cta-inner { flex-direction: column; text-align: center; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-scroll-indicator { display: none; }
  .contato-form-wrap { padding: 24px; }
}

/* ===== ANIMAÇÕES DE ENTRADA ===== */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}
