:root {
  --sidebar-width: clamp(320px, 22vw, 380px);
  --blue-950: #06263d;
  --blue-850: #073a59;
  --teal-700: #046273;
  --teal-500: #149cad;
  --red-600: #ed1c24;
  --ice-100: #eef9fb;
  --ice-50: #f7fcfd;
  --gray-900: #172532;
  --gray-650: #56616b;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(6, 38, 61, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  color: var(--gray-900);
  background: var(--ice-50);
  line-height: 1.6;
}

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

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

.site-header {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 20;
  display: flex;
  width: var(--sidebar-width);
  min-height: 100svh;
  align-items: stretch;
  justify-content: flex-start;
  flex-direction: column;
  gap: 44px;
  padding: clamp(28px, 4vw, 58px) clamp(18px, 2vw, 32px) 32px;
  background: rgba(255, 255, 255, 0.94);
  border-right: 1px solid rgba(4, 98, 115, 0.12);
  backdrop-filter: blur(16px);
  transition: box-shadow 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 12px 0 34px rgba(6, 38, 61, 0.09);
}

.brand img {
  width: min(100%, 245px);
  height: auto;
  margin-inline: auto;
}

.main-nav {
  display: flex;
  align-items: stretch;
  flex-direction: column;
  width: 100%;
  gap: 18px;
  color: var(--blue-950);
  font-size: 0.92rem;
  font-weight: 600;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  width: 100%;
  padding: 0;
  border-radius: var(--radius);
  text-align: left;
}

.main-nav a:not(.nav-cta):hover {
  color: var(--teal-700);
  background: transparent;
}

.main-nav a:not(.nav-cta)::after {
  position: absolute;
  top: 50%;
  right: auto;
  bottom: auto;
  left: -16px;
  width: 7px;
  height: 2px;
  background: var(--red-600);
  content: "";
  opacity: 0;
  transform: translateY(-50%);
  transition: opacity 180ms ease, width 180ms ease;
}

.main-nav a:hover::after {
  width: 12px;
  opacity: 1;
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: var(--radius);
  font-weight: 600;
  line-height: 1.1;
}

.nav-cta {
  justify-content: center;
  margin-top: 8px;
  padding: 15px 18px;
  color: var(--white);
  background: var(--red-600);
  text-align: center;
}

.sidebar-contact {
  display: grid;
  gap: 12px;
  margin-top: auto;
  padding-top: 26px;
  border-top: 1px solid rgba(4, 98, 115, 0.18);
  color: var(--gray-650);
  font-style: normal;
  font-size: 0.8rem;
}

.contact-line {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: center;
  gap: 10px;
  margin: 0;
  overflow-wrap: anywhere;
}

.contact-icon {
  display: inline-grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border: 1px solid rgba(4, 98, 115, 0.22);
  border-radius: 50%;
  color: var(--teal-700);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1;
}

.contact-whatsapp {
  color: var(--blue-950);
}

.contact-whatsapp .contact-icon {
  color: var(--white);
  border-color: #13a85b;
  background: #13a85b;
}

.contact-whatsapp small,
.contact-whatsapp strong {
  display: block;
}

.contact-whatsapp small {
  color: var(--teal-700);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}

.contact-whatsapp strong {
  margin-top: 2px;
  font-size: 1.02rem;
  line-height: 1.15;
}

.mobile-header-contact {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 80px clamp(18px, 5vw, 72px) 96px;
  overflow: hidden;
  color: var(--white);
  background: var(--blue-950);
}

main,
.site-footer {
  margin-left: var(--sidebar-width);
}

.hero::after {
  position: absolute;
  inset: auto 0 0 0;
  height: 165px;
  background: linear-gradient(180deg, rgba(6, 38, 61, 0), var(--ice-50));
  content: "";
  pointer-events: none;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9);
}

.hero-media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 38, 61, 0.92) 0%, rgba(6, 38, 61, 0.7) 42%, rgba(6, 38, 61, 0.22) 100%),
    linear-gradient(0deg, rgba(6, 38, 61, 0.45), rgba(6, 38, 61, 0.12));
  content: "";
}

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

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--teal-500);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #94ecf4;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(2.55rem, 7vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  color: var(--blue-950);
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.05;
  letter-spacing: 0;
}

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

.hero-copy {
  max-width: 650px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.02rem, 2vw, 1.28rem);
}

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

.btn {
  min-width: 178px;
  padding: 15px 22px;
  border: 1px solid transparent;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.btn-primary {
  color: var(--white);
  background: var(--red-600);
  box-shadow: 0 14px 32px rgba(237, 28, 36, 0.28);
}

.btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.1);
}

.hero-panel {
  position: relative;
  z-index: 2;
  width: min(440px, calc(100% - 36px));
  margin-top: 44px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(6, 38, 61, 0.72);
  backdrop-filter: blur(12px);
}

.hero-panel strong {
  display: block;
  margin-bottom: 6px;
  color: #ffffff;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1;
}

.hero-panel span {
  color: rgba(255, 255, 255, 0.84);
}

.notice,
.services,
.feature-band,
.split-section,
.cta-section {
  width: auto;
  max-width: 1160px;
  margin-left: clamp(18px, 5vw, 72px);
  margin-right: clamp(18px, 5vw, 72px);
}

.notice {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 5vw, 72px);
  margin-top: -46px;
  padding: clamp(26px, 4vw, 44px);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.notice h2 {
  margin-bottom: 0;
  font-size: clamp(1.55rem, 3vw, 2.55rem);
}

.notice-copy {
  display: grid;
  gap: 12px;
  align-self: start;
  padding-top: 52px;
}

.notice-copy p {
  margin: 0;
  color: var(--gray-650);
  font-size: 1.05rem;
}

.services {
  padding: 92px 0 76px;
}

.section-heading {
  max-width: 730px;
  margin-bottom: 36px;
}

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

.service-card {
  min-height: 280px;
  padding: 28px;
  border: 1px solid rgba(4, 98, 115, 0.14);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 45px rgba(6, 38, 61, 0.07);
}

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

.service-icon {
  display: inline-grid;
  width: 58px;
  height: 58px;
  place-items: center;
  margin-bottom: 22px;
  border: 2px solid rgba(20, 156, 173, 0.3);
  border-radius: 50%;
  color: var(--red-600);
  background: var(--ice-100);
  font-weight: 700;
}

.feature-band {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(24px, 4vw, 42px);
  border-radius: var(--radius);
  background: var(--blue-950);
  box-shadow: var(--shadow);
}

.feature-image {
  min-height: 420px;
  overflow: hidden;
  border-radius: var(--radius);
}

.feature-image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.feature-content h2,
.feature-content p,
.feature-content li {
  color: var(--white);
}

.feature-content p {
  color: rgba(255, 255, 255, 0.82);
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.15em;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--teal-500);
  content: "";
}

.split-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: 86px 0;
}

.split-content {
  max-width: 520px;
}

.split-content p {
  color: var(--gray-650);
  font-size: 1.05rem;
}

.split-gallery {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 16px;
  min-height: 430px;
}

.split-gallery img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: 0 16px 45px rgba(6, 38, 61, 0.09);
}

.split-gallery img:nth-child(2) {
  object-position: center;
}

.cta-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 74px;
  padding: clamp(28px, 5vw, 48px);
  border-radius: var(--radius);
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(6, 38, 61, 0.97), rgba(4, 98, 115, 0.9)),
    url("assets/fundo-neve.jpg") center / cover;
}

.cta-content {
  max-width: 650px;
}

.cta-content .section-kicker {
  color: #94ecf4;
}

.cta-content h2,
.cta-content p {
  color: var(--white);
}

.cta-content p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.83);
}

.btn-large {
  min-width: min(100%, 286px);
  min-height: 58px;
}

.site-footer {
  padding: 54px clamp(18px, 5vw, 72px) 58px;
  color: var(--blue-950);
  background: var(--white);
  text-align: left;
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  max-width: 1160px;
}

.site-footer img {
  width: 138px;
  flex: 0 0 auto;
}

.site-footer p {
  margin: 0 0 8px;
  font-size: 1rem;
  font-weight: 600;
}

.site-footer a,
.footer-company {
  color: var(--red-600);
  font-weight: 600;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 6px 16px;
  margin-bottom: 12px;
}

.footer-company {
  display: grid;
  gap: 4px;
  color: var(--gray-650);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
}

.footer-rights {
  display: block;
  align-self: flex-end;
  color: var(--gray-650);
  font-size: 0.82rem;
}

.footer-address {
  display: none;
  gap: 4px;
  min-width: min(100%, 280px);
  color: var(--gray-650);
  font-style: normal;
  font-size: 0.9rem;
  line-height: 1.45;
}

.footer-address strong {
  margin-bottom: 4px;
  color: var(--blue-950);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

@media (max-width: 1100px) {
  .site-header {
    inset: 0 0 auto 0;
    width: auto;
    min-height: 0;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    gap: 22px;
    padding: 12px clamp(18px, 4vw, 40px);
    border-right: 0;
    border-bottom: 1px solid rgba(4, 98, 115, 0.12);
  }

  .brand img {
    width: clamp(94px, 14vw, 124px);
  }

  .main-nav {
    align-items: center;
    flex-direction: row;
    justify-content: flex-end;
    gap: clamp(14px, 2.3vw, 28px);
    width: auto;
    font-size: 0.86rem;
  }

  .main-nav a {
    width: auto;
    white-space: nowrap;
  }

  .main-nav a:not(.nav-cta)::after {
    top: auto;
    right: 0;
    bottom: -8px;
    left: 0;
    width: auto;
    transform: none;
  }

  .main-nav a:hover::after {
    width: auto;
  }

  .nav-cta {
    margin-top: 0;
    padding: 13px 18px;
  }

  .sidebar-contact {
    display: none;
  }

  main,
  .site-footer {
    margin-left: 0;
  }

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

@media (max-width: 980px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .notice,
  .feature-band,
  .split-section {
    grid-template-columns: 1fr;
  }

  .split-section {
    padding-top: 70px;
  }

  .cta-section {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  .site-header {
    gap: 18px;
    padding: 8px 16px;
  }

  .mobile-header-contact {
    display: grid;
    justify-items: end;
    color: var(--blue-950);
    line-height: 1.15;
    text-align: right;
  }

  .mobile-header-contact small {
    color: var(--teal-700);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
  }

  .mobile-header-contact strong {
    margin-top: 2px;
    font-size: 0.94rem;
    font-weight: 700;
  }

  .main-nav {
    display: none;
  }

  .sidebar-contact {
    display: none;
  }

  .main-nav.is-open {
    display: none;
  }

  .main-nav a {
    width: 100%;
    padding: 13px 12px;
    white-space: normal;
  }

  .nav-cta {
    margin-top: 6px;
  }

  .hero {
    min-height: auto;
    padding: 134px 18px 78px;
  }

  .hero-media::after {
    background:
      linear-gradient(90deg, rgba(6, 38, 61, 0.93), rgba(6, 38, 61, 0.66)),
      linear-gradient(0deg, rgba(6, 38, 61, 0.38), rgba(6, 38, 61, 0.2));
  }

  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .hero-panel {
    width: 100%;
    margin-top: 30px;
  }

  .notice {
    margin-top: -20px;
    padding: 24px;
  }

  .notice-copy {
    padding-top: 0;
  }

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

  .service-card {
    min-height: auto;
  }

  .feature-image,
  .feature-image img,
  .split-gallery,
  .split-gallery img {
    min-height: 300px;
  }

  .split-gallery {
    grid-template-columns: 1fr;
  }

  .split-gallery img:nth-child(2) {
    max-height: 190px;
    min-height: 190px;
  }

  .cta-section {
    margin-bottom: 42px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 18px;
  }

  .footer-address {
    display: grid;
    min-width: 0;
  }

  .footer-rights {
    align-self: flex-start;
  }

  .site-footer img {
    width: 118px;
  }
}

@media (max-width: 430px) {
  h1 {
    font-size: 2.2rem;
    line-height: 1.04;
  }

  h2 {
    font-size: 1.9rem;
  }

  .brand img {
    width: 94px;
    height: auto;
  }

  .hero-copy,
  .notice p,
  .split-content p {
    font-size: 1rem;
  }

  .notice,
  .services,
  .feature-band,
  .split-section,
  .cta-section {
    margin-left: 14px;
    margin-right: 14px;
  }

  .service-card {
    padding: 24px;
  }

  .footer-contact {
    display: grid;
  }
}
