:root {
  --white: #ffffff;
  --text: #243047;
  --muted: #62708a;
  --blue: #4b6fe9;
  --blue-dark: #315bcf;
  --green: #46be44;
  --green-dark: #76b22d;
  --soft-blue: #eef2ff;
  --soft-green: #eff9e9;
  --line: #dfe7f4;
  --shadow: 0 18px 48px rgba(74, 104, 210, 0.13);
  --radius-xl: 34px;
  --radius-lg: 28px;
  --radius-md: 20px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: #fff;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(223,231,244,.95);
  backdrop-filter: blur(10px);
}
.topbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 16px 0;
}
.brand {
  text-decoration: none;
  color: var(--blue-dark);
  font-weight: 900;
  font-size: 1.2rem;
}
.nav { display: flex; gap: 22px; flex-wrap: wrap; }
.nav a {
  text-decoration: none;
  font-weight: 700;
}

.banner-hero {
  padding: 26px 0 18px;
  background:
    radial-gradient(circle at 0% 0%, rgba(70,190,68,.11), transparent 28%),
    radial-gradient(circle at 100% 0%, rgba(75,111,233,.12), transparent 30%),
    #fff;
}
.banner-shell {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #fff;
}
.banner-image { width: 100%; height: auto; }

.intro-section, .section { padding: 72px 0; }
.decorated-section { position: relative; overflow: hidden; }
.shape {
  position: absolute;
  z-index: 0;
  filter: blur(0);
  pointer-events: none;
}
.shape-left {
  width: 260px;
  height: 260px;
  left: -110px;
  top: 90px;
  border: 18px solid rgba(75,111,233,.18);
  border-radius: 55% 45% 60% 40%;
}
.shape-right {
  width: 220px;
  height: 220px;
  right: -70px;
  top: 30px;
  background: rgba(70,190,68,.10);
  border-radius: 42% 58% 62% 38%;
}
.intro-grid,
.feature-grid,
.contact-grid,
.footer-grid,
.service-detail-grid,
.services-layout {
  display: grid;
  gap: 28px;
}
.intro-grid,
.feature-grid {
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  z-index: 1;
}
.contact-grid { grid-template-columns: 1.15fr .85fr; }
.footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
.services-layout { grid-template-columns: 320px 1fr; align-items: start; }
.service-detail-grid { grid-template-columns: 1fr 340px; align-items: center; }

.pill {
  display: inline-block;
  margin-bottom: 14px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--soft-blue);
  color: var(--blue-dark);
  font-size: .92rem;
  font-weight: 800;
}
.pill-green { background: var(--soft-green); color: #4f9625; }
.section-heading { margin-bottom: 34px; }
.section-heading.centered, .social-card, .no-margin { text-align: center; }
.section-heading h2,
.feature-copy h2,
.contact-card h2,
.social-card h2,
.intro-copy h1 { margin: 0; line-height: 1.05; }
.section-heading h2 { font-size: clamp(2rem, 4vw, 3rem); }
.section-subtext {
  margin: 12px auto 0;
  max-width: 720px;
  color: var(--muted);
  line-height: 1.7;
}
.intro-copy h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: var(--blue);
}
.intro-name {
  margin: 14px 0 6px;
  font-size: 1.18rem;
  font-weight: 800;
}
.intro-role {
  margin: 0 0 14px;
  font-size: 1rem;
  font-weight: 800;
  color: var(--green-dark);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.intro-text,
.contact-card p,
.feature-copy p,
.footer p,
.schedule-row span,
.service-detail p { color: var(--muted); line-height: 1.75; font-size: 1.02rem; }
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 24px; }
.btn {
  display: inline-flex;
  min-width: 170px;
  justify-content: center;
  align-items: center;
  padding: 15px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--green), #72bf2e);
  color: #fff;
  box-shadow: 0 18px 36px rgba(70,190,68,.23);
}
.btn-secondary {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: #fff;
  box-shadow: 0 18px 36px rgba(75,111,233,.21);
}

.intro-visual-card,
.tabs-panel,
.tab-content-wrap,
.service-detail,
.service-image-card,
.feature-image-card,
.contact-card,
.schedule-card,
.social-card,
.feature-copy {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}
.intro-visual-card {
  padding: 16px;
  position: relative;
}
.intro-main-image { border-radius: 24px; width: 100%; }
.mini-card {
  position: absolute;
  right: 28px;
  bottom: 28px;
  display: grid;
  gap: 4px;
  padding: 14px 18px;
  background: rgba(255,255,255,.95);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(36,48,71,.08);
}
.mini-card strong { color: var(--blue-dark); }

.services-section {
  background:
    linear-gradient(180deg, #f9fbff 0%, #ffffff 100%);
}
.tabs-panel {
  padding: 18px;
  display: grid;
  gap: 12px;
  background:
    radial-gradient(circle at top right, rgba(75,111,233,.08), transparent 45%),
    #fff;
}
.tab-button {
  border: 0;
  text-align: left;
  padding: 18px 20px;
  border-radius: 22px;
  background: #f7f9ff;
  color: var(--text);
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  transition: all .2s ease;
}
.tab-button:hover,
.tab-button.active {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: #fff;
  transform: translateX(2px);
}
.tab-content-wrap { padding: 18px; }
.service-detail { display: none; }
.service-detail.active { display: block; }
.service-badge {
  display: inline-block;
  margin-bottom: 12px;
  font-weight: 800;
  color: var(--green-dark);
  background: var(--soft-green);
  padding: 10px 16px;
  border-radius: 999px;
}
.service-detail h3 {
  margin: 0 0 14px;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--blue-dark);
}
.service-image-card {
  padding: 14px;
  min-height: 290px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.service-image-card img {
  width: 100%;
  border-radius: 22px;
  object-fit: cover;
}
.service-color-card {
  padding: 28px;
}
.service-color-blue {
  background: linear-gradient(135deg, rgba(75,111,233,.95), rgba(49,91,207,.95));
  color: #fff;
}
.service-color-green {
  background: linear-gradient(135deg, rgba(70,190,68,.97), rgba(118,178,45,.95));
  color: #fff;
}
.service-color-neutral {
  background: linear-gradient(135deg, #f4f8ff, #eef7ea);
}
.quote-card {
  font-size: 1.4rem;
  line-height: 1.45;
  font-weight: 800;
}

.feature-section {
  background:
    radial-gradient(circle at left bottom, rgba(70,190,68,.10), transparent 22%),
    radial-gradient(circle at right top, rgba(75,111,233,.12), transparent 28%),
    #fff;
}
.feature-image-card,
.feature-copy,
.contact-card,
.social-card { padding: 18px; }
.feature-image-card img { border-radius: 24px; width: 100%; }
.feature-copy {
  padding: 36px;
  background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
}
.feature-copy h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  color: var(--blue-dark);
  margin-bottom: 14px;
}
.info-list { display: grid; gap: 14px; margin-top: 20px; }
.info-item {
  display: grid;
  gap: 4px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
}
.info-item strong { color: var(--green-dark); }

.contact-section {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}
.contact-card { padding: 34px; }
.contact-main h2 {
  color: var(--blue-dark);
  font-size: clamp(2rem, 4vw, 3rem);
}
.schedule-box { max-width: 860px; }
.schedule-card { padding: 18px 26px; }
.schedule-row {
  display: flex;
  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-dark); }
.social-card {
  max-width: 820px;
  margin: 0 auto;
  padding: 34px;
}
.footer {
  padding: 36px 0 96px;
  border-top: 1px solid var(--line);
}
.footer h3 {
  margin: 0 0 12px;
  color: var(--blue-dark);
}
.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 120;
  background: linear-gradient(135deg, var(--green), #72bf2e);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  padding: 15px 18px;
  border-radius: 999px;
  box-shadow: 0 18px 42px rgba(70,190,68,.24);
}

@media (max-width: 1024px) {
  .intro-grid,
  .feature-grid,
  .contact-grid,
  .footer-grid,
  .services-layout,
  .service-detail-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; }
  .feature-copy, .contact-card, .social-card, .tab-content-wrap, .tabs-panel { padding: 22px; }
  .schedule-card { padding: 16px 20px; }
  .schedule-row { flex-direction: column; align-items: flex-start; }
  .btn { width: 100%; }
  .shape-left, .shape-right { display: none; }
  .mini-card {
    position: static;
    margin-top: 12px;
  }
  .floating-whatsapp { right: 12px; bottom: 12px; }
}


.promo-image-section{padding-top:0;}
.promo-image-card{background:#fff;border-radius:32px;box-shadow:0 18px 50px rgba(0,0,0,.08);overflow:hidden;padding:16px;}
.promo-image{display:block;width:100%;height:auto;border-radius:22px;}
