:root {
  --blue: #0b3d70;
  --blue-soft: #1d6e9e;
  --teal: #15a7a4;
  --teal-dark: #087d82;
  --mint: #e8faf8;
  --cream: #fffaf1;
  --white: #ffffff;
  --text: #17324a;
  --muted: #627386;
  --line: rgba(11, 61, 112, 0.13);
  --shadow: 0 24px 60px rgba(12, 52, 86, 0.15);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f7fdff 0%, #ffffff 42%, #f4fbfb 100%);
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

.section-padding {
  padding: 86px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.navbar {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: var(--blue);
}

.brand-logo {
  width: 62px;
  height: 62px;
  object-fit: contain;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(18, 87, 132, 0.12);
}

.brand-text {
  font-size: 1rem;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-links a {
  padding: 10px 15px;
  color: var(--muted);
  font-weight: 700;
  border-radius: 999px;
  transition: 0.25s ease;
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--blue);
  background: var(--mint);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 14px;
  background: var(--mint);
  cursor: pointer;
  padding: 11px;
}

.menu-toggle span {
  display: block;
  height: 3px;
  margin: 5px 0;
  background: var(--blue);
  border-radius: 10px;
}

.hero {
  position: relative;
  min-height: calc(100vh - 78px);
  display: grid;
  place-items: center;
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(circle at 18% 20%, rgba(21, 167, 164, 0.18), transparent 35%),
    radial-gradient(circle at 82% 18%, rgba(29, 110, 158, 0.16), transparent 34%),
    linear-gradient(135deg, #f8ffff 0%, #fff8ed 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(21, 167, 164, 0.16);
  border-radius: 34px;
  pointer-events: none;
}

.decor {
  position: absolute;
  border-radius: 999px;
  opacity: 0.7;
  filter: blur(1px);
}

.decor-one {
  width: 180px;
  height: 180px;
  left: -60px;
  bottom: 70px;
  background: rgba(21, 167, 164, 0.14);
}

.decor-two {
  width: 150px;
  height: 150px;
  right: -50px;
  top: 130px;
  background: rgba(11, 61, 112, 0.11);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(880px, calc(100% - 34px));
}

.logo-card {
  width: min(360px, 78vw);
  margin: 0 auto 26px;
  padding: 20px;
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  border: 1px solid rgba(11, 61, 112, 0.1);
}

.logo-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 24px;
}

.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--teal-dark);
  background: rgba(21, 167, 164, 0.11);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(2.35rem, 6vw, 5.25rem);
  line-height: 0.98;
  color: var(--blue);
  letter-spacing: -0.06em;
}

.hero-text {
  width: min(720px, 100%);
  margin: 0 auto 30px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2.4vw, 1.25rem);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

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

.btn-primary,
.btn-full {
  background: linear-gradient(135deg, var(--teal), var(--blue-soft));
  color: var(--white);
  box-shadow: 0 14px 28px rgba(21, 128, 152, 0.24);
}

.btn-secondary {
  background: var(--white);
  color: var(--blue);
  border-color: rgba(11, 61, 112, 0.15);
}

.two-columns {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: center;
}

.section-copy h2,
.section-heading h2,
.support-card h2,
.location-box h2,
.contact-copy h2 {
  color: var(--blue);
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}

.section-copy p:not(.section-label),
.section-heading p,
.support-card p,
.location-box p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.visual-panel {
  position: relative;
  padding: 18px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(232, 250, 248, 0.9));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.large-card {
  min-height: 220px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 24px;
  background:
    radial-gradient(circle at 80% 20%, rgba(21, 167, 164, 0.18), transparent 28%),
    linear-gradient(135deg, #ffffff, #f6fffe);
}

.large-card span {
  color: var(--teal-dark);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
}

.large-card strong {
  color: var(--blue);
  font-size: 2rem;
  line-height: 1.05;
  margin: 8px 0;
}

.large-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 12px;
}

.mini-card {
  min-height: 92px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 14px;
  border-radius: 20px;
  background: var(--white);
  color: var(--blue);
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(12, 52, 86, 0.08);
}

.services {
  background:
    linear-gradient(180deg, rgba(232, 250, 248, 0.62), rgba(255, 255, 255, 0.92)),
    radial-gradient(circle at 10% 10%, rgba(21, 167, 164, 0.12), transparent 28%);
}

.section-heading {
  text-align: center;
  width: min(780px, 100%);
  margin: 0 auto 42px;
}

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

.service-card {
  min-height: 260px;
  padding: 24px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  box-shadow: 0 16px 34px rgba(12, 52, 86, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  border-radius: 16px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-soft), var(--teal));
  font-weight: 900;
}

.service-card h3 {
  color: var(--blue);
  font-size: 1.18rem;
  line-height: 1.2;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.support {
  position: relative;
  overflow: hidden;
}

.support::before {
  content: "";
  position: absolute;
  inset: 18% auto auto -110px;
  width: 230px;
  height: 230px;
  border-radius: 999px;
  background: rgba(21, 167, 164, 0.13);
}

.support-wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: stretch;
}

.support-card,
.support-list,
.location-box,
.contact-card {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.support-card {
  padding: 40px;
}

.support-list {
  padding: 28px;
  display: grid;
  gap: 14px;
}

.support-list div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(232, 250, 248, 0.92), rgba(255, 250, 241, 0.8));
  color: var(--blue);
  font-weight: 800;
}

.support-list span {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--teal);
  flex: 0 0 auto;
}

.location {
  background: linear-gradient(135deg, rgba(11, 61, 112, 0.96), rgba(8, 125, 130, 0.9));
  color: var(--white);
}

.location-box {
  padding: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.location-box h2,
.location-box p,
.location-box .section-label {
  color: var(--white);
}

.location-box .section-label {
  background: rgba(255, 255, 255, 0.14);
}

.location-box p {
  margin-bottom: 0;
  opacity: 0.9;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  align-items: center;
}

.contact-card {
  padding: 12px;
}

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

.contact-row span {
  color: var(--muted);
  font-weight: 800;
}

.contact-row a,
.contact-row strong {
  color: var(--blue);
  text-align: right;
}

.btn-full {
  width: calc(100% - 24px);
  margin: 18px 12px 12px;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  padding: 14px 18px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, #19b767, #0b8d53);
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(16, 139, 80, 0.32);
}

.footer {
  padding: 34px 0;
  color: var(--white);
  background: #082b4e;
}

.footer-content {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-content img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 18px;
  background: var(--white);
}

.footer-content p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

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

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

@media (max-width: 980px) {
  .two-columns,
  .support-wrap,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 720px) {
  .section-padding {
    padding: 64px 0;
  }

  .navbar {
    min-height: 72px;
  }

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

  .brand-text {
    font-size: 0.9rem;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 72px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    text-align: center;
  }

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

  .hero::before {
    inset: 14px;
    border-radius: 24px;
  }

  .logo-card {
    padding: 14px;
    border-radius: 26px;
  }

  h1 {
    font-size: clamp(2.25rem, 12vw, 3.7rem);
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

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

  .support-card,
  .location-box {
    padding: 28px;
  }

  .contact-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }

  .contact-row a,
  .contact-row strong {
    text-align: left;
  }

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

  .footer-content {
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
