/* =========================
   RESET
========================= */
:root {
  --primary: #0ABAB5;
  --primary-dark: #089490;
  --primary-soft: #e6f7f7;

  --dark: #1a2332;
  --text: #374151;
  --text-light: #6b7280;

  --bg: #fafafa;
  --white: #ffffff;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 16px 40px rgba(0,0,0,0.10);

  --radius: 12px;
  --transition: 0.3s ease;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
}

/* =========================
   CONTAINER
========================= */
.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* =========================
   HEADER
========================= */
.header {
  position: fixed;
  width: 100%;
  top: 0;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  z-index: 1000;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #0ABAB5;
}

/* MENU */
.nav a {
  margin: 0 10px;
  text-decoration: none;
  color: #1a2332;
  font-weight: 500;
  transition: 0.3s;
}

.nav a:hover {
  color: #0ABAB5;
}

/* =========================
   BOTÕES
========================= */
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  padding: 14px 26px;
  border-radius: 50px;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(10,186,181,0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(10,186,181,0.4);
}

.btn-outline {
  border: 1.5px solid var(--primary);
  color: var(--primary);
  padding: 14px 26px;
  border-radius: 50px;
  transition: var(--transition);
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
}

/* =========================
   HERO
========================= */
.hero {
  padding: 160px 0 100px;
  text-align: center;
  background: linear-gradient(180deg, #f0fbfb 0%, #ffffff 100%);
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(10,186,181,0.1), transparent);
  top: -150px;
  right: -100px;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}

.hero p {
  max-width: 600px;
  margin: auto;
  margin-bottom: 30px;
  color: var(--text-light);
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-trust {
  margin-top: 25px;
  display: flex;
  gap: 20px;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--text-light);
}

/* =========================
   DORES
========================= */
.dores {
  padding: 80px 0;
  text-align: center;
}

.dores h2 {
  margin-bottom: 30px;
}

.grid-3 div {
  background: var(--primary-soft);
  padding: 22px;
  border-radius: var(--radius);
  transition: var(--transition);
  border: 1px solid transparent;
}

.grid-3 div:hover {
  background: var(--white);
  transform: translateY(-4px);
  border-color: rgba(10,186,181,0.2);
  box-shadow: var(--shadow-sm);
}

/* =========================
   PLANOS
========================= */
.planos {
  padding: 80px 0;
  text-align: center;
}

.planos h2 {
  margin-bottom: 30px;
}

.card {
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.04);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.card p {
  font-size: 1.5rem;
  margin: 15px 0;
}

.destaque {
  border: 2px solid #0ABAB5;
}

/* =========================
   SOBRE
========================= */
.sobre {
  padding: 80px 0;
  text-align: center;
}

.sobre p {
  max-width: 700px;
  margin: 10px auto;
}

/* =========================
   DEPOIMENTOS
========================= */
.depoimentos {
  padding: 80px 0;
  text-align: center;
  background: #fff;
}

.depoimentos-slider {
  max-width: 600px;
  margin: auto;
}

.depoimento {
  display: none;
  font-size: 1.2rem;
  color: #333;
}

.depoimento.active {
  display: block;
}

/* =========================
   YOUTUBE
========================= */
.youtube {
  padding: 80px 0;
  text-align: center;
}

.youtube iframe {
  border-radius: 12px;
}

/* =========================
   EMERGÊNCIA
========================= */
.emergencia {
  padding: 80px 0;
  text-align: center;
  background: #1a2332;
  color: white;
}

.emergencia p {
  margin: 15px 0;
}

/* =========================
   CONTATO
========================= */
.contato {
  padding: 80px 0;
  text-align: center;
}

/* =========================
   FOOTER
========================= */
.footer {
  padding: 30px;
  text-align: center;
  background: #1a2332;
  color: #aaa;
}

/* =========================
   WHATSAPP FLOAT
========================= */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  padding: 15px;
  border-radius: 50%;
  font-size: 20px;
  text-align: center;
}

/* =========================
   RESPONSIVO
========================= */
@media (max-width: 768px) {

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

  .hero h1 {
    font-size: 2rem;
  }

  .nav {
    display: none;
  }

}