:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-soft: #f6f9ff;
  --text: #263247;
  --muted: #667085;
  --blue: #6ab7ff;
  --blue-deep: #2878c8;
  --purple: #a98cff;
  --purple-deep: #6d57c8;
  --red: #ef6a74;
  --red-deep: #d84655;
  --line: rgba(80, 92, 120, 0.14);
  --shadow: 0 20px 55px rgba(45, 62, 102, 0.12);
  --radius: 8px;
  --header-h: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  background:
    radial-gradient(circle at 12% 4%, rgba(106, 183, 255, 0.18), transparent 26rem),
    radial-gradient(circle at 88% 10%, rgba(169, 140, 255, 0.16), transparent 24rem),
    var(--bg);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
iframe {
  max-width: 100%;
  display: block;
}

button,
input {
  font: inherit;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.section {
  padding: 88px 0;
}

.section-tint {
  background:
    linear-gradient(135deg, rgba(106, 183, 255, 0.12), rgba(169, 140, 255, 0.1) 52%, rgba(239, 106, 116, 0.08)),
    #fbfdff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
}

.brand-logo-mark {
  width: clamp(180px, 17vw, 240px);
  height: 58px;
  max-height: calc(var(--header-h) - 20px);
  flex: 0 0 auto;
  display: none;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.brand-logo-mark.has-logo {
  display: block;
}

.footer-logo-mark {
  width: clamp(180px, 17vw, 240px);
  height: 64px;
  display: none;
  margin: 0 0 16px;
  background-position: left center;
  background-repeat: no-repeat;
  background-size: contain;
}

.footer-logo-mark.has-logo {
  display: block;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
  color: #3f4c63;
  font-size: 0.94rem;
  font-weight: 650;
}

.nav-links a {
  padding: 10px 0;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--red-deep);
}

.nav-actions,
.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 17px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.whatsapp-logo {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.btn-primary.whatsapp-btn .whatsapp-logo,
.float-btn.whatsapp .whatsapp-logo {
  padding: 2px;
  border-radius: 999px;
  background: #fff;
}


.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--purple-deep));
  box-shadow: 0 14px 30px rgba(216, 70, 85, 0.22);
}

.btn-soft {
  color: #175e37;
  background: #e9f9f0;
  border-color: rgba(37, 211, 102, 0.24);
}

.btn-outline {
  color: var(--blue-deep);
  background: #fff;
  border-color: rgba(40, 120, 200, 0.26);
}

.btn-ghost {
  color: #5744a8;
  background: rgba(169, 140, 255, 0.12);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  display: block;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--text);
}

.hero {
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  padding: 70px 0 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  align-items: center;
  gap: 52px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--red-deep);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 12ch;
  margin-bottom: 22px;
  font-size: clamp(2.55rem, 6.4vw, 5.45rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
  line-height: 1.28;
}

.hero-lead {
  max-width: 620px;
  color: #46556f;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.hero-note,
.section-heading p,
.text-panel,
.contact-section p {
  color: var(--muted);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.tag-list span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #4d5a72;
  background: rgba(255, 255, 255, 0.75);
  font-size: 0.88rem;
  font-weight: 750;
}

.image-placeholder {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(106, 183, 255, 0.86), rgba(169, 140, 255, 0.78) 52%, rgba(239, 106, 116, 0.76)),
    #eef6ff;
  background-position: center;
  background-size: cover;
}

.image-placeholder.has-image > * {
  display: none;
}

.hero-visual {
  min-height: 560px;
  border-radius: 30px;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hero-visual::before,
.hero-visual::after,
.event-image::before {
  position: absolute;
  content: "";
  pointer-events: none;
}

.hero-visual::before {
  inset: 28px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 22px;
}

.hero-visual::after {
  right: -54px;
  bottom: -54px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.visual-card {
  position: absolute;
  z-index: 1;
  max-width: 210px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: var(--radius);
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 20px 45px rgba(38, 50, 71, 0.18);
  backdrop-filter: blur(14px);
}

.visual-card strong,
.visual-card span {
  display: block;
}

.visual-card strong {
  font-size: 1.35rem;
}

.visual-card-main {
  left: 34px;
  bottom: 36px;
}

.visual-card-side {
  top: 42px;
  right: 34px;
}

.trust-strip {
  padding: 18px 0;
  background: #fff;
  border-block: 1px solid var(--line);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.mini-card,
.service-card,
.event-card,
.process-card,
.text-panel,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 34px rgba(45, 62, 102, 0.08);
}

.mini-card {
  min-height: 90px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  font-weight: 800;
}

.icon {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  color: var(--purple-deep);
  background: linear-gradient(135deg, rgba(106, 183, 255, 0.18), rgba(169, 140, 255, 0.2));
}

svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 44px;
  align-items: start;
}

.text-panel {
  padding: 30px;
  font-size: 1.06rem;
}

.text-panel p:last-child,
.contact-card p:last-child {
  margin-bottom: 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.card-grid,
.event-grid,
.process-grid {
  display: grid;
  gap: 18px;
}

.services-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card,
.process-card {
  padding: 24px;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.service-tags span {
  max-width: 100%;
  padding: 7px 10px;
  border: 1px solid rgba(40, 120, 200, 0.16);
  border-radius: 999px;
  color: #485772;
  background: rgba(106, 183, 255, 0.1);
  font-size: 0.82rem;
  font-weight: 750;
}

.info-note {
  margin: 22px 0 0;
  padding: 16px 18px;
  border: 1px solid rgba(109, 87, 200, 0.18);
  border-radius: var(--radius);
  color: #556176;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 28px rgba(45, 62, 102, 0.07);
  font-size: 0.94rem;
}

.event-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.event-card {
  overflow: hidden;
}

.event-card h3 {
  min-height: 58px;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 18px;
}

.event-image {
  min-height: 210px;
}

.event-image::before {
  inset: 22px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 18px;
}

.event-card.compact {
  min-height: 128px;
  display: flex;
  align-items: end;
  background: linear-gradient(135deg, rgba(106, 183, 255, 0.16), rgba(239, 106, 116, 0.12));
}

.process-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.process-card {
  min-height: 178px;
}

.location-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 34px;
  align-items: center;
}

.address {
  color: #46556f;
  font-weight: 750;
}

.map-wrap {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  width: 100%;
  height: 380px;
  border: 0;
}

.contact-section {
  background:
    linear-gradient(135deg, rgba(106, 183, 255, 0.14), rgba(169, 140, 255, 0.12) 55%, rgba(239, 106, 116, 0.12)),
    #fff;
}

.contact-card {
  padding: 28px;
}

.contact-card p {
  display: grid;
  grid-template-columns: 155px 1fr;
  gap: 14px;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.contact-card strong {
  color: #1f2a3d;
}

.contact-card a,
.contact-card span {
  color: var(--muted);
}

.site-footer {
  padding: 54px 0 24px;
  color: #43506a;
  background: linear-gradient(135deg, #f7fbff, #f8f6ff 58%, #fff7f8);
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 28px;
}

.site-footer h2,
.site-footer h3 {
  color: #1f2a3d;
}

.site-footer a,
.site-footer span {
  display: block;
  margin: 7px 0;
}

.copyright {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
}

.fixed-actions {
  position: fixed;
  right: max(14px, env(safe-area-inset-right));
  bottom: max(16px, env(safe-area-inset-bottom));
  z-index: 60;
  display: grid;
  gap: 10px;
}

.float-btn {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  color: #fff;
  box-shadow: 0 12px 28px rgba(36, 49, 75, 0.22);
  cursor: pointer;
}

.float-btn.whatsapp {
  background: #fff;
}

.float-btn.phone {
  background: var(--blue-deep);
}

.float-btn.to-top {
  background: var(--purple-deep);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.float-btn.to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.float-btn svg {
  width: 24px;
  height: 24px;
}
.float-btn .whatsapp-logo {
  width: 32px;
  height: 32px;
}

@media (max-width: 1080px) {
  .nav-panel {
    gap: 16px;
  }

  .nav-links {
    gap: 12px;
    font-size: 0.88rem;
  }

  .nav-actions .btn {
    padding-inline: 13px;
  }

  .trust-grid,
  .process-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .services-grid,
  .event-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}



@media (max-width: 860px) {
  :root {
    --header-h: 68px;
  }

  .container {
    width: min(100% - 28px, 1160px);
  }

  .section {
    padding: 64px 0;
  }

  .menu-toggle {
    display: block;
  }

  .nav-panel {
    position: fixed;
    top: var(--header-h);
    left: 14px;
    right: 14px;
    display: grid;
    gap: 14px;
    max-height: calc(100vh - var(--header-h) - 20px);
    padding: 18px;
    overflow: auto;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  body.menu-open .nav-panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links,
  .nav-actions {
    display: grid;
    gap: 8px;
  }

  .nav-actions .btn {
    width: 100%;
  }

  .hero {
    min-height: auto;
    padding-top: 46px;
  }

  .hero-grid,
  .split,
  .location-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  h1 {
    max-width: 13ch;
  }

  .hero-visual {
    min-height: 390px;
    border-radius: 22px;
  }

  .trust-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}



@media (max-width: 560px) {
  .brand-logo-mark {
    width: clamp(132px, 42vw, 168px);
    height: 44px;
  }

  .footer-logo-mark {
    width: clamp(132px, 42vw, 168px);
    height: 48px;
  }

  .hero-actions,
  .nav-actions {
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .tag-list span {
    max-width: 100%;
  }

  .trust-grid,
  .services-grid,
  .event-grid,
  .process-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .mini-card {
    min-height: 76px;
  }

  .event-image {
    min-height: 190px;
  }

  .contact-card p {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .fixed-actions {
    right: 10px;
    bottom: 12px;
  }

  .float-btn {
    width: 48px;
    height: 48px;
  }
}


