:root {
  --white: #ffffff;
  --text: #1f2a37;
  --muted: #5b6470;
  --blue: #2f69c8;
  --blue-dark: #1f57b4;
  --green: #6ebc2c;
  --green-dark: #4aa32a;
  --soft-blue: #eef4ff;
  --soft-green: #f4fbeb;
  --line: #dfe7f3;
  --shadow: 0 18px 45px rgba(37, 88, 180, 0.12);
  --radius-lg: 30px;
  --radius-md: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(223, 231, 243, 0.9);
  backdrop-filter: blur(8px);
}

.topbar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
}

.brand {
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--blue);
}

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

.nav a {
  text-decoration: none;
  font-weight: 700;
  color: var(--text);
}

.banner-hero {
  padding: 26px 0 20px;
  background:
    radial-gradient(circle at left top, rgba(111, 188, 44, 0.12), transparent 30%),
    radial-gradient(circle at right top, rgba(47, 105, 200, 0.12), transparent 35%),
    #ffffff;
}

.banner-shell {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid var(--line);
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.banner-image {
  width: 100%;
  height: auto;
}

.intro-section,
.section {
  padding: 70px 0;
}

.intro-grid,
.highlight-grid,
.contact-grid,
.footer-grid {
  display: grid;
  gap: 28px;
}

.intro-grid,
.highlight-grid {
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
}

.contact-grid,
.footer-grid {
  grid-template-columns: repeat(2, 1fr);
}

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

.pill {
  display: inline-block;
  margin-bottom: 14px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--soft-blue);
  color: var(--blue-dark);
  font-size: 0.9rem;
  font-weight: 800;
}

.pill-green {
  background: var(--soft-green);
  color: var(--green-dark);
}

.intro-copy h1,
.section-heading h2,
.highlight-copy h2,
.contact-card h2,
.social-card h2 {
  margin: 0;
  line-height: 1.05;
}

.intro-copy h1 {
  font-size: clamp(2.6rem, 5vw, 4.7rem);
  color: var(--blue);
}

.intro-name {
  margin: 14px 0 10px;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
}

.intro-text,
.highlight-copy p,
.contact-card p,
.footer p,
.schedule-row span {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.03rem;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  padding: 15px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #ffffff;
  box-shadow: 0 16px 35px rgba(74, 163, 42, 0.22);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: #ffffff;
  box-shadow: 0 16px 35px rgba(31, 87, 180, 0.2);
}

.intro-card,
.service-card,
.contact-card,
.schedule-card,
.social-card,
.highlight-image-wrap {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.intro-card {
  padding: 14px;
}

.intro-card img {
  width: 100%;
  border-radius: 24px;
}

.section-soft {
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.section-heading {
  margin-bottom: 32px;
}

.section-heading.centered,
.no-margin,
.social-card {
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
}

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

.service-card {
  min-height: 200px;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(180deg, #ffffff 0%, #f9fcff 100%);
}

.service-number {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: #ffffff;
  font-weight: 900;
  font-size: 1rem;
}

.service-card h3 {
  margin: 18px 0 0;
  font-size: 1.1rem;
  line-height: 1.35;
}

.highlight-section {
  background:
    radial-gradient(circle at right bottom, rgba(110, 188, 44, 0.12), transparent 25%),
    radial-gradient(circle at left top, rgba(47, 105, 200, 0.10), transparent 28%),
    #ffffff;
}

.highlight-copy {
  padding: 10px 0;
}

.highlight-copy h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--blue);
  margin-bottom: 14px;
}

.highlight-image-wrap {
  padding: 12px;
  background: linear-gradient(180deg, #f7fdf0 0%, #ffffff 100%);
}

.highlight-image {
  width: 100%;
  border-radius: 22px;
}

.contact-section {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.contact-card,
.social-card {
  padding: 34px;
}

.contact-main h2 {
  color: var(--blue);
  font-size: clamp(2rem, 4vw, 3rem);
}

.schedule-box {
  max-width: 860px;
}

.schedule-card {
  padding: 16px 26px;
}

.schedule-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.schedule-row:last-child {
  border-bottom: 0;
}

.schedule-row strong {
  color: var(--blue);
  font-size: 1.05rem;
}

.social-card {
  max-width: 820px;
  margin: 0 auto;
}

.footer {
  padding: 34px 0 95px;
  border-top: 1px solid var(--line);
}

.footer h3 {
  margin-top: 0;
  margin-bottom: 10px;
  color: var(--blue);
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 120;
  text-decoration: none;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #ffffff;
  padding: 15px 18px;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 18px 45px rgba(74, 163, 42, 0.24);
}

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

  .intro-grid,
  .highlight-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .topbar-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    gap: 14px;
  }

  .intro-section,
  .section {
    padding: 56px 0;
  }

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

  .contact-card,
  .social-card,
  .schedule-card {
    padding: 24px;
  }

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

  .btn {
    width: 100%;
  }

  .floating-whatsapp {
    right: 12px;
    bottom: 12px;
  }
}
