:root {
  --purple: #5f4a95;
  --purple-dark: #44306f;
  --purple-soft: #efe9ff;
  --yellow: #f7c948;
  --cream: #fffaf4;
  --text: #28242f;
  --muted: #6d6678;
  --white: #ffffff;
  --border: #e6deef;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}

a {
  color: inherit;
}

.hero {
  min-height: 90vh;
  color: white;
  background:
    radial-gradient(circle at top right, rgba(247, 201, 72, 0.35), transparent 34%),
    linear-gradient(135deg, rgba(68, 48, 111, 0.94), rgba(95, 74, 149, 0.86)),
    url("https://images.unsplash.com/photo-1583337130417-3346a1be7dee?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  padding: 24px;
}

.nav {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  font-size: 20px;
}

.brand img {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.55);
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.nav-links a {
  text-decoration: none;
  font-weight: 700;
  opacity: 0.95;
}

.hero-content {
  max-width: 1120px;
  margin: 110px auto 0;
}

.badge,
.section-label {
  display: inline-block;
  color: var(--purple-dark);
  background: var(--yellow);
  font-weight: 800;
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 13px;
  letter-spacing: 0.3px;
}

.hero h1 {
  max-width: 780px;
  margin: 20px 0 16px;
  font-size: clamp(40px, 7vw, 78px);
  line-height: 1;
}

.hero p {
  max-width: 660px;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.92);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn {
  display: inline-block;
  text-decoration: none;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.primary {
  background: var(--yellow);
  color: var(--purple-dark);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.16);
}

.secondary {
  background: white;
  color: var(--purple-dark);
}

.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.trust span {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 10px 14px;
  backdrop-filter: blur(6px);
  font-weight: 700;
}

.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 74px 24px;
}

.intro {
  text-align: center;
  max-width: 820px;
}

.intro .section-label,
.appointment .section-label {
  background: var(--purple-soft);
  color: var(--purple-dark);
}

.section h2 {
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.12;
  margin: 16px 0;
}

.section p {
  color: var(--muted);
  font-size: 18px;
}

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

.card,
.info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 26px;
  box-shadow: 0 18px 40px rgba(68, 48, 111, 0.08);
}

.card .icon {
  font-size: 34px;
}

.card h3,
.info-card h2 {
  margin-bottom: 8px;
}

.appointment {
  background: var(--purple);
  color: white;
  border-radius: 34px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 26px;
}

.appointment p {
  color: rgba(255, 255, 255, 0.88);
}

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

.text-link {
  color: var(--purple);
  font-weight: 800;
}

.map {
  max-width: 1072px;
  margin: 0 auto 74px;
  padding: 0 24px;
}

.map iframe {
  width: 100%;
  min-height: 370px;
  border: 0;
  border-radius: 28px;
  box-shadow: 0 18px 40px rgba(68, 48, 111, 0.12);
}

footer {
  background: var(--purple-dark);
  color: white;
  text-align: center;
  padding: 38px 20px;
}

footer img {
  width: 82px;
  height: 82px;
  border-radius: 22px;
  object-fit: cover;
  margin-bottom: 10px;
}

footer p {
  margin: 6px 0;
  opacity: 0.92;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 10;
  background: #25d366;
  color: white;
  text-decoration: none;
  font-weight: 900;
  padding: 14px 18px;
  border-radius: 999px;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.22);
}

@media (max-width: 920px) {
  .cards,
  .info {
    grid-template-columns: repeat(2, 1fr);
  }

  .appointment {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: auto;
    padding-bottom: 70px;
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    font-size: 14px;
  }

  .hero-content {
    margin-top: 70px;
  }

  .hero p {
    font-size: 18px;
  }

  .cards,
  .info {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 58px 18px;
  }

  .floating-whatsapp {
    left: 18px;
    right: 18px;
    text-align: center;
  }
}
