@import url("https://fonts.googleapis.com/css2?family=Comic+Neue:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap");

/* Reset e Variáveis */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-primary: #001932;
  --color-primary-dark: #0f1a2e;
  --color-white: #ffffff;
  --color-text: #ffffff;
  --font-primary:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, sans-serif;
  --font-serif: Georgia, "Times New Roman", serif;

  /* Tokens específicos da seção de alertas */
  --rj-dark: #071b33;
  --rj-dark-2: #06162a;
  --rj-light: #ffffff;
  --rj-muted: rgba(255, 255, 255, 0.72);
  --rj-muted-2: rgba(255, 255, 255, 0.84);
  --rj-border: rgba(255, 255, 255, 0.22);

  /* Tokens específicos da seção de FAQ */
  --faq-bg: #ffffff;
  --faq-title: #0b1324;
  --faq-subtitle: #8b9098;
  --faq-card: #ffffff;
  --faq-border: rgba(15, 23, 42, 0.12);
  --faq-shadow: 0 6px 16px rgba(15, 23, 42, 0.08);
  --faq-shadow-hover: 0 10px 22px rgba(15, 23, 42, 0.12);
  --faq-number-bg: #d9dde3;
  --faq-number-fg: #1f2937;
  --faq-chevron: #6b7280;
  --faq-answer: #4b5563;
  --faq-open-border: rgba(17, 24, 39, 0.35);
  --faq-pattern: rgba(15, 23, 42, 0.08);
}

body {
  font-family: var(--font-primary);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header (sempre na frente da imagem) */
#header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 51px 0;
  isolation: isolate;
}

.header-content {
  display: flex;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo__icon {
  height: 96px;
  width: auto;
}

.logo__wordmark {
  display: none;
}

/* Hamburger - oculto no desktop */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
  z-index: 1002;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 40px;
  height: 40px;
}

.hamburger__line {
  display: block;
  width: 28px;
  height: 3px;
  background-color: var(--color-white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.is-active .hamburger__line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger.is-active .hamburger__line:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active .hamburger__line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

#nav {
  padding-left: 20px;
  padding-right: 30px;
  background-color: var(--color-primary);
  height: 63px;
  text-align: center;
  display: flex;
  border-radius: 0px 7px 7px 0px;
}

#nav ul {
  display: flex;
  list-style: none;
  gap: 25px;
  align-items: center;
  flex-wrap: nowrap;
}

#nav ul li a {
  color: var(--color-white);
  text-decoration: none;
  font-size: clamp(12px, 1.3vw, 24px);
  font-weight: 500;
  transition: opacity 0.3s ease;
  white-space: nowrap;
}

#nav ul li a:hover {
  opacity: 0.8;
}

#nav ul li a.btn-contact {
  background-color: var(--color-primary-dark);
  padding: 8px 16px;
  border-radius: 4px;
  font-weight: 500;
}

#nav ul li a.btn-contact:hover {
  opacity: 1;
  background-color: rgba(15, 26, 46, 0.9);
}

/* Hero Section - FOTO.png de fundo, nav e logo por cima */
#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-image: url("../images/FOTO.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #020617 0%, #11182b 50%, #020617 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-text {
  color: var(--color-white);
}

.hero-number {
  font-size: clamp(60px, 12vw, 150px);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 10px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  letter-spacing: -2px;
}

.hero-billions {
  font-size: clamp(40px, 8vw, 100px);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 20px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 300;
  font-style: italic;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
  max-width: 800px;
  margin: 0 auto;
}

/* Content Section */
#content {
  background-color: var(--color-primary);
  padding: 70px 0;
}

.content-with-bg {
  position: relative;
}

.content-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.content-blocks {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 20px;
}

.content-block {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 40px 30px;
  color: var(--color-white);
  font-size: 16px;
  line-height: 1.8;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.content-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.4);
}

.content-block p {
  margin: 0;
}

/* ========== Solução ========== */
#solucao {
  background-color: #f7f9fc; /* branco levemente acinzentado */
  padding: 80px 0;
  width: 100%;
}

.solucao-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px; /* respiro lateral */
}

.solucao-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 64px;
  align-items: flex-start;
}

/* Coluna esquerda (título) */

.solucao-left {
  color: #0f172a;
}

.solucao-label {
  font-family: "Inter", var(--font-primary);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: #001932;
  margin-bottom: 16px;
  width: 170px;
  height: 34px;
}

.solucao-title {
  font-family: "Inter", var(--font-primary);
  font-size: 137.575px;
  line-height: 0.95;
  font-weight: 800;
  color: #0a1f3a; /* azul marinho bem escuro */
  margin: 0 0 20px;
}

.solucao-subtitle {
  font-family: "Inter", var(--font-primary);
  font-size: 14px;
  line-height: 1.8;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #001932;
  max-width: 320px;
}

/* Coluna direita (blocos) */

.solucao-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.solucao-item {
  color: #111827;
}

.solucao-item-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

/* Ícones minimalistas */

.solucao-icon {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 1px solid #c0c6cf;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* “Conexões / rede” */
.solucao-icon-network::before,
.solucao-icon-network::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.solucao-icon-network::before {
  width: 12px;
  height: 12px;
  border: 1px solid #c0c6cf;
}

.solucao-icon-network::after {
  width: 4px;
  height: 4px;
  background-color: #c0c6cf;
}

/* “Alvo / ponto” */
.solucao-icon-target::before,
.solucao-icon-target::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.solucao-icon-target::before {
  width: 14px;
  height: 14px;
  border: 1px solid #c0c6cf;
}

.solucao-icon-target::after {
  width: 4px;
  height: 4px;
  background-color: #c0c6cf;
}

.solucao-item-title {
  font-family: "Inter", var(--font-primary);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #4b5563;
  margin: 0;
}

.solucao-item-text {
  font-family: "Inter", var(--font-primary);
  font-size: 14px;
  line-height: 1.8;
  color: #111827;
  margin: 0;
  max-width: 460px;
}

.solucao-item-text + .solucao-item-text {
  margin-top: 10px; /* segundo parágrafo com espaço */
}

/* ========== Ações - Carrossel ========== */
#acoes {
  background-color: #11182b;
  padding: 80px 0 96px;
}

.acoes-carousel__container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
}

.acoes-carousel__viewport {
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
}

.acoes-carousel__viewport:active {
  cursor: grabbing;
}

.acoes-carousel__viewport::-webkit-scrollbar {
  display: none;
}

.acoes-carousel__viewport {
  scrollbar-width: none; /* Firefox */
}

.acoes-carousel__track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 32px;
  padding: 24px 0 32px;
  width: max-content;
}

.acoes-card {
  flex: 0 0 auto;
  flex-shrink: 0;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.acoes-card--hero {
  flex: 0 0 auto;
  max-width: none;
}

.acoes-card--detail {
  flex: 0 0 auto;
  max-width: 878px;
}

.acoes-card__inner {
  background-color: #ffffff;
  border-radius: 22px;
  padding: 40px 40px 32px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: flex-start;
  gap: clamp(12px, 2vw, 28px);
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

/* Card 1 – hero grande "12 ações" */
.acoes-card--hero .acoes-card__inner {
  width: min(1244px, calc(100vw - 64px));
  aspect-ratio: 2.25 / 1;
  align-items: center;
  padding: clamp(20px, 4vw, 40px);
  overflow: hidden;
}

.acoes-card__number {
  font-family: "Inter", var(--font-primary);
  font-weight: 800;
  font-size: clamp(80px, 28vw, 415px);
  line-height: 0.9;
  color: #0a1f3a;
  flex-shrink: 0;
}

.acoes-card__content {
  display: flex;
  flex-direction: column;
  gap: clamp(6px, 1vw, 12px);
  min-width: 0;
}

.acoes-card__title {
  font-family: "Inter", var(--font-primary);
  font-size: clamp(24px, 5.8vw, 84.614px);
  font-style: normal;
  font-weight: 700;
  line-height: 87%;
  color: #0b1729;
  text-transform: lowercase;
  margin: 0;
}

.acoes-card__subtitle {
  font-family: "Inter", var(--font-primary);
  font-size: clamp(10px, 1.5vw, 21.115px);
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: clamp(0.5px, 0.15vw, 2.111px);
  text-transform: uppercase;
  color: #7c8891;
  max-width: 440px;
  margin: 0;
}

/* Cards 2–12 – estilo detalhe (blindagem) */
.acoes-card__inner--detail {
  height: 553px;
  background-color: #f4f7fb;
  border-radius: 20px;
  padding: 24px 28px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

.acoes-detail__title {
  font-family: "Inter", var(--font-primary);
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 48px */
  letter-spacing: -0.352px;
  color: #95a6b0;
  margin: 0;
}

.acoes-detail__text {
  font-family: "Inter", var(--font-primary);
  text-align: justify;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%; /* 30.8px */
  letter-spacing: 0.44px;
  color: #1f3648;
  margin: 0;
}

/* ========== Pilares ========== */
#pilares {
  background-color: #ffffff;
  width: 100%;
}

.pilares-outer {
  padding: 70px 28px;
  max-width: 100%;
}

.pilares-inner {
  max-width: 1216px;
  height: 541px;
  margin: 0 auto;
  background-color: #071a2a;
  border-radius: 5px;
  box-shadow: 0 8px 32px rgba(7, 26, 42, 0.25);
  padding: 100px 56px 56px;
  position: relative;
  overflow: hidden;
}

.pilares-title {
  width: 373px;
  max-width: 100%;
  margin: 0 auto 48px;
  font-family: "Inter", var(--font-primary);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-align: center;
  color: rgba(255, 255, 255, 0.88);
  position: relative;
  z-index: 2;
}

.pilares-title span {
  font-weight: 700;
  font-size: 20px;
  line-height: 110%;
}

/* Imagem de fundo atrás dos cards */
.pilares-bg-image {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  z-index: -1;
  pointer-events: none;
}

/* Números gigantes de fundo (marca d'água) – atrás de cada coluna */
.pilares-bg-number {
  position: absolute;
  font-family: "Inter", var(--font-primary);
  font-size: 243.5px;
  font-weight: 700;
  line-height: 96%;
  color: rgba(203, 213, 225, 0.18);
  top: 16%;
  z-index: 0;
  pointer-events: none;
  user-select: none;
  padding-top: 60px;
}

.pilares-bg-number:nth-of-type(1) {
  left: 16.666%;
  transform: translate(-50%, -50%);
}
.pilares-bg-number:nth-of-type(2) {
  left: 50%;
  transform: translate(-50%, -50%);
}
.pilares-bg-number:nth-of-type(3) {
  left: 83.333%;
  transform: translate(-50%, -50%);
}

/* Textura inferior (V/zig-zag sutil) */
.pilares-texture {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  z-index: 0;
  opacity: 0.1;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 6px,
    rgba(100, 116, 139, 0.4) 6px,
    rgba(100, 116, 139, 0.4) 8px
  );
}

/* Cards em 3 colunas */
.pilares-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
  z-index: 1;
}

.pilar-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 24px 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.pilar-card-title {
  font-family: "Inter", var(--font-primary);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #1a1a1a;
  margin: 0 0 8px;
}

.pilar-card p {
  font-family: "Comic Neue";
  font-weight: 600;
  font-size: 16px;
  line-height: 105%;
  color: #374151;
  margin-top: 0;
}

/* About / Especialistas */
#sobre {
  background-color: #ffffff;
  padding: 80px 0 100px;
  color: #1a1a1a;
}

.about-header {
  margin-bottom: 48px;
}

.about-label-line {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.about-label {
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #1a1a1a;
}

.about-line {
  display: inline-block;
  width: 100%;
  height: 5px;
  background-color: #1a1a1a;
}

.about-title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.about-title {
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #1a1a1a;
  margin: 0;
}

.about-subtitle {
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 400;
  color: #6b7280;
  max-width: 420px;
  text-align: right;
  margin: 0;
  line-height: 1.5;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-text p {
  font-size: 17px;
  line-height: 1.8;
  color: #374151;
  margin: 0;
}

.about-specialists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.specialist-card {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background-color: #e5e7eb;
}

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

.specialist-name {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  z-index: 2;
}

/* Responsive Design */
@media (max-width: 1024px) {
  /* Ativar hamburger em tablets e abaixo */
  #header {
    padding: 0;
    background-color: var(--color-primary);
  }

  .header-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .logo__icon {
    height: 56px;
  }

  .logo__wordmark {
    display: block;
    height: 20px;
    width: auto;
  }

  .hamburger {
    display: flex;
  }

  #nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--color-primary);
    border-radius: 0;
    padding: 40px 32px;
    z-index: 1001;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
  }

  #nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }

  #nav ul {
    flex-direction: column;
    align-items: center;
    gap: 28px;
    width: 100%;
    flex-wrap: nowrap;
  }

  #nav ul li a {
    font-size: 24px;
    font-weight: 600;
  }

  .content-blocks {
    grid-template-columns: repeat(2, 1fr);
  }

  .content-block:last-child {
    grid-column: 1 / -1;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-specialists {
    max-width: 480px;
    margin: 0 auto;
  }

  .alertas-hero-inner {
    padding: 60px 40px 110px;
  }

  .alertas-info-row {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr);
    gap: 20px;
  }

  .alertas-box {
    padding: 28px 28px 28px;
  }

  .alertas-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .solucao-container {
    padding: 0 24px;
  }

  .solucao-grid {
    gap: 40px;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  }

  .pilares-inner {
    padding: 40px 32px 44px;
  }

  .pilares-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .pilares-cards .pilar-card:last-child {
    grid-column: 1 / -1;
  }

  .pilares-bg-number:nth-of-type(1) {
    left: 25%;
    transform: translate(-50%, -50%);
  }
  .pilares-bg-number:nth-of-type(2) {
    left: 75%;
    transform: translate(-50%, -50%);
  }
  .pilares-bg-number:nth-of-type(3) {
    left: 50%;
    transform: translate(-50%, -50%);
  }

  /* Ações - cards 520px no tablet/mobile */
  .acoes-carousel__track {
    gap: 16px;
  }

  .acoes-card--hero .acoes-card__inner {
    width: calc(100vw - 64px);
    height: 520px;
    aspect-ratio: unset;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 32px;
    gap: 0;
  }

  .acoes-card__number {
    font-size: clamp(120px, 22vw, 200px);
    line-height: 0.85;
  }

  .acoes-card__content {
    gap: 8px;
    align-items: center;
  }

  .acoes-card__title {
    font-size: clamp(28px, 7vw, 42px);
  }

  .acoes-card__subtitle {
    font-size: clamp(11px, 2.2vw, 14px);
    letter-spacing: 0.5px;
    max-width: 100%;
  }

  .acoes-card--detail {
    max-width: calc(100vw - 64px);
  }

  .acoes-card__inner--detail {
    height: 520px;
    padding: 28px 24px;
  }

  .acoes-detail__title {
    font-size: clamp(18px, 4vw, 26px);
  }

  .acoes-detail__text {
    font-size: clamp(14px, 2.8vw, 18px);
  }
}

@media (max-width: 768px) {
  .logo__icon {
    height: 48px;
  }

  .logo__wordmark {
    height: 16px;
  }

  #nav ul li a {
    font-size: 20px;
  }

  #hero {
    min-height: 500px;
  }

  .content-blocks {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .content-block {
    padding: 30px 20px;
  }

  #about {
    padding: 60px 0 80px;
  }

  .about-title-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-subtitle {
    text-align: left;
  }

  .about-specialists {
    grid-template-columns: 1fr;
    max-width: 320px;
  }

  .pilares-outer {
    padding: 50px 24px;
  }

  .pilares-inner {
    height: auto;
    padding: 36px 24px 40px;
    border-radius: 20px;
  }

  .pilares-title {
    margin-bottom: 36px;
  }

  .pilares-cards {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .pilares-cards .pilar-card:last-child {
    grid-column: 1;
  }

  .pilares-bg-number {
    font-size: clamp(100px, 28vw, 140px);
  }

  .pilares-bg-number:nth-of-type(1) {
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .pilares-bg-number:nth-of-type(2),
  .pilares-bg-number:nth-of-type(3) {
    display: none;
  }

  #solucao {
    padding: 60px 0;
  }

  .solucao-container {
    padding: 0 20px;
  }

  .solucao-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .solucao-title {
    font-size: clamp(44px, 9vw, 58px);
  }

  .solucao-subtitle {
    max-width: 100%;
  }

  /* Alertas */
  #alertas {
    padding: 72px 0 96px;
  }

  .alertas-container {
    padding: 0 20px;
  }

  .alertas-hero-inner {
    padding: 48px 28px 96px;
  }

  .alertas-title {
    font-size: 36px;
  }

  .alertas-info-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .alertas-box-wrapper {
    margin-top: -60px;
  }

  .alertas-box {
    padding: 24px 24px 28px;
  }

  .alertas-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 24px;
  }

  /* Ações */
  .acoes-carousel__container {
    padding: 0 24px;
  }

  /* RJ section mobile */
  .rj-section {
    height: auto;
  }

  .rj-hero__title {
    font-size: clamp(32px, 8vw, 50px);
    line-height: 1;
  }

  .rj-hero__title-regular,
  .rj-hero__title-accent {
    font-size: inherit;
  }
}

@media (max-width: 480px) {
  .logo__icon {
    height: 40px;
  }

  .logo__wordmark {
    height: 14px;
  }

  .hero-number {
    font-size: 50px;
  }

  .hero-billions {
    font-size: 35px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .pilares-outer {
    padding: 40px 20px;
  }

  .pilares-inner {
    padding: 32px 20px 36px;
  }

  .pilar-card {
    padding: 22px 20px;
  }

  .solucao-container {
    padding: 0 16px;
  }

  .solucao-grid {
    gap: 28px;
  }

  .solucao-title {
    font-size: 40px;
  }

  .solucao-right {
    margin-top: 32px;
  }

  .alertas-container {
    padding: 0 16px;
  }

  .alertas-hero-inner {
    padding: 40px 20px 90px;
  }

  .alertas-title {
    font-size: 32px;
  }

  .alertas-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .alertas-box {
    padding: 22px 20px 26px;
  }

  .acoes-carousel__container {
    padding: 0 16px;
  }

  /* Ações cards mobile estrito */
  .acoes-card--hero .acoes-card__inner {
    width: calc(100vw - 32px);
    padding: 24px;
  }

  .acoes-card--detail {
    max-width: calc(100vw - 32px);
  }

  .acoes-card__inner--detail {
    padding: 22px 20px;
  }

}

/* =========================
   Tokens (cores parecidas) - já definidos em :root como --rj-*
========================= */

.rj-section {
  width: 100%;
  height: 1139px;
  background: #0b1729;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
}

/* =========================
   HERO
========================= */
.rj-hero {
  position: relative;
  min-height: 1139px;
  overflow: hidden;
  display: block;
}

.rj-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 552px;
  object-fit: cover;
  z-index: 0;
}

.rj-hero__overlay {
  position: absolute;
  inset: 0;
  height: 552px;      /* IMPORTANTE: mesmo height da imagem */
  z-index: 1;
  pointer-events: none;

  background: linear-gradient(
    to bottom,
    rgba(7, 27, 51, 0.15) 0%,
    rgba(7, 27, 51, 0.45) 35%,
    rgba(11, 23, 41, 0.95) 100%
  );
}

.rj-hero__caption {
  position: absolute;
  top: 14px;
  right: 22px;
  z-index: 2;
  margin: 0;
  text-align: right;
text-shadow: 0 4px 20.2px rgba(0, 0, 0, 0.41);
font-size: 16px;
font-style: normal;
font-weight: 700;
line-height: 110%;
  color: rgba(255, 255, 255, 0.94);
  white-space: nowrap;
}

.rj-hero__inner {
  position: absolute;
  left: 0;
  right: 0;
  top: 500px;
  bottom: 118px;
  z-index: 2;
  width: 100%;
  max-width:1101px;
  margin: 0 auto;
  padding: 0 24px;
}

.rj-hero__title {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: 89px;
  font-style: normal;
  font-weight: 700;
  line-height: 81px; /* 91.011% */
  letter-spacing: -2.67px;
}

.rj-hero__title-strong {
  display: inline;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.rj-hero__title-regular {
  display: inline;
  font-weight: 400;
  font-size: 89px;
  margin-left: 6px;
}

.rj-hero__title-accent {
  display: block;
  margin-top: 4px;
  font-weight: 800;
  font-size: 89px;
  letter-spacing: -0.03em;
}

.rj-hero__info {
  display: grid;
  grid-template-columns: 236px minmax(0, 1fr);
  gap: 16px;
  align-items: flex-start;
  max-width: 1101px;
}

.rj-hero__tag {
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 0 8.025px 8.025px 8.025px;
  padding: 12px 10px;
  color: #11182B;
  text-transform: uppercase;
  letter-spacing: 1.75px
  font-size: 17.504px;
  font-weight: 500;
  line-height: normal;
  background: #D9D9D9;
}

.rj-hero__text {
  margin: 0;
  color: #FFFFFF;
  font-family: "Neue Haas Grotesk Display Pro";
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 2px;
  max-width: 732px;
}

/* =========================
   GRID / BOX
========================= */
.rj-grid-wrap {
  padding: 0 24px 92px;
  
}

.rj-grid-box {
  max-width: 1048px;
  margin: -78px auto 0;
  position: relative;
  bottom: 150px;
  z-index: 3;
}

.rj-grid {
 border-radius: 8.03px 8.025px 8.025px 8.025px;
border: 1px solid #FFF;
background: #0B1729;
  padding: 34px 38px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px 56px;
  box-shadow: 0 14px 34px rgba(1, 11, 24, 0.33);
}

.rj-card {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

.rj-icon {
  width: 46px;
height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.9);
  border-radius: 6px;
  background-color: #D9D9D9;
}

.rj-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.rj-card__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.96);
  font-size: 24px;
font-style: normal;
font-weight: 700;
line-height: 110%; /* 26.4px */
  max-width: 280.167px;
}

/* =========================
   Responsivo (Alertas)
========================= */
@media (max-width: 1200px) {
  .rj-hero__inner {
    bottom: 112px;
  }

  .rj-card__text {
    font-size: 14px;
  }
}

@media (max-width: 900px) {
  .rj-hero {
    min-height: 560px;
  }

  .rj-hero__inner {
    bottom: 106px;
    padding: 0 20px;
  }

  .rj-hero__info {
    grid-template-columns: 1fr;
    max-width: 580px;
  }

  .rj-hero__tag {
    max-width: 280px;
  }

  .rj-grid-wrap {
    padding: 0 20px 76px;
  }

  .rj-grid-box {
    margin-top: -70px;
  }

  .rj-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
    padding: 28px;
  }
}

@media (max-width: 768px) {
  .rj-section {
    height: auto;
  }

  .rj-hero {
    min-height: auto;
  }

  .rj-hero__inner {
    position: relative;
    top: auto;
    bottom: auto;
    padding: 32px 20px;
  }

  .rj-hero__title {
    font-size: clamp(32px, 8vw, 50px);
    line-height: 1;
    margin-bottom: 24px;
  }

  .rj-hero__title-regular,
  .rj-hero__title-accent {
    font-size: inherit;
  }

  .rj-hero__bg {
    position: relative;
    height: 300px;
  }

  .rj-hero__overlay {
    height: 300px;
  }

  .rj-hero__info {
    grid-template-columns: 1fr;
  }

  .rj-hero__tag {
    font-size: 13px;
  }

  .rj-hero__text {
    font-size: 16px;
  }

  .rj-grid-box {
    bottom: 0;
    margin-top: 0;
  }

  .rj-grid-wrap {
    padding: 24px 20px 40px;
  }

  .rj-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    padding: 24px;
  }

  .rj-card__text {
    font-size: 14px;
    max-width: 100%;
  }
}

@media (max-width: 560px) {
  .rj-hero__caption {
    right: 10px;
    top: 10px;
    font-size: 9px;
  }

  .rj-hero__inner {
    padding: 24px 16px;
  }

  .rj-hero__bg {
    height: 220px;
  }

  .rj-hero__overlay {
    height: 220px;
  }

  .rj-hero__title {
    font-size: clamp(28px, 9.6vw, 40px);
    margin-bottom: 16px;
  }

  .rj-hero__text {
    font-size: 14px;
    line-height: 1.42;
  }

  .rj-grid-wrap {
    padding: 16px 16px 40px;
  }

  .rj-grid {
    grid-template-columns: 1fr;
    padding: 20px;
    gap: 20px;
  }

  .rj-card__text {
    font-size: 13.5px;
    max-width: 100%;
  }
}

/* =========================
   FAQ
========================= */

.faq {
  margin-top: 200px;
  position: relative;
  background: var(--faq-bg);
  overflow: hidden;
  padding: 64px 0 96px;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
}

.faq__pattern {
  pointer-events: none;
  position: absolute;
  inset: 0;
  opacity: 0.55;
  background-image: repeating-linear-gradient(
    135deg,
    var(--faq-pattern) 0px,
    var(--faq-pattern) 1px,
    transparent 1px,
    transparent 40px
  );
}

.faq__container {
  position: relative;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

.faq__header {
  margin-bottom: 48px;
}

.faq__title {
  margin: 0;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--faq-title);
  font-size: clamp(34px, 4.4vw, 56px);
}

.faq__subtitleRow {
  display: flex;
  align-items: flex-end;
  gap: 14px;
  margin-top: 6px;
}

.faq__subtitle {
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--faq-subtitle);
  font-size: clamp(28px, 3.6vw, 44px);
}

.faq__avatars {
  display: flex;
  align-items: center;
  margin-bottom: 2px;
}

.faq__avatar {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid var(--faq-bg);
  margin-left: -10px;
}

.faq__avatar:first-child {
  margin-left: 0;
}

.faq__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.faq__col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Card */
.faq-card {
  border-radius: 14px;
  border: 1px solid var(--faq-border);
  background: var(--faq-card);
  box-shadow: var(--faq-shadow);
  transition:
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
  overflow: hidden;
}

.faq-card:hover {
  box-shadow: var(--faq-shadow-hover);
}

.faq-card.is-open {
  border-color: var(--faq-open-border);
  box-shadow: var(--faq-shadow-hover);
}

.faq-card__btn {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  background: transparent;
  border: 0;
  text-align: left;
  cursor: pointer;
}

.faq-card__num {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--faq-number-bg);
  color: var(--faq-number-fg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 12px;
  flex: 0 0 auto;
}

.faq-card__q {
  flex: 1 1 auto;
  margin: 0;
  color: var(--faq-title);
  font-weight: 600;
  line-height: 1.25;
  font-size: 14.5px;
}

.faq-card__chev {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--faq-chevron);
  transition: transform 0.25s ease;
}

.faq-card.is-open .faq-card__chev {
  transform: rotate(180deg);
}

/* animação da resposta (grid rows) */
.faq-card__aWrap {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition:
    grid-template-rows 0.28s ease,
    opacity 0.2s ease;
}

.faq-card.is-open .faq-card__aWrap {
  grid-template-rows: 1fr;
  opacity: 1;
}

.faq-card__aInner {
  overflow: hidden;
}

.faq-card__a {
  padding: 0 18px 18px 18px;
}

/* alinha resposta com a pergunta (depois do número) */
@media (min-width: 768px) {
  .faq-card__a {
    padding-left: 52px;
  }
}

.faq-card__p {
  margin: 0;
  color: var(--faq-answer);
  font-size: 14px;
  line-height: 1.6;
}

.faq-card__p + .faq-card__p {
  margin-top: 12px;
}

/* Responsivo FAQ */
@media (max-width: 900px) {
  .faq__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

@media (max-width: 768px) {
  .faq {
    margin-top: 0;
  }
}

@media (max-width: 520px) {
  .faq {
    padding: 56px 0 72px;
  }

  .faq__avatar {
    width: 38px;
    height: 38px;
    margin-left: -8px;
  }

  .faq-card__btn {
    padding: 14px 14px;
  }

  .faq-card__a {
    padding: 0 14px 16px 14px;
  }
}

/* ========== Contato (CTA) ========== */

:root {
  --navy-deep: #071b33;
  --bg-muted: #f3f4f6;
  --text: #0b1324;
  --muted: #6b7280;
  --white: #ffffff;
}

.contact {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
}

/* Coluna esquerda */
.contact__media {
  width: 100%;
  height: 280px;
  position: relative;
  overflow: hidden;
}

.contact__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Coluna direita */
.contact__content {
  width: 100%;
  background: var(--bg-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
}

.contact__inner {
  width: 100%;
  max-width: 520px;
}

.contact__title {
  margin: 0 0 18px;
  color: #11182b;
  font-size: clamp(40px, 10vw, 90px);
  font-style: normal;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: clamp(-1.5px, -0.4vw, -3.878px);
}

.contact__text {
  margin: 0 0 28px;
  color: #7c8891;
  font-size: clamp(16px, 3.5vw, 27px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.54px;
  text-transform: capitalize;
}

.contact__text br {
  display: none;
}

.contact__buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.contact__btn {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  background: #11182b;
  color: var(--white);
  border-radius: 7px;
  padding: clamp(14px, 2vw, 18px);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.contact__btn:hover {
  opacity: 0.92;
}

.contact__icon {
  width: 20px;
  height: 20px;
  display: inline-flex;
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.92);
}

.contact__icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.contact__icon svg {
  width: 20px;
  height: 20px;
}

.contact__btnText {
  font-size: clamp(12px, 2.5vw, 16px);
  font-weight: 600;
  letter-spacing: 0.1px;
  word-break: break-all;
}

/* Locations */
.contact__locations {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
}

.contact__loc {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.contact__locText {
  font-size: clamp(16px, 3vw, 24px);
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.479px;
  text-transform: capitalize;
}

.contact__pin {
  width: 16px;
  height: 16px;
  display: inline-flex;
  flex-shrink: 0;
  color: var(--muted);
}

.contact__pin svg {
  width: 16px;
  height: 16px;
}

.contact__pin img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

/* Desktop: 2 colunas lado a lado */
@media (min-width: 768px) {
  .contact {
    flex-direction: row;
    min-height: auto;
    height: clamp(600px, 70vw, 1000px);
  }

  .contact__media {
    width: 50%;
    height: 100%;
  }

  .contact__content {
    width: 50%;
    padding: 64px 48px;
  }

  .contact__text br {
    display: inline;
  }

  .contact__btn--whatsapp {
    max-width: 362px;
  }

  .contact__btnText {
    font-size: 16px;
    word-break: normal;
  }
}

@media (min-width: 1024px) {
  .contact__content {
    padding: 80px 96px;
  }

  .contact__title {
    font-size: 90px;
    letter-spacing: -3.878px;
  }

  .contact__text {
    font-size: 27px;
  }

  .contact__btnText {
    font-size: clamp(16px, 1.2vw, 24px);
  }
}

/* ========== Footer ========== */

.site-footer {
  position: relative;
  width: 100%;
  background-color: #071b33;
  padding: clamp(16px, 3vw, 24px) 0;
}

.site-footer::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 16px;
  background-color: #020617;
}

.site-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 32px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-footer__inner > img {
  max-width: clamp(140px, 30vw, 100%);
  height: auto;
}

.site-footer__logo img {
  display: block;
  max-width: clamp(60px, 12vw, 100%);
  height: auto;
}

@media (max-width: 480px) {
  .site-footer__inner {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 12px;
  }

  .site-footer__inner > img {
    max-width: 200px;
  }

  .site-footer__logo img {
    max-width: 70px;
  }
}
