:root {
  --navy: #102a43;
  --navy-2: #061826;
  --blue: #176b9b;
  --blue-2: #1e88b9;
  --gold: #c99a38;
  --gold-2: #f1c96b;
  --text: #152536;
  --muted: #65758a;
  --line: #dce6ef;
  --soft: #f3f7fb;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(6, 24, 38, .16);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }

.topbar {
  background: var(--navy-2);
  color: rgba(255,255,255,.88);
  font-size: .88rem;
}
.topbar__content {
  min-height: 46px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}
.topbar__left, .topbar__links { display: flex; gap: 18px; flex-wrap: wrap; }
.topbar a { color: #fff; font-weight: 800; }

.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(220,230,239,.86);
  box-shadow: 0 10px 30px rgba(6,24,38,.06);
}
.navbar__content {
  min-height: 84px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: max-content; }
.brand__mark {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: #fff;
  font-weight: 900;
  letter-spacing: -.04em;
  box-shadow: 0 12px 26px rgba(16,42,67,.25);
}
.brand__text { display: grid; line-height: 1.16; }
.brand__text strong { font-size: 1.12rem; letter-spacing: -.02em; }
.brand__text small { color: var(--muted); font-weight: 700; font-size: .78rem; }

.menu { display: flex; align-items: center; gap: 22px; list-style: none; padding: 0; margin: 0; font-weight: 900; }
.menu a { position: relative; display: inline-flex; align-items: center; color: var(--text); }
.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 3px;
  border-radius: 999px;
  background: var(--gold);
  transition: width .2s ease;
}
.menu a:hover::after { width: 100%; }
.menu__cta {
  background: var(--navy);
  color: #fff !important;
  padding: 12px 16px;
  border-radius: 999px;
}
.menu__cta::after { display: none; }
.menu__item--dropdown { position: relative; }
.submenu {
  position: absolute;
  top: calc(100% + 18px);
  left: 0;
  min-width: 330px;
  padding: 12px;
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: .2s ease;
}
.menu__item--dropdown:hover .submenu,
.menu__item--dropdown:focus-within .submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.submenu a { display: block; padding: 10px 12px; border-radius: 12px; font-size: .94rem; }
.submenu a:hover { background: var(--soft); }
.submenu a::after { display: none; }
.menu-toggle { display: none; border: 0; width: 46px; height: 46px; border-radius: 14px; background: var(--soft); cursor: pointer; }
.menu-toggle span { display: block; width: 22px; height: 2px; margin: 5px auto; background: var(--text); }

.hero {
  position: relative;
  min-height: 780px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--navy-2);
  color: #fff;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6,24,38,.95) 0%, rgba(16,42,67,.84) 46%, rgba(16,42,67,.38) 100%),
    url('https://images.unsplash.com/photo-1518005020951-eccb494ad742?auto=format&fit=crop&w=1800&q=80') center/cover no-repeat;
  transform: scale(1.02);
}
.hero::after { content: ""; position: absolute; inset: auto 0 0; height: 190px; background: linear-gradient(180deg, transparent, rgba(6,24,38,.92)); }
.hero__content { position: relative; z-index: 2; max-width: 860px; padding: 115px 0 185px; }
.tag, .section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid rgba(201,154,56,.42);
  border-radius: 999px;
  background: rgba(201,154,56,.14);
  color: var(--gold-2);
  font-weight: 900;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.section__eyebrow { color: var(--gold); background: rgba(201,154,56,.1); }
.section--dark .section__eyebrow { color: var(--gold-2); }
.hero h1 { margin: 22px 0 18px; font-size: clamp(2.7rem, 7vw, 5.45rem); line-height: .98; letter-spacing: -.065em; }
.hero p { max-width: 760px; font-size: 1.18rem; color: rgba(255,255,255,.82); }
.hero__actions { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 14px; }
.btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 2px solid transparent;
  font-weight: 900;
  transition: transform .2s ease, box-shadow .2s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--gold); color: #111; box-shadow: 0 18px 38px rgba(201,154,56,.28); }
.btn--ghost { border-color: rgba(255,255,255,.38); color: #fff; }
.hero__cards {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 42px;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.hero__cards article {
  padding: 22px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 22px;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(16px);
}
.hero__cards strong { display: block; color: var(--gold-2); font-size: 1.35rem; line-height: 1.1; }
.hero__cards span { display: block; margin-top: 8px; color: rgba(255,255,255,.84); font-weight: 700; }

.section { padding: 96px 0; }
.section--light { background: var(--soft); }
.section--dark { background: var(--navy-2); color: #fff; }
.section__heading { max-width: 820px; margin-bottom: 42px; }
.section__heading--center { text-align: center; margin-left: auto; margin-right: auto; }
.section h2 { margin: 16px 0 14px; font-size: clamp(2rem, 4vw, 3.45rem); line-height: 1.06; letter-spacing: -.05em; }
.section p { color: var(--muted); font-size: 1.03rem; }
.section--dark p { color: rgba(255,255,255,.75); }

.split { display: grid; grid-template-columns: .95fr 1.05fr; gap: 58px; align-items: center; }
.image-card { position: relative; min-height: 500px; border-radius: 32px; overflow: hidden; box-shadow: var(--shadow); }
.image-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.image-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(6,24,38,.88)); }
.image-card__caption { position: absolute; z-index: 2; left: 28px; right: 28px; bottom: 28px; color: #fff; }
.image-card__caption strong { display: block; font-size: 1.35rem; }
.image-card__caption span { color: rgba(255,255,255,.76); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 28px; }
.values-grid article { padding: 18px; border-radius: 18px; background: #fff; border: 1px solid var(--line); box-shadow: 0 12px 28px rgba(6,24,38,.06); }
.values-grid strong { color: var(--navy); display: block; font-size: 1.05rem; }
.values-grid span { color: var(--muted); font-size: .92rem; }

.service-feature {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  min-height: 440px;
  overflow: hidden;
  border-radius: 32px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  margin-bottom: 24px;
}
.service-feature__photo { background-size: cover; background-position: center; min-height: 100%; }
.service-feature__content { padding: 36px; }
.service-feature__content span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(23,107,155,.1), rgba(201,154,56,.16));
  color: var(--navy);
  font-weight: 900;
  font-size: 1.25rem;
}
.service-feature h3 { margin: 18px 0 10px; font-size: clamp(1.8rem, 3vw, 2.45rem); line-height: 1.08; letter-spacing: -.04em; }
.service-feature ul, .service-card ul { padding-left: 18px; color: var(--muted); }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card {
  position: relative;
  overflow: hidden;
  min-height: 288px;
  padding: 28px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 16px 38px rgba(6,24,38,.08);
}
.service-card::before { content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 5px; background: linear-gradient(90deg, var(--gold), var(--blue-2)); }
.service-card__icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(23,107,155,.1), rgba(201,154,56,.16));
  font-size: 1.4rem;
}
.service-card h3 { margin: 18px 0 10px; font-size: 1.24rem; line-height: 1.2; }
.service-card p { font-size: .98rem; }
.service-card a { display: inline-flex; margin-top: 10px; color: var(--blue); font-weight: 900; }

.photo-band__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 54px; align-items: center; }
.photo-stack { position: relative; min-height: 460px; }
.photo-stack img { position: absolute; width: 64%; height: 310px; object-fit: cover; border-radius: 28px; box-shadow: 0 28px 60px rgba(0,0,0,.28); }
.photo-stack img:first-child { right: 0; top: 0; }
.photo-stack img:last-child { left: 0; bottom: 0; border: 10px solid var(--navy-2); }

.articles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.article-card { overflow: hidden; border-radius: 26px; background: #fff; border: 1px solid var(--line); box-shadow: 0 16px 38px rgba(6,24,38,.08); }
.article-card img { width: 100%; height: 210px; object-fit: cover; }
.article-card div { padding: 24px; }
.article-card span { color: var(--blue); font-weight: 900; text-transform: uppercase; letter-spacing: .08em; font-size: .76rem; }
.article-card h3 { margin: 10px 0 8px; font-size: 1.2rem; line-height: 1.22; }
.article-card p { font-size: .98rem; }
.article-card a { color: var(--blue); font-weight: 900; }

.clients-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.clients-grid article {
  padding: 28px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 14px 36px rgba(6,24,38,.07);
}
.clients-grid span {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: var(--navy);
  color: var(--gold-2);
  font-weight: 900;
  letter-spacing: .05em;
  font-size: .92rem;
}
.clients-grid h3 { margin: 18px 0 8px; }
.clients-grid p { margin-bottom: 0; font-size: .98rem; }

.contact { background: var(--soft); }
.contact__grid { display: grid; grid-template-columns: .86fr 1.14fr; gap: 50px; align-items: start; }
.contact__info { margin-top: 26px; padding: 26px; border-radius: 24px; background: #fff; border: 1px solid var(--line); box-shadow: 0 14px 36px rgba(6,24,38,.06); }
.contact__info p { margin: 8px 0; }
.contact__info a { color: var(--blue); font-weight: 900; }

.qr-card {
  display: grid;
  grid-template-columns: 96px 1fr;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
  padding: 16px;
  border-radius: 20px;
  background: var(--soft);
  border: 1px dashed rgba(16, 42, 67, .28);
}
.qr-card img {
  width: 96px;
  height: 96px;
  padding: 8px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
}
.qr-card strong {
  display: block;
  color: var(--navy);
  font-size: 1rem;
}
.qr-card span {
  display: block;
  color: var(--muted);
  font-size: .92rem;
}
.qr-card a {
  display: inline-flex;
  margin-top: 4px;
}

.form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border-radius: 26px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.form label { display: grid; gap: 8px; font-weight: 900; }
.form input, .form select, .form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
  font: inherit;
  color: var(--text);
  background: #fff;
  outline: none;
}
.form input:focus, .form select:focus, .form textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(23,107,155,.12); }

.footer { padding: 62px 0 0; background: var(--navy-2); color: #fff; }
.brand--footer .brand__mark { background: var(--gold); color: #111; box-shadow: none; }
.brand--footer .brand__text small { color: rgba(255,255,255,.7); }
.footer__grid { display: grid; grid-template-columns: 1.25fr .8fr 1fr; gap: 36px; }
.footer p { color: rgba(255,255,255,.72); max-width: 470px; }
.footer h3 { margin-top: 0; }
.footer a:not(.brand) { display: block; margin-bottom: 10px; color: rgba(255,255,255,.76); }
.footer__bottom { margin-top: 42px; padding: 18px; text-align: center; color: rgba(255,255,255,.66); border-top: 1px solid rgba(255,255,255,.12); }
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  font-size: 1.8rem;
  box-shadow: 0 18px 40px rgba(37,211,102,.42);
}

@media (max-width: 1080px) {
  .topbar__content { flex-direction: column; align-items: flex-start; padding: 10px 0; }
  .split, .service-feature, .photo-band__grid, .contact__grid, .footer__grid { grid-template-columns: 1fr; }
  .services-grid, .clients-grid, .articles-grid { grid-template-columns: repeat(2, 1fr); }
  .service-feature__photo { min-height: 320px; }
  .hero__cards { position: relative; left: auto; bottom: auto; transform: none; grid-template-columns: 1fr; padding-bottom: 28px; }
  .hero__content { padding-bottom: 38px; }
}

@media (max-width: 760px) {
  .navbar__content { min-height: 76px; }
  .brand__mark { width: 48px; height: 48px; }
  .brand__text strong { font-size: 1rem; }
  .brand__text small { display: none; }
  .menu-toggle { display: block; }
  .menu {
    position: absolute;
    display: none;
    left: 16px;
    right: 16px;
    top: 82px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }
  .menu.is-open { display: flex; }
  .menu a { display: block; padding: 12px; }
  .menu__cta { text-align: center; margin-top: 8px; }
  .menu__item--dropdown { position: static; }
  .submenu {
    position: static;
    display: none;
    min-width: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-radius: 12px;
    background: var(--soft);
    margin-left: 10px;
  }
  .menu__item--dropdown:hover .submenu,
  .menu__item--dropdown:focus-within .submenu { display: block; }
  .services-grid, .clients-grid, .articles-grid, .values-grid { grid-template-columns: 1fr; }
  .qr-card { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .hero { min-height: auto; }
  .hero__content { padding: 76px 0 34px; }
  .hero h1 { letter-spacing: -.05em; }
  .section { padding: 68px 0; }
  .image-card { min-height: 360px; }
  .photo-stack { min-height: 360px; }
  .photo-stack img { width: 82%; height: 230px; }
  .service-feature__content { padding: 26px; }
}


/* Ajustes modernos para serviços, clientes, artigos e avaliações */
.services-modern {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-modern {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  padding: 28px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 16px 38px rgba(6,24,38,.08);
}
.service-modern::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--gold), var(--blue-2));
}
.service-modern--featured {
  grid-column: span 3;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 0;
  padding: 0;
  min-height: 430px;
}
.service-modern--featured::before { display: none; }
.service-modern__photo { min-height: 100%; background-size: cover; background-position: center; }
.service-modern__content { padding: 38px; }
.service-modern__content span,
.service-modern__icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(23,107,155,.1), rgba(201,154,56,.16));
  color: var(--navy);
  font-weight: 900;
  font-size: 1.28rem;
}
.service-modern h3 { margin: 18px 0 10px; font-size: 1.28rem; line-height: 1.2; }
.service-modern--featured h3 { font-size: clamp(1.9rem, 3vw, 2.55rem); letter-spacing: -.04em; }
.service-modern ul { padding-left: 18px; color: var(--muted); }
.service-modern a { display: inline-flex; margin-top: 10px; color: var(--blue); font-weight: 900; }

.clients-modern {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.clients-modern article {
  padding: 28px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 14px 36px rgba(6,24,38,.07);
}
.clients-modern span {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: var(--navy);
  color: var(--gold-2);
  font-weight: 900;
  letter-spacing: .05em;
  font-size: .92rem;
}
.clients-modern h3 { margin: 18px 0 8px; }
.clients-modern p { margin-bottom: 0; font-size: .98rem; }

.articles-modern {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.article-modern {
  overflow: hidden;
  border-radius: 26px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 16px 38px rgba(6,24,38,.08);
}
.article-modern img { width: 100%; height: 210px; object-fit: cover; }
.article-modern div { padding: 24px; }
.article-modern span { color: var(--blue); font-weight: 900; text-transform: uppercase; letter-spacing: .08em; font-size: .76rem; }
.article-modern h3 { margin: 10px 0 8px; font-size: 1.2rem; line-height: 1.22; }
.article-modern p { font-size: .98rem; }
.article-modern a { color: var(--blue); font-weight: 900; }

.reviews-section {
  background:
    radial-gradient(circle at top left, rgba(201,154,56,.10), transparent 32%),
    linear-gradient(180deg, #fff 0%, var(--soft) 100%);
}
.reviews-grid {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 28px;
  align-items: start;
}
.approved-reviews {
  display: grid;
  gap: 18px;
  padding: 28px;
  border-radius: 28px;
  background: var(--navy-2);
  color: #fff;
  box-shadow: var(--shadow);
}
.approved-reviews__top {
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.approved-reviews__top span {
  display: block;
  color: var(--gold-2);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .76rem;
}
.approved-reviews__top strong {
  display: block;
  margin-top: 4px;
  font-size: 1.35rem;
  line-height: 1.18;
}
.review-card {
  padding: 22px;
  border-radius: 22px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}
.review-card__stars {
  color: var(--gold-2);
  letter-spacing: .08em;
  font-size: 1.05rem;
}
.review-card p {
  margin: 12px 0;
  color: rgba(255,255,255,.86);
}
.review-card strong { display: block; }
.review-card small { color: rgba(255,255,255,.62); }
.reviews-note {
  margin: 0;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(201,154,56,.12);
  border: 1px solid rgba(201,154,56,.22);
  color: rgba(255,255,255,.78) !important;
  font-size: .92rem !important;
}
.form__intro {
  padding-bottom: 4px;
}
.form__intro span {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .76rem;
}
.form__intro h3 {
  margin: 6px 0 6px;
  font-size: 1.55rem;
  line-height: 1.16;
  letter-spacing: -.03em;
}
.form__intro p { margin: 0; font-size: .95rem; }
.checkbox-field {
  display: grid !important;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 12px !important;
  font-weight: 700 !important;
  color: var(--muted);
  font-size: .93rem;
}
.checkbox-field input {
  width: 18px !important;
  height: 18px;
  margin-top: 3px;
  padding: 0 !important;
}

@media (max-width: 1080px) {
  .services-modern, .clients-modern, .articles-modern { grid-template-columns: repeat(2, 1fr); }
  .service-modern--featured, .reviews-grid { grid-template-columns: 1fr; }
  .service-modern--featured { grid-column: span 2; }
  .service-modern__photo { min-height: 320px; }
}

@media (max-width: 760px) {
  .services-modern, .clients-modern, .articles-modern { grid-template-columns: 1fr; }
  .service-modern--featured { grid-column: span 1; }
  .service-modern__content, .approved-reviews { padding: 24px; }
}
