:root {
  --blue: #1f3cff;
  --blue-dark: #0c1c73;
  --red: #e21f3d;
  --white: #ffffff;
  --text: #1d2440;
  --muted: #5f6785;
  --line: #e8ebf5;
  --soft-blue: #f4f7ff;
  --soft-red: #fff5f7;
  --shadow: 0 22px 60px rgba(18, 35, 98, 0.1);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(226, 31, 61, 0.06), transparent 26%),
    radial-gradient(circle at left 10%, rgba(31, 60, 255, 0.07), transparent 24%),
    #ffffff;
}

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

.page-shell {
  overflow: hidden;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(29, 36, 64, 0.06);
  transition: box-shadow 0.25s ease;
}

.site-header.scrolled {
  box-shadow: 0 14px 40px rgba(16, 29, 84, 0.08);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--text);
}

.brand-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.brand-text strong {
  font-size: 1.12rem;
  letter-spacing: 0.08em;
}

.brand-text span {
  font-size: 0.82rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.site-nav .nav-cta {
  background: var(--blue);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(31, 60, 255, 0.2);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 10px;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  margin: 6px 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hero-section {
  padding: 56px 0 38px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 34px;
  align-items: center;
}

.eyebrow,
.section-tag,
.mini-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--blue);
}

.section-tag.red {
  color: var(--red);
}

.hero-copy h1,
.section-copy h2,
.section-heading h2,
.coverage-copy h2,
.schedule-card h2,
.contact-copy h2 {
  margin: 14px 0 16px;
  line-height: 1.04;
}

.hero-copy h1 {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  max-width: 11ch;
}

.hero-copy p,
.section-copy p,
.section-heading p,
.coverage-copy p,
.schedule-card p,
.contact-copy p,
.info-card p,
.trust-grid span,
.footer-info p,
.service-card p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--muted);
  margin: 0;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0 30px;
}

.hero-highlights span,
.floating-tag {
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
}

.hero-highlights span {
  border: 1px solid rgba(31, 60, 255, 0.12);
  background: var(--white);
  box-shadow: 0 10px 22px rgba(14, 33, 103, 0.05);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover,
.contact-card:hover,
.floating-whatsapp:hover,
.site-nav .nav-cta:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), #4c66ff);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(31, 60, 255, 0.24);
}

.btn-outline {
  border: 1px solid rgba(226, 31, 61, 0.2);
  color: var(--red);
  background: var(--white);
}

.hero-visual {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual::before,
.hero-visual::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  z-index: 0;
}

.hero-visual::before {
  width: 430px;
  height: 430px;
  background: radial-gradient(circle, rgba(31, 60, 255, 0.14), rgba(31, 60, 255, 0.02) 60%, transparent 72%);
}

.hero-visual::after {
  width: 520px;
  height: 520px;
  border: 1px dashed rgba(226, 31, 61, 0.18);
  animation: spin 22s linear infinite;
}

.hero-card {
  position: relative;
  z-index: 1;
  width: min(100%, 420px);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(31, 60, 255, 0.08);
  border-radius: 34px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.hero-card-top {
  border-radius: 26px;
  background: linear-gradient(135deg, #11238e, #2d48ff 80%);
  padding: 34px;
  display: grid;
  place-items: center;
}

.hero-card-top img {
  width: min(100%, 280px);
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.15));
}

.hero-card-body {
  padding-top: 20px;
}

.hero-card-body ul {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 12px;
}

.hero-card-body li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.hero-card-body li::before,
.benefit-box span,
.feature-dot,
.line-dot {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex: 0 0 12px;
  background: linear-gradient(135deg, var(--blue), var(--red));
}

.floating-tag {
  position: absolute;
  z-index: 2;
  background: var(--white);
  box-shadow: 0 14px 35px rgba(20, 34, 80, 0.1);
}

.tag-blue {
  left: 0;
  top: 72px;
  color: var(--blue);
}

.tag-red {
  right: 14px;
  bottom: 78px;
  color: var(--red);
}

.trust-strip {
  padding: 8px 0 32px;
}

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

.trust-grid article,
.info-card,
.service-card,
.benefit-box,
.coverage-card,
.schedule-card,
.contact-wrap,
.feature-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 14px 35px rgba(16, 29, 84, 0.05);
}

.trust-grid article {
  padding: 24px;
}

.trust-grid strong,
.info-card h3,
.service-card h3,
.contact-card strong,
.schedule-card h2,
.coverage-card strong {
  display: block;
}

.section {
  padding: 42px 0;
}

.section-soft {
  background: linear-gradient(180deg, rgba(244, 247, 255, 0.8), rgba(255, 255, 255, 0.85));
}

.split-section,
.coverage-wrap,
.contact-wrap,
.schedule-grid {
  display: grid;
  gap: 26px;
}

.split-section,
.coverage-wrap,
.contact-wrap {
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.feature-panel {
  padding: 28px;
  display: grid;
  gap: 16px;
}

.feature-item,
.coverage-line {
  display: flex;
  align-items: center;
  gap: 14px;
}

.section-heading {
  max-width: 740px;
  margin-bottom: 28px;
}

.cards-grid {
  display: grid;
  gap: 22px;
}

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

.three-cols {
  grid-template-columns: repeat(3, 1fr);
}

.info-card,
.service-card,
.benefit-box,
.schedule-card,
.coverage-card,
.contact-wrap {
  padding: 28px;
}

.card-mark {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--blue), var(--red));
  color: var(--white);
  font-weight: 800;
  margin-bottom: 18px;
}

.info-card h3,
.service-card h3 {
  margin: 0 0 12px;
  font-size: 1.4rem;
}

.service-card {
  min-height: 210px;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: auto -40px -60px auto;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 60, 255, 0.12), transparent 68%);
}

.service-icon {
  width: 68px;
  height: 68px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.4rem;
  margin-bottom: 24px;
  color: var(--blue);
  background: linear-gradient(135deg, rgba(31, 60, 255, 0.12), rgba(226, 31, 61, 0.12));
}

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

.benefit-box {
  display: flex;
  align-items: center;
  gap: 14px;
}

.benefit-box p {
  margin: 0;
  font-weight: 600;
}

.coverage-card {
  position: relative;
}

.coverage-card::before {
  content: '';
  position: absolute;
  inset: 18px;
  border-radius: 22px;
  border: 1px dashed rgba(31, 60, 255, 0.16);
}

.coverage-card > * {
  position: relative;
}

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

.schedule-card {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.schedule-card p {
  font-size: 1.2rem;
}

.schedule-card.urgent {
  background: linear-gradient(135deg, #ffffff, var(--soft-red));
  border-color: rgba(226, 31, 61, 0.18);
}

.contact-section {
  padding-bottom: 58px;
}

.contact-wrap {
  background: linear-gradient(135deg, #ffffff, #f8faff);
}

.contact-cards {
  display: grid;
  gap: 16px;
}

.contact-card {
  text-decoration: none;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 20px 22px;
  box-shadow: 0 12px 26px rgba(16, 29, 84, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-card small {
  display: block;
  color: var(--muted);
  margin-bottom: 8px;
}

.contact-card strong {
  font-size: 1.3rem;
}

.contact-card.whatsapp {
  border-color: rgba(226, 31, 61, 0.16);
}

.site-footer {
  padding: 26px 0 46px;
  border-top: 1px solid rgba(29, 36, 64, 0.06);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.footer-brand strong {
  display: block;
  letter-spacing: 0.08em;
}

.footer-brand span {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
}

.footer-info {
  text-align: right;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  min-height: 58px;
  padding: 0 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 800;
  background: linear-gradient(135deg, var(--red), #ff4d68);
  color: var(--white);
  box-shadow: 0 18px 34px rgba(226, 31, 61, 0.28);
}

.reveal {
  opacity: 1;
  transform: translateY(0);
}

.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.js .reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.22s; }

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@media (max-width: 1024px) {
  .hero-grid,
  .split-section,
  .coverage-wrap,
  .contact-wrap,
  .schedule-grid,
  .benefits-grid,
  .three-cols,
  .two-cols,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    max-width: 100%;
  }

  .hero-visual {
    min-height: auto;
    padding-top: 10px;
  }

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

  .footer-info {
    text-align: left;
  }
}

@media (max-width: 840px) {
  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 16px;
    left: 16px;
    display: grid;
    gap: 14px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(16, 29, 84, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  }

  .site-nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav .nav-cta {
    text-align: center;
  }

  .hero-section {
    padding-top: 28px;
  }

  .hero-copy h1 {
    font-size: clamp(2.3rem, 9vw, 3.4rem);
  }

  .tag-blue,
  .tag-red {
    position: static;
    display: inline-flex;
    margin-top: 16px;
  }

  .hero-visual {
    display: block;
  }

  .hero-visual::after {
    width: 350px;
    height: 350px;
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 560px) {
  .brand-text span,
  .site-nav a,
  .hero-card-body li,
  .hero-highlights span,
  .floating-tag,
  .btn,
  .contact-card strong,
  .schedule-card p,
  .benefit-box p {
    font-size: 0.95rem;
  }

  .brand-logo {
    width: 48px;
    height: 48px;
  }

  .hero-card,
  .trust-grid article,
  .info-card,
  .service-card,
  .benefit-box,
  .coverage-card,
  .schedule-card,
  .contact-wrap,
  .feature-panel {
    border-radius: 22px;
  }

  .hero-card-top {
    padding: 24px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .floating-whatsapp {
    left: 16px;
    right: 16px;
    bottom: 14px;
  }
}
