* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --blue: #0b4d9c;
  --blue-dark: #082f63;
  --blue-soft: #eaf3ff;
  --red: #d71920;
  --red-dark: #a80f15;
  --white: #ffffff;
  --ink: #142033;
  --muted: #637184;
  --line: #d9e2ee;
  --surface: #f6f9fc;
  --shadow: 0 18px 38px rgba(8, 47, 99, 0.14);
  --radius: 8px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

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

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

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.topbar {
  background: var(--blue-dark);
  color: var(--white);
  font-size: 0.94rem;
}

.topbar__inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 0.65rem 0;
}

.topbar__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  font-weight: 700;
}

.topbar__links a {
  color: var(--white);
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav__inner {
  min-height: 78px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.brand,
.footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.brand__logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.brand__text,
.footer__brand span {
  display: grid;
  line-height: 1.2;
}

.brand__text strong,
.footer__brand strong {
  font-size: 1.08rem;
  color: var(--blue-dark);
}

.brand__text small,
.footer__brand small {
  color: var(--muted);
  font-weight: 700;
}

.nav__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  font-weight: 700;
}

.nav__links a {
  color: var(--blue-dark);
}

.hero {
  position: relative;
  min-height: 690px;
  color: var(--white);
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero__media,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__media {
  background: url("images/372726.jpg") center/cover no-repeat;
  transform: scale(1.02);
}

.hero__shade {
  background:
    linear-gradient(90deg, rgba(8, 47, 99, 0.92) 0%, rgba(8, 47, 99, 0.72) 44%, rgba(8, 47, 99, 0.24) 100%),
    linear-gradient(0deg, rgba(8, 47, 99, 0.82), rgba(8, 47, 99, 0.1));
}

.hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(290px, 390px);
  gap: 2rem;
  align-items: end;
  padding: 7rem 0 4rem;
}

.hero__copy {
  max-width: 720px;
}

.eyebrow {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffccd0;
}

h1,
h2,
h3 {
  line-height: 1.1;
  letter-spacing: 0;
}

h1 {
  margin-top: 0.8rem;
  font-size: clamp(2.55rem, 5vw, 5rem);
  max-width: 850px;
}

h2 {
  font-size: clamp(2rem, 3.2vw, 3.1rem);
  margin: 0.55rem 0 1rem;
}

h3 {
  font-size: 1.24rem;
}

.lead {
  max-width: 680px;
  margin-top: 1.2rem;
  font-size: 1.18rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero__actions,
.consultation__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.7rem;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.78rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
}

.btn--primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(215, 25, 32, 0.28);
}

.btn--light {
  background: var(--white);
  color: var(--blue-dark);
}

.btn--outline {
  background: var(--white);
  color: var(--blue-dark);
  border-color: var(--blue);
}

.btn--whatsapp {
  background: #128c7e;
  color: var(--white);
}

.urgent-panel {
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  border-top: 5px solid var(--red);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow);
}

.urgent-panel__label {
  color: var(--red);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.urgent-panel h2 {
  font-size: 1.65rem;
}

.contact-stack,
.details-list,
.feature-list {
  display: grid;
  gap: 0.8rem;
}

.contact-stack a,
.details-list > div,
.feature-list > div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.9rem 1rem;
  background: var(--white);
}

.contact-stack a {
  color: var(--blue-dark);
  font-weight: 800;
}

.fineprint,
.form-note {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.section {
  padding: 5.5rem 0;
}

.section--intro,
.section--services {
  background: var(--surface);
}

.intro-grid,
.consultation__inner,
.contact-grid,
.image-band__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.86fr);
  gap: 3rem;
  align-items: center;
}

.intro-grid p,
.section__header p,
.image-band__content p,
.consultation__inner p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.04rem;
}

.feature-list strong,
.details-list strong {
  display: block;
  color: var(--blue-dark);
}

.feature-list span,
.details-list span,
.details-list a {
  color: var(--muted);
}

.section__header {
  max-width: 760px;
  margin-bottom: 2.4rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.service-card {
  grid-column: span 2;
  display: grid;
  gap: 0.85rem;
  min-height: 230px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.45rem;
  box-shadow: 0 10px 28px rgba(8, 47, 99, 0.08);
}

.service-card--featured {
  grid-column: span 3;
  background: var(--blue-dark);
  color: var(--white);
  border-color: var(--blue-dark);
}

.service-card span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue-dark);
  font-weight: 900;
}

.service-card--featured span {
  background: var(--red);
  color: var(--white);
}

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

.service-card--featured p {
  color: rgba(255, 255, 255, 0.82);
}

.image-band {
  background: linear-gradient(90deg, var(--white) 0%, var(--white) 48%, var(--blue-soft) 48%, var(--blue-soft) 100%);
}

.image-band__photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.mini-stats div {
  border-left: 4px solid var(--red);
  padding: 0.8rem 1rem;
  background: var(--white);
}

.mini-stats strong,
.mini-stats span {
  display: block;
}

.mini-stats strong {
  color: var(--blue-dark);
}

.mini-stats span {
  color: var(--muted);
}

.consultation {
  background: var(--blue-dark);
  color: var(--white);
}

.consultation .eyebrow,
.consultation p {
  color: rgba(255, 255, 255, 0.82);
}

.consultation__actions {
  margin-top: 0;
  justify-content: flex-end;
}

.contact-section {
  background:
    linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.92)),
    url("images/372726.jpg") center/cover no-repeat;
}

.contact-grid {
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 0.72rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 5px solid var(--red);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow);
}

.contact-form label {
  font-weight: 800;
  color: var(--blue-dark);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0.85rem 0.95rem;
  font: inherit;
  color: var(--ink);
  background: #fbfdff;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(11, 77, 156, 0.18);
  border-color: var(--blue);
}

.contact-form textarea {
  resize: vertical;
  min-height: 150px;
}

.contact-form .btn {
  width: 100%;
  margin-top: 0.5rem;
}

.footer {
  background: #071f42;
  color: rgba(255, 255, 255, 0.82);
  padding: 2.8rem 0 1.4rem;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 2rem;
  align-items: start;
}

.footer__brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  background: var(--white);
  border-radius: 6px;
}

.footer__brand strong,
.footer__brand small {
  color: var(--white);
}

.footer__links,
.footer__contact {
  display: grid;
  gap: 0.5rem;
}

.footer a {
  color: rgba(255, 255, 255, 0.86);
}

.footer__bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.92rem;
}

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

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

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

@media (max-width: 980px) {
  .hero__content,
  .intro-grid,
  .consultation__inner,
  .contact-grid,
  .image-band__inner {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero__content {
    padding: 5rem 0 3rem;
  }

  .consultation__actions {
    justify-content: flex-start;
  }

  .service-card,
  .service-card--featured {
    grid-column: span 3;
  }

  .image-band {
    background: var(--blue-soft);
  }

  .footer__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .topbar__inner,
  .nav__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav__inner {
    padding: 0.85rem 0;
  }

  .nav__links {
    width: 100%;
    justify-content: flex-start;
    gap: 0.7rem 1rem;
  }

  .hero__shade {
    background: linear-gradient(90deg, rgba(8, 47, 99, 0.94), rgba(8, 47, 99, 0.76));
  }

  .hero__actions,
  .consultation__actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card--featured {
    grid-column: auto;
    min-height: auto;
  }

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