:root {
  --navy: #081a2f;
  --blue: #123d63;
  --teal: #0b6b6b;
  --gold: #d9b46f;
  --cream: #f8f2e8;
  --white: #ffffff;
  --gray: #edf2f5;
  --text: #263342;
  --muted: #647386;
  --shadow: 0 24px 65px rgba(8, 26, 47, .16);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1120px, calc(100% - 34px)); margin: 0 auto; }
.section-pad { padding: 88px 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(8, 26, 47, .08);
}
.navbar {
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand { display: flex; align-items: center; gap: 12px; font-family: 'Montserrat', sans-serif; font-weight: 900; color: var(--navy); }
.brand-mark {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold), #fff1ca);
  box-shadow: 0 12px 28px rgba(217,180,111,.34);
}
.brand-text { font-size: clamp(1rem, 2vw, 1.22rem); }
.menu { display: flex; align-items: center; gap: 8px; }
.menu a {
  padding: 12px 14px;
  border-radius: 999px;
  font-weight: 700;
  color: var(--blue);
  transition: .25s ease;
}
.menu a:hover { background: var(--gray); transform: translateY(-1px); }
.nav-call { background: var(--navy) !important; color: var(--white) !important; box-shadow: 0 13px 30px rgba(8,26,47,.18); }
.menu-toggle { display: none; border: 0; background: transparent; cursor: pointer; padding: 10px; }
.menu-toggle span { display: block; width: 28px; height: 3px; background: var(--navy); margin: 5px 0; border-radius: 999px; }

.hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 5% 12%, rgba(217, 180, 111, .28), transparent 28%),
    linear-gradient(135deg, #f9fbfc 0%, #eaf4f4 52%, #fff8ec 100%);
  overflow: hidden;
}
.hero-bg-shape { position: absolute; border-radius: 999px; opacity: .38; filter: blur(2px); }
.shape-one { width: 460px; height: 460px; right: -150px; top: 90px; background: var(--teal); }
.shape-two { width: 340px; height: 340px; left: -110px; bottom: 10px; background: var(--gold); }
.hero-grid { display: grid; grid-template-columns: 1.03fr .97fr; gap: 54px; align-items: center; position: relative; z-index: 1; }
.eyebrow { margin: 0 0 16px; color: var(--teal); font-family: 'Montserrat', sans-serif; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; font-size: .78rem; }
h1, h2, h3 { font-family: 'Montserrat', sans-serif; color: var(--navy); line-height: 1.06; margin-top: 0; }
h1 { font-size: clamp(3.2rem, 7vw, 6.8rem); letter-spacing: -.07em; margin-bottom: 18px; }
h2 { font-size: clamp(2.15rem, 4.6vw, 4rem); letter-spacing: -.045em; margin-bottom: 18px; }
h3 { font-size: 1.35rem; margin-bottom: 12px; }
p { line-height: 1.72; }
.hero-lead { font-size: clamp(1.35rem, 2.8vw, 2.1rem); color: var(--blue); font-weight: 700; margin: 0 0 14px; }
.hero-text { font-size: 1.08rem; color: var(--muted); max-width: 620px; margin-bottom: 28px; }
.hero-actions, .cta-actions, .contact-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 15px 24px;
  border-radius: 999px;
  font-weight: 900;
  font-family: 'Montserrat', sans-serif;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn:hover { transform: translateY(-3px); }
.btn.primary { background: linear-gradient(135deg, var(--teal), var(--blue)); color: var(--white); box-shadow: 0 18px 42px rgba(11,107,107,.25); }
.btn.secondary { background: var(--white); color: var(--navy); border: 1px solid rgba(8,26,47,.12); }
.btn.light { background: var(--white); color: var(--navy); }

.hero-card {
  background: rgba(255, 255, 255, .88);
  border: 1px solid rgba(255,255,255,.8);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  min-height: 535px;
  display: grid;
  align-content: space-between;
  position: relative;
  overflow: hidden;
}
.hero-card::before { content: ''; position: absolute; inset: -40% -30% auto auto; width: 360px; height: 360px; background: rgba(217,180,111,.25); border-radius: 50%; }
.hero-card-top { display: flex; align-items: center; gap: 10px; font-weight: 900; color: var(--blue); position: relative; z-index: 1; }
.pulse-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 8px rgba(11,107,107,.12); }
.service-orbit {
  position: relative;
  width: min(430px, 100%);
  aspect-ratio: 1;
  margin: 0 auto;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(18,61,99,.07), rgba(11,107,107,.10));
  border: 1px dashed rgba(18,61,99,.22);
}
.orbit-center {
  position: absolute; inset: 50% auto auto 50%; transform: translate(-50%, -50%);
  width: 136px; height: 136px; border-radius: 40px;
  display: grid; place-items: center;
  background: var(--navy); color: var(--gold);
  font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 2rem;
  box-shadow: 0 24px 50px rgba(8,26,47,.28);
}
.orbit-item {
  position: absolute;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 15px 35px rgba(8,26,47,.12);
  color: var(--blue);
  font-weight: 900;
  font-size: .9rem;
}
.item-1 { top: 10%; left: 7%; }
.item-2 { top: 11%; right: 3%; }
.item-3 { bottom: 16%; left: 2%; }
.item-4 { bottom: 9%; right: 4%; }
.item-5 { top: 48%; right: -3%; }
.phone-card { position: relative; z-index: 1; display: block; text-align: center; background: var(--cream); border-radius: 22px; padding: 18px; color: var(--navy); font-family: 'Montserrat', sans-serif; font-weight: 900; }

.intro { background: var(--white); }
.split-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 44px; align-items: start; }
.intro-panel, .contact-card {
  background: var(--cream);
  border: 1px solid rgba(217,180,111,.36);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: 0 20px 55px rgba(8,26,47,.08);
}
.intro-panel p:first-child { margin-top: 0; }
.intro-panel p:last-child { margin-bottom: 0; }
.center-heading { text-align: center; max-width: 760px; margin: 0 auto 44px; }
.center-heading p { color: var(--muted); margin-bottom: 0; }
.services { background: linear-gradient(180deg, #f6fafb 0%, #ffffff 100%); }
.cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.service-card {
  min-height: 330px;
  background: var(--white);
  border: 1px solid rgba(8,26,47,.08);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 18px 45px rgba(8,26,47,.07);
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: rgba(217,180,111,.45); }
.service-card p { color: var(--muted); margin-bottom: 22px; }
.service-card a { margin-top: auto; color: var(--teal); font-weight: 900; font-family: 'Montserrat', sans-serif; }
.icon-wrap {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(217,180,111,.22), rgba(11,107,107,.12));
  font-size: 2rem;
  margin-bottom: 22px;
}
.wide-card { grid-column: span 2; }
.feature-strip { background: var(--navy); color: var(--white); }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature-box {
  border-radius: var(--radius);
  padding: 30px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}
.feature-box span { color: var(--gold); font-family: 'Montserrat', sans-serif; font-size: 2.4rem; font-weight: 900; }
.feature-box h3 { color: var(--white); margin-top: 14px; }
.feature-box p { color: rgba(255,255,255,.78); margin-bottom: 0; }
.cta { background: linear-gradient(135deg, #fff8ed, #eaf6f6); }
.cta-card {
  border-radius: 38px;
  padding: clamp(30px, 5vw, 58px);
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  box-shadow: var(--shadow);
}
.cta-card .eyebrow, .cta-card h2 { color: var(--white); }
.cta-card p { color: rgba(255,255,255,.82); margin-bottom: 0; max-width: 710px; }
.contact { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr .95fr; gap: 36px; align-items: center; }
.contact-card h3 { font-size: 2rem; }
.contact-card a:not(.btn) { color: var(--teal); font-weight: 900; }
.footer { background: #061221; color: rgba(255,255,255,.76); padding: 42px 0; }
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: center; }
.footer h2 { color: var(--white); margin-bottom: 10px; }
.footer a { color: var(--gold); font-weight: 900; }
.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 110;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #20b65a;
  color: var(--white);
  font-size: 1.65rem;
  font-weight: 900;
  box-shadow: 0 18px 42px rgba(0,0,0,.25);
}
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .hero { min-height: auto; }
  .hero-grid, .split-grid, .contact-grid, .cta-card { grid-template-columns: 1fr; }
  .hero-card { min-height: 480px; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .section-pad { padding: 64px 0; }
  .navbar { min-height: 70px; }
  .menu-toggle { display: block; }
  .menu {
    position: absolute;
    top: 70px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: var(--white);
    border: 1px solid rgba(8,26,47,.1);
    border-radius: 22px;
    padding: 14px;
    box-shadow: var(--shadow);
  }
  .menu.open { display: flex; }
  .menu a { text-align: center; }
  h1 { font-size: clamp(3rem, 14vw, 4.6rem); }
  h2 { font-size: clamp(2rem, 10vw, 3rem); }
  .hero-grid { gap: 34px; }
  .hero-actions, .cta-actions, .contact-actions { align-items: stretch; flex-direction: column; }
  .btn { width: 100%; }
  .cards-grid { grid-template-columns: 1fr; }
  .wide-card { grid-column: auto; }
  .service-orbit { width: min(320px, 100%); }
  .orbit-center { width: 108px; height: 108px; border-radius: 32px; font-size: 1.55rem; }
  .orbit-item { font-size: .75rem; padding: 9px 12px; }
  .item-5 { right: 0; }
  .hero-card, .intro-panel, .contact-card { padding: 24px; }
}

@media (max-width: 430px) {
  .brand-text { max-width: 170px; line-height: 1.1; }
  .hero-card { min-height: 430px; }
  .service-orbit { width: 270px; }
  .orbit-item { font-size: .68rem; }
}
