/* Paleta próxima da referência: azul royal, azul escuro, vermelho forte, branco */
:root {
  --royal: #1a3a6e;
  --royal-deep: #0f2a52;
  --royal-dark: #0a1f3d;
  --red: #d91e2b;
  --red-hover: #b91824;
  --white: #ffffff;
  --text: #1a2332;
  --muted: #4a5568;
  --green-wa: #25d366;
  --container: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-bottom: 5rem;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Ubuntu, Cantarell, sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.55;
  font-size: 1rem;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  color: inherit;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ——— Topo / menu ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid rgba(26, 58, 110, 0.12);
  box-shadow: 0 2px 12px rgba(10, 31, 61, 0.06);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 64px;
}

.site-logo {
  text-decoration: none;
  font-weight: 900;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  color: var(--royal);
}

.site-logo span {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: var(--red);
  margin-top: 2px;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  justify-content: flex-end;
}

.site-nav a {
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--royal);
}

.site-nav a:hover {
  color: var(--red);
}

@media (max-width: 520px) {
  .site-nav {
    gap: 0.35rem 0.65rem;
  }

  .site-nav a {
    font-size: 0.72rem;
  }
}

/* ——— Hero tela cheia ——— */
.hero-full {
  position: relative;
  min-height: min(78vh, 720px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
}

.hero-full__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-full__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(10, 31, 61, 0.88) 0%,
    rgba(26, 58, 110, 0.55) 45%,
    rgba(10, 31, 61, 0.75) 100%
  );
}

.hero-full__content {
  position: relative;
  z-index: 2;
  padding: 4rem 0 3.5rem;
}

.hero-full__kicker {
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.92;
}

.hero-full__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.85rem, 5vw, 3.1rem);
  font-weight: 800;
  line-height: 1.12;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
}

.hero-full__sub {
  margin: 0 auto 1.75rem;
  max-width: 36rem;
  font-size: 1.05rem;
  line-height: 1.5;
  opacity: 0.95;
}

/* ——— Botões ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.15s ease, filter 0.15s ease, background 0.15s ease;
}

/* Ícone WhatsApp (SVG com fill currentColor) */
.wa-icon {
  flex-shrink: 0;
  display: block;
}

.btn--red .wa-icon {
  color: #ffffff;
}

.btn--outline .wa-icon {
  color: var(--royal);
}

.btn--green .wa-icon {
  color: #ffffff;
}

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

.btn--red {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.btn--red:hover {
  filter: brightness(1.08);
}

.btn--outline {
  background: transparent;
  color: var(--royal);
  border-color: var(--royal);
}

.btn--outline:hover {
  background: rgba(26, 58, 110, 0.06);
}

.btn--green {
  background: var(--green-wa);
  color: #042c12;
  border-color: var(--green-wa);
}

.btn--green:hover {
  filter: brightness(1.06);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* ——— Quem somos / duas colunas ——— */
.section-about {
  padding: 3.5rem 0;
  background: var(--white);
}

.section-about__grid {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 900px) {
  .section-about__grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
  }
}

.heading-blue {
  margin: 0 0 1rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--royal);
}

.section-about__text p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.98rem;
}

.section-about__pay {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.section-about__text .btn {
  margin-top: 0.5rem;
}

.section-about__media {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
  align-items: end;
}

.about-photo {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(26, 58, 110, 0.15);
  box-shadow: 0 12px 40px rgba(10, 31, 61, 0.12);
}

.about-photo--tall {
  grid-row: span 2;
}

.about-photo--tall img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
}

.about-photo--short img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

@media (max-width: 899px) {
  .section-about__media {
    max-width: 420px;
    margin: 0 auto;
    grid-template-columns: 1fr;
  }

  .about-photo--tall {
    grid-row: auto;
  }

  .about-photo--tall img {
    min-height: 220px;
  }
}

/* ——— Serviços / faixa azul + cards ——— */
.section-services {
  padding: 3rem 0 3.5rem;
  background: var(--royal);
  color: var(--white);
}

.section-services__title {
  margin: 0 0 2rem;
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
}

.services-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 700px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem 2rem;
  }
}

.svc-m {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.svc-m__visual {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--royal-deep);
}

.svc-m__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.svc-m__dot {
  position: absolute;
  left: 1rem;
  bottom: -1.35rem;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  background: var(--red);
  border: 4px solid var(--royal);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.svc-m__content {
  padding: 2rem 1.25rem 1.35rem;
}

.svc-m__content h3 {
  margin: 0 0 0.75rem;
  font-size: 1.1rem;
  font-weight: 800;
}

.svc-m__content ul {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.88rem;
  line-height: 1.55;
  opacity: 0.95;
}

.svc-m__content li {
  margin: 0.25rem 0;
}

/* ——— Faixa valor + banner ——— */
.section-value {
  background: var(--royal-deep);
  color: var(--white);
  padding-top: 2.75rem;
}

.section-value__inner {
  text-align: center;
  padding-bottom: 1.5rem;
}

.section-value__kicker {
  margin: 0 0 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  opacity: 0.85;
}

.section-value__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 800;
  line-height: 1.2;
}

.section-value__lead {
  margin: 0 auto;
  max-width: 38rem;
  font-size: 0.95rem;
  opacity: 0.9;
  line-height: 1.55;
}

.section-value__banner {
  margin-top: 2rem;
  width: 100%;
  max-height: 320px;
  overflow: hidden;
  border-top: 4px solid var(--red);
  border-bottom: 4px solid var(--red);
}

.section-value__banner img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.section-value__icons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding: 1.75rem 1.25rem 2.5rem;
}

@media (min-width: 700px) {
  .section-value__icons {
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
  }
}

.value-icon {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  opacity: 0.95;
}

.value-icon__glyph {
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: var(--red);
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 900;
}

@media (min-width: 700px) {
  .value-icon {
    flex-direction: column;
    justify-content: flex-start;
  }
}

/* ——— Depoimentos / vermelho ——— */
.section-reviews {
  position: relative;
  padding: 3rem 0 3.5rem;
  background: var(--red);
  color: var(--white);
  overflow: hidden;
}

.section-reviews__deco {
  position: absolute;
  top: 0.5rem;
  right: 4%;
  font-size: clamp(6rem, 18vw, 12rem);
  line-height: 1;
  font-family: Georgia, serif;
  opacity: 0.12;
  pointer-events: none;
}

.section-reviews__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 800px) {
  .section-reviews__grid {
    grid-template-columns: 220px 1fr;
    gap: 2.5rem;
  }
}

.reviews-score {
  background: var(--royal);
  padding: 1.5rem 1.25rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.reviews-score__num {
  margin: 0;
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
}

.reviews-score__stars {
  margin: 0.35rem 0 0.75rem;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  color: #fde047;
}

.reviews-score__note {
  margin: 0;
  font-size: 0.75rem;
  opacity: 0.88;
  line-height: 1.4;
}

.section-reviews__title {
  margin: 0 0 1.25rem;
  font-size: 1.5rem;
  font-weight: 800;
}

.review-card {
  margin: 0 0 1rem;
  padding: 1rem 1.1rem;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  border-left: 4px solid rgba(255, 255, 255, 0.5);
}

.review-card p {
  margin: 0 0 0.5rem;
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.5;
}

.review-card cite {
  font-size: 0.82rem;
  font-style: normal;
  opacity: 0.9;
}

/* ——— Rodapé azul ——— */
.site-footer {
  background: var(--royal);
  color: var(--white);
  padding: 2.75rem 0 2rem;
  text-align: center;
}

.site-footer__tag {
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.9;
}

.site-footer__phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 0 0 0.35rem;
  font-size: clamp(1.75rem, 5vw, 2.35rem);
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0.02em;
}

.site-footer__phone .wa-icon {
  width: clamp(1.5rem, 4vw, 2rem);
  height: clamp(1.5rem, 4vw, 2rem);
  color: #ffffff;
}

.site-footer__phone:hover {
  color: #fecaca;
}

.site-footer__phone:hover .wa-icon {
  color: #fecaca;
}

.site-footer__pay {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  opacity: 0.92;
  color: rgba(255, 255, 255, 0.95);
}

.site-footer__wa-note {
  margin: 0 0 1.25rem;
  font-size: 0.88rem;
  opacity: 0.88;
}

.site-footer__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.site-footer__copy {
  margin: 0;
  font-size: 0.8rem;
  opacity: 0.75;
}

/* ——— WhatsApp flutuante ——— */
.float-wa {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 200;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: var(--green-wa);
  color: #0d2818;
  display: grid;
  place-items: center;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.28);
  transition: transform 0.15s ease;
}

.float-wa:hover {
  transform: scale(1.06);
}

.float-wa .wa-icon {
  width: 1.75rem;
  height: 1.75rem;
  color: #ffffff;
}
