/* ==========================================================
   VK SERVIÇOS DE ENGENHARIA E CONSULTORIA
   CSS UNIFICADO DA PÁGINA INICIAL
========================================================== */


/* ==========================================================
   01 — BASE GLOBAL
========================================================== */

:root {
  --azul-escuro: #0a1f44;
  --azul: #1d4ed8;
  --azul-2: #0e3a8a;
  --cinza: #f7f9fc;
  --texto: #1f2937;

  --sidebar-fechada: 84px;
  --sidebar-aberta: 310px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 20px;
}

body {
  min-height: 100vh;

  padding-left: var(--sidebar-fechada);

  background:
    linear-gradient(
      to bottom,
      #f7f9fc,
      #eaeff5
    );

  color: var(--texto);

  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;

  overflow-x: hidden;

  transition: padding-left 0.35s ease;
}

body.sidebar-aberta {
  padding-left: var(--sidebar-aberta);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
}

main {
  width: 100%;
}

.container {
  width: 100%;
  max-width: 1400px;

  margin: 0 auto;
  padding: 40px;
}


/* ==========================================================
   02 — BARRA LATERAL RETRÁTIL
========================================================== */

.sidebar-site {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 10000;

  width: var(--sidebar-fechada);
  height: 100dvh;

  display: flex;
  flex-direction: column;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 20% 10%,
      rgba(246, 196, 83, 0.13),
      transparent 28%
    ),
    linear-gradient(
      180deg,
      #080d17 0%,
      #0a1f44 58%,
      #061226 100%
    );

  border-right:
    1px solid rgba(255, 255, 255, 0.1);

  box-shadow:
    12px 0 35px rgba(0, 0, 0, 0.2);

  transition:
    width 0.35s ease,
    transform 0.35s ease;
}

.sidebar-site.aberta {
  width: var(--sidebar-aberta);
}


/* ==========================================================
   03 — TOPO DA BARRA LATERAL
========================================================== */

.sidebar-topo {
  min-height: 92px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;

  padding: 18px;

  border-bottom:
    1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-logo {
  min-width: 0;

  display: flex;
  align-items: center;

  overflow: hidden;

  text-decoration: none;
}

.sidebar-logo img {
  width: 185px;
  max-width: none;
  height: 48px;

  object-fit: contain;
  object-position: left center;

  opacity: 0;
  transform: translateX(-18px);

  transition:
    opacity 0.25s ease,
    transform 0.35s ease;
}

.sidebar-site.aberta .sidebar-logo img {
  opacity: 1;
  transform: translateX(0);
}


/* ==========================================================
   04 — BOTÕES DA BARRA LATERAL
========================================================== */

.sidebar-toggle,
.sidebar-mobile-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: #0a1f44;
  background: #f6c453;

  cursor: pointer;

  box-shadow:
    0 10px 24px rgba(246, 196, 83, 0.22);

  transition:
    background 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.sidebar-toggle {
  flex: 0 0 48px;

  width: 48px;
  height: 48px;

  border-radius: 16px;

  font-size: 1.05rem;
}

.sidebar-toggle:hover,
.sidebar-mobile-toggle:hover {
  background: #ffd773;

  transform: translateY(-2px);

  box-shadow:
    0 14px 28px rgba(246, 196, 83, 0.28);
}


/* ==========================================================
   05 — MENU DA BARRA LATERAL
========================================================== */

.sidebar-menu {
  flex: 1;

  display: flex;
  flex-direction: column;
  gap: 7px;

  padding: 22px 14px;

  overflow-x: hidden;
  overflow-y: auto;

  scrollbar-width: thin;
  scrollbar-color:
    rgba(246, 196, 83, 0.45)
    transparent;
}

.sidebar-menu::-webkit-scrollbar {
  width: 5px;
}

.sidebar-menu::-webkit-scrollbar-track {
  background: transparent;
}

.sidebar-menu::-webkit-scrollbar-thumb {
  border-radius: 999px;

  background:
    rgba(246, 196, 83, 0.45);
}

.sidebar-menu a,
.sidebar-energia {
  min-height: 54px;

  display: flex;
  align-items: center;
  gap: 17px;

  padding: 0 16px;

  border-radius: 15px;

  color: #e8edf7;

  text-decoration: none;
  white-space: nowrap;

  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.sidebar-menu a i,
.sidebar-energia i {
  flex: 0 0 24px;

  width: 24px;

  color: #f6c453;

  font-size: 1.08rem;
  text-align: center;
}

.sidebar-menu a span,
.sidebar-energia span {
  opacity: 0;
  transform: translateX(-8px);

  font-weight: 700;

  transition:
    opacity 0.22s ease,
    transform 0.3s ease;
}

.sidebar-site.aberta .sidebar-menu a span,
.sidebar-site.aberta .sidebar-energia span {
  opacity: 1;
  transform: translateX(0);
}

.sidebar-menu a:hover,
.sidebar-energia:hover {
  color: #ffffff;
  background:
    rgba(255, 255, 255, 0.1);

  transform: translateX(3px);
}


/* ==========================================================
   06 — BOTÃO SOLICITAR ORÇAMENTO
========================================================== */

.sidebar-menu .sidebar-orcamento {
  margin-top: 8px;

  color: #0a1f44;
  background: #f6c453;
}

.sidebar-menu .sidebar-orcamento i {
  color: #0a1f44;
}

.sidebar-menu .sidebar-orcamento:hover {
  color: #0a1f44;
  background: #ffd773;
}


/* ==========================================================
   07 — RODAPÉ DA BARRA LATERAL
========================================================== */

.sidebar-rodape {
  padding: 16px 14px 20px;

  border-top:
    1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-energia {
  background:
    rgba(255, 255, 255, 0.08);

  border:
    1px solid rgba(246, 196, 83, 0.22);
}


/* ==========================================================
   08 — BOTÃO MOBILE
========================================================== */

.sidebar-mobile-toggle {
  display: none;

  position: fixed;
  top: 18px;
  left: 18px;
  z-index: 9998;

  width: 50px;
  height: 50px;

  border-radius: 16px;

  font-size: 1.1rem;
}


/* ==========================================================
   09 — FUNDO ESCURO MOBILE
========================================================== */

.sidebar-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;

  background:
    rgba(3, 10, 24, 0.62);

  backdrop-filter: blur(3px);

  opacity: 0;
  visibility: hidden;

  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}


/* ==========================================================
   10 — HEADER HORIZONTAL ANTIGO
========================================================== */

.topo-site {
  display: none !important;
}


/* ==========================================================
   11 — RESPONSIVIDADE DA BARRA LATERAL
========================================================== */

@media (max-width: 900px) {
  body,
  body.sidebar-aberta {
    padding-left: 0;
  }

  .container {
    padding-right: 20px;
    padding-left: 20px;
  }

  .sidebar-site {
    width: min(310px, 88vw);

    transform: translateX(-105%);
  }

  .sidebar-site.aberta {
    width: min(310px, 88vw);

    transform: translateX(0);
  }

  .sidebar-logo img,
  .sidebar-menu a span,
  .sidebar-energia span {
    opacity: 1;
    transform: none;
  }

  .sidebar-mobile-toggle {
    display: inline-flex;
  }

  body.sidebar-aberta {
    overflow: hidden;
  }

  body.sidebar-aberta .sidebar-overlay {
    opacity: 1;
    visibility: visible;
  }
}

@media (max-width: 480px) {
  .container {
    padding-right: 16px;
    padding-left: 16px;
  }

  .sidebar-site,
  .sidebar-site.aberta {
    width: min(300px, 90vw);
  }

  .sidebar-topo {
    min-height: 82px;
    padding: 15px;
  }

  .sidebar-menu {
    padding: 18px 12px;
  }

  .sidebar-menu a,
  .sidebar-energia {
    min-height: 51px;
    padding: 0 14px;
  }

  .sidebar-mobile-toggle {
    top: 14px;
    left: 14px;

    width: 46px;
    height: 46px;
  }
}

/* ==========================================================
   12 — HERO PRINCIPAL
========================================================== */

.hero-principal {
  position: relative;

  min-height: 680px;

  display: flex;
  align-items: center;

  padding: 90px 24px;

  overflow: hidden;

  color: #ffffff;

  background:
    linear-gradient(
      90deg,
      rgba(4, 20, 42, 0.97) 0%,
      rgba(6, 29, 57, 0.94) 48%,
      rgba(8, 38, 69, 0.82) 100%
    ),
    url("assets/img/servicos2.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


/* ==========================================================
   13 — SOBREPOSIÇÃO DA HERO
========================================================== */

.hero-principal-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;

  background:
    radial-gradient(
      circle at 75% 40%,
      rgba(32, 191, 211, 0.12),
      transparent 38%
    );

  pointer-events: none;
}


/* ==========================================================
   14 — ELEMENTOS DECORATIVOS
========================================================== */

.hero-elemento {
  position: absolute;
  z-index: 1;

  border-radius: 50%;

  pointer-events: none;
}

.hero-elemento-01 {
  top: -180px;
  right: -120px;

  width: 500px;
  height: 500px;

  border:
    1px solid rgba(255, 255, 255, 0.08);
}

.hero-elemento-02 {
  right: 28%;
  bottom: -160px;

  width: 300px;
  height: 300px;

  border:
    1px solid rgba(32, 191, 211, 0.13);
}


/* ==========================================================
   15 — GRADE DA HERO
========================================================== */

.hero-principal-grid {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns:
    minmax(0, 1.2fr)
    minmax(340px, 0.8fr);

  align-items: center;
  gap: 70px;
}

.hero-principal-conteudo {
  max-width: 780px;
}


/* ==========================================================
   16 — TAG DA HERO
========================================================== */

.hero-principal-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  margin-bottom: 24px;
  padding: 9px 16px;

  border:
    1px solid rgba(255, 255, 255, 0.16);

  border-radius: 999px;

  color: #9ddce6;

  background:
    rgba(255, 255, 255, 0.06);

  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;

  backdrop-filter: blur(8px);
}

.hero-principal-tag i {
  color: #f6c453;
}


/* ==========================================================
   17 — TÍTULO E DESCRIÇÃO
========================================================== */

.hero-principal h1 {
  margin-bottom: 25px;

  color: #ffffff;

  font-size:
    clamp(2.7rem, 5vw, 4.7rem);

  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.hero-principal h1 strong {
  color: #36c7dc;
}

.hero-principal-descricao {
  max-width: 740px;

  margin-bottom: 34px;

  color:
    rgba(255, 255, 255, 0.78);

  font-size: 1.08rem;
  line-height: 1.8;
}


/* ==========================================================
   18 — BOTÕES DA HERO
========================================================== */

.hero-principal-acoes {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;

  margin-bottom: 40px;
}

.btn-hero-principal,
.btn-hero-secundario {
  min-height: 54px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 0 25px;

  border-radius: 10px;

  font-weight: 800;
  text-decoration: none;

  transition:
    transform 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.btn-hero-principal {
  color: #071722;

  background:
    linear-gradient(
      135deg,
      #f6c453,
      #ffd773
    );

  box-shadow:
    0 15px 35px
    rgba(246, 196, 83, 0.25);
}

.btn-hero-principal:hover {
  transform: translateY(-3px);

  box-shadow:
    0 20px 42px
    rgba(246, 196, 83, 0.34);
}

.btn-hero-secundario {
  border:
    1px solid rgba(255, 255, 255, 0.24);

  color: #ffffff;

  background:
    rgba(255, 255, 255, 0.05);
}

.btn-hero-secundario:hover {
  transform: translateY(-3px);

  border-color:
    rgba(255, 255, 255, 0.45);

  background:
    rgba(255, 255, 255, 0.1);
}


/* ==========================================================
   19 — INDICADORES DA HERO
========================================================== */

.hero-principal-indicadores {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.hero-indicador {
  position: relative;

  min-width: 145px;

  display: flex;
  flex-direction: column;
  gap: 3px;

  padding-right: 28px;
}

.hero-indicador:not(:last-child)::after {
  content: "";

  position: absolute;
  top: 5px;
  right: 0;

  width: 1px;
  height: 42px;

  background:
    rgba(255, 255, 255, 0.16);
}

.hero-indicador strong {
  color: #f6c453;

  font-size: 1.35rem;
  line-height: 1.2;
}

.hero-indicador span {
  color:
    rgba(255, 255, 255, 0.63);

  font-size: 0.8rem;
}


/* ==========================================================
   20 — CARD DE DIAGNÓSTICO
========================================================== */

.hero-diagnostico {
  padding: 35px;

  border:
    1px solid rgba(255, 255, 255, 0.13);

  border-radius: 22px;

  background:
    rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(18px);

  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-diagnostico-tag {
  display: inline-block;

  margin-bottom: 16px;

  color: #f6c453;

  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero-diagnostico h2 {
  margin-bottom: 17px;

  color: #ffffff;

  font-size: 1.55rem;
  line-height: 1.35;
}

.hero-diagnostico-intro {
  margin-bottom: 24px;

  color:
    rgba(255, 255, 255, 0.7);

  font-size: 0.93rem;
  line-height: 1.65;
}


/* ==========================================================
   21 — LISTA DO DIAGNÓSTICO
========================================================== */

.hero-diagnostico ul {
  display: grid;
  gap: 14px;

  margin: 0 0 28px;
  padding: 0;

  list-style: none;
}

.hero-diagnostico li {
  display: flex;
  align-items: flex-start;
  gap: 11px;

  color:
    rgba(255, 255, 255, 0.74);

  font-size: 0.91rem;
  line-height: 1.5;
}

.hero-diagnostico li i {
  margin-top: 4px;

  color: #36c7dc;

  font-size: 0.82rem;
}


/* ==========================================================
   22 — WHATSAPP DO DIAGNÓSTICO
========================================================== */

.hero-diagnostico-whatsapp {
  min-height: 58px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;

  padding: 10px 18px;

  border-radius: 11px;

  color: #ffffff;
  background: #25d366;

  font-weight: 800;
  text-decoration: none;

  transition:
    transform 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.hero-diagnostico-whatsapp i {
  font-size: 1.45rem;
}

.hero-diagnostico-whatsapp span {
  display: flex;
  flex-direction: column;

  line-height: 1.25;
}

.hero-diagnostico-whatsapp small {
  color:
    rgba(255, 255, 255, 0.78);

  font-size: 0.7rem;
  font-weight: 600;
}

.hero-diagnostico-whatsapp:hover {
  transform: translateY(-3px);

  background: #20bd5a;

  box-shadow:
    0 15px 32px
    rgba(37, 211, 102, 0.25);
}


/* ==========================================================
   23 — RESPONSIVIDADE DA HERO
========================================================== */

@media (max-width: 1050px) {
  .hero-principal {
    min-height: auto;

    padding: 110px 24px 80px;
  }

  .hero-principal-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .hero-principal-conteudo {
    max-width: 850px;
  }

  .hero-diagnostico {
    width: 100%;
    max-width: 700px;
  }
}

@media (max-width: 700px) {
  .hero-principal {
    padding: 100px 20px 65px;

    background-position: 60% center;
  }

  .hero-principal h1 {
    font-size:
      clamp(2.15rem, 10vw, 3.15rem);
  }

  .hero-principal-descricao {
    font-size: 1rem;
  }

  .hero-principal-acoes {
    flex-direction: column;
  }

  .btn-hero-principal,
  .btn-hero-secundario {
    width: 100%;
  }

  .hero-principal-indicadores {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .hero-indicador {
    min-width: 0;

    padding-right: 0;
    padding-bottom: 18px;

    border-bottom:
      1px solid rgba(255, 255, 255, 0.13);
  }

  .hero-indicador:not(:last-child)::after {
    display: none;
  }

  .hero-indicador:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .hero-diagnostico {
    padding: 27px 22px;
  }
}

@media (max-width: 480px) {
  .hero-principal {
    padding: 92px 16px 58px;
  }

  .hero-principal-tag {
    font-size: 0.69rem;
    line-height: 1.4;
  }

  .hero-principal h1 {
    font-size: 2.15rem;
  }

  .hero-diagnostico h2 {
    font-size: 1.35rem;
  }
}

/* ==========================================================
   24 — SEÇÃO SOBRE
========================================================== */

.sobre-resumo {
  position: relative;

  padding: 100px 24px;

  overflow: hidden;

  background:
    linear-gradient(
      180deg,
      #f7f9fc 0%,
      #ffffff 100%
    );
}


/* ==========================================================
   25 — GRADE DA SEÇÃO SOBRE
========================================================== */

.sobre-resumo-grid {
  display: grid;
  grid-template-columns:
    minmax(320px, 0.85fr)
    minmax(0, 1.15fr);

  align-items: center;
  gap: 70px;
}


/* ==========================================================
   26 — IMAGEM DA SEÇÃO SOBRE
========================================================== */

.sobre-resumo-img {
  position: relative;

  width: 100%;
  max-width: 470px;

  margin: 0 auto;
}

.sobre-resumo-img::before {
  content: "";

  position: absolute;
  top: -16px;
  left: -16px;
  z-index: 0;

  width: 140px;
  height: 140px;

  border-top: 5px solid #f6c453;
  border-left: 5px solid #f6c453;

  border-radius: 24px 0 0 0;
}

.sobre-resumo-img::after {
  content: "";

  position: absolute;
  right: -16px;
  bottom: -16px;
  z-index: 0;

  width: 140px;
  height: 140px;

  border-right: 5px solid #0a1f44;
  border-bottom: 5px solid #0a1f44;

  border-radius: 0 0 24px 0;
}

.sobre-resumo-img img {
  position: relative;
  z-index: 1;

  width: 100%;
  min-height: 500px;

  object-fit: cover;
  object-position: center top;

  border-radius: 24px;

  box-shadow:
    0 28px 65px rgba(10, 31, 68, 0.2);
}


/* ==========================================================
   27 — CONTEÚDO DA SEÇÃO SOBRE
========================================================== */

.sobre-resumo-texto {
  max-width: 740px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  margin-bottom: 20px;
  padding: 9px 16px;

  border-radius: 999px;

  color: #0a1f44;
  background: rgba(246, 196, 83, 0.18);

  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-tag::before {
  content: "";

  width: 28px;
  height: 2px;

  background: #f6c453;
}

.sobre-resumo-texto h2 {
  margin-bottom: 24px;

  color: #0a1f44;

  font-size:
    clamp(2.2rem, 4vw, 3.5rem);

  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.sobre-resumo-texto > p {
  margin-bottom: 24px;

  color: #5a667a;

  font-size: 1.06rem;
  line-height: 1.85;
}


/* ==========================================================
   28 — LISTA DE ESPECIALIDADES
========================================================== */

.sobre-resumo-texto ul {
  display: grid;
  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 14px;

  margin: 28px 0;
  padding: 0;

  list-style: none;
}

.sobre-resumo-texto li {
  position: relative;

  min-height: 72px;

  padding:
    17px 16px 17px 48px;

  border:
    1px solid rgba(10, 31, 68, 0.08);

  border-radius: 15px;

  color: #293750;
  background: #ffffff;

  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.55;

  box-shadow:
    0 8px 24px rgba(10, 31, 68, 0.06);

  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.sobre-resumo-texto li::before {
  content: "\f00c";

  position: absolute;
  top: 18px;
  left: 17px;

  width: 22px;
  height: 22px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  color: #0a1f44;
  background: #f6c453;

  font-family: "Font Awesome 6 Free";
  font-size: 0.7rem;
  font-weight: 900;
}

.sobre-resumo-texto li:hover {
  transform: translateY(-4px);

  border-color:
    rgba(246, 196, 83, 0.5);

  box-shadow:
    0 15px 32px
    rgba(10, 31, 68, 0.1);
}


/* ==========================================================
   29 — INFORMAÇÕES PROFISSIONAIS
========================================================== */

.sobre-info {
  position: relative;

  display: grid;
  gap: 8px;

  margin: 30px 0;
  padding: 23px 24px 23px 29px;

  overflow: hidden;

  border:
    1px solid rgba(10, 31, 68, 0.08);

  border-radius: 17px;

  background:
    linear-gradient(
      135deg,
      rgba(10, 31, 68, 0.04),
      rgba(246, 196, 83, 0.09)
    );
}

.sobre-info::before {
  content: "";

  position: absolute;
  inset: 0 auto 0 0;

  width: 5px;

  background:
    linear-gradient(
      180deg,
      #f6c453,
      #0a1f44
    );
}

.sobre-info p {
  margin: 0;

  color: #334155;

  font-size: 0.95rem;
  line-height: 1.65;
}

.sobre-info strong {
  color: #0a1f44;
}


/* ==========================================================
   30 — BOTÃO DA SEÇÃO SOBRE
========================================================== */

.btn-primario {
  min-height: 52px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 0 26px;

  border-radius: 999px;

  color: #0a1f44;
  background: #f6c453;

  font-weight: 900;
  text-decoration: none;

  box-shadow:
    0 14px 30px
    rgba(246, 196, 83, 0.26);

  transition:
    transform 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.btn-primario:hover {
  transform: translateY(-3px);

  background: #ffd773;

  box-shadow:
    0 18px 38px
    rgba(246, 196, 83, 0.34);
}


/* ==========================================================
   31 — RESPONSIVIDADE DA SEÇÃO SOBRE
========================================================== */

@media (max-width: 1000px) {
  .sobre-resumo-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .sobre-resumo-img {
    width: min(520px, 100%);
  }

  .sobre-resumo-texto {
    max-width: 850px;
    margin: 0 auto;
  }
}

@media (max-width: 700px) {
  .sobre-resumo {
    padding: 80px 20px;
  }

  .sobre-resumo-grid {
    gap: 48px;
  }

  .sobre-resumo-img::before {
    top: -10px;
    left: -10px;

    width: 100px;
    height: 100px;
  }

  .sobre-resumo-img::after {
    right: -10px;
    bottom: -10px;

    width: 100px;
    height: 100px;
  }

  .sobre-resumo-img img {
    min-height: 390px;

    border-radius: 20px;
  }

  .sobre-resumo-texto h2 {
    font-size: 2.1rem;
  }

  .sobre-resumo-texto ul {
    grid-template-columns: 1fr;
  }

  .sobre-resumo-texto li {
    min-height: auto;
  }

  .sobre-info {
    padding: 20px 18px 20px 23px;
  }

  .btn-primario {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .sobre-resumo {
    padding:
      70px 16px;
  }

  .sobre-resumo-img img {
    min-height: 330px;
  }

  .sobre-resumo-texto h2 {
    font-size: 1.85rem;
  }

  .sobre-resumo-texto > p {
    font-size: 1rem;
  }
}

/* ==========================================================
   32 — SEÇÃO POR QUE ESCOLHER A VK
========================================================== */

.porque-vk {
  position: relative;

  padding: 100px 24px;

  overflow: hidden;

  background: #ffffff;
}

.porque-vk::before {
  content: "";

  position: absolute;
  top: -180px;
  right: -180px;

  width: 420px;
  height: 420px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(246, 196, 83, 0.12),
      transparent 70%
    );

  pointer-events: none;
}


/* ==========================================================
   33 — CABEÇALHO DA SEÇÃO
========================================================== */

.section-header {
  position: relative;
  z-index: 2;

  max-width: 850px;

  margin: 0 auto 60px;

  text-align: center;
}

.section-header h2 {
  margin-bottom: 20px;

  color: #0a1f44;

  font-size:
    clamp(2.2rem, 4vw, 3.5rem);

  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.section-header p {
  max-width: 760px;

  margin: 0 auto;

  color: #5a667a;

  font-size: 1.05rem;
  line-height: 1.85;
}


/* ==========================================================
   34 — GRADE DOS DIFERENCIAIS
========================================================== */

.grid-porque {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns:
    repeat(4, minmax(0, 1fr));

  gap: 24px;
}


/* ==========================================================
   35 — CARDS DOS DIFERENCIAIS
========================================================== */

.card-porque {
  position: relative;

  min-height: 280px;

  display: flex;
  flex-direction: column;

  padding: 32px 28px;

  overflow: hidden;

  border:
    1px solid rgba(10, 31, 68, 0.08);

  border-radius: 22px;

  background: #ffffff;

  box-shadow:
    0 14px 35px
    rgba(10, 31, 68, 0.08);

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.card-porque::before {
  content: "";

  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 4px;

  background:
    linear-gradient(
      90deg,
      #f6c453,
      #ffd773
    );

  transform: scaleX(0);
  transform-origin: left;

  transition: transform 0.3s ease;
}

.card-porque:hover {
  transform: translateY(-8px);

  border-color:
    rgba(246, 196, 83, 0.45);

  box-shadow:
    0 24px 50px
    rgba(10, 31, 68, 0.14);
}

.card-porque:hover::before {
  transform: scaleX(1);
}


/* ==========================================================
   36 — ÍCONES DOS CARDS
========================================================== */

.card-porque > i {
  width: 64px;
  height: 64px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 24px;

  border-radius: 18px;

  color: #0a1f44;

  background:
    linear-gradient(
      135deg,
      #f6c453,
      #ffd773
    );

  font-size: 1.55rem;

  box-shadow:
    0 12px 26px
    rgba(246, 196, 83, 0.24);
}


/* ==========================================================
   37 — TEXTOS DOS CARDS
========================================================== */

.card-porque h3 {
  margin-bottom: 14px;

  color: #0a1f44;

  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1.3;
}

.card-porque p {
  margin: 0;

  color: #5a667a;

  font-size: 0.95rem;
  line-height: 1.75;
}


/* ==========================================================
   38 — RESPONSIVIDADE DA SEÇÃO
========================================================== */

@media (max-width: 1100px) {
  .grid-porque {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .porque-vk {
    padding: 80px 20px;
  }

  .section-header {
    margin-bottom: 45px;
  }

  .section-header h2 {
    font-size: 2.05rem;
  }

  .grid-porque {
    grid-template-columns: 1fr;
  }

  .card-porque {
    min-height: auto;

    padding: 28px 24px;
  }
}

@media (max-width: 480px) {
  .porque-vk {
    padding:
      70px 16px;
  }

  .section-header h2 {
    font-size: 1.85rem;
  }

  .section-header p {
    font-size: 1rem;
  }

  .card-porque {
    padding: 25px 21px;
  }

  .card-porque > i {
    width: 58px;
    height: 58px;

    font-size: 1.4rem;
  }

  .card-porque h3 {
    font-size: 1.2rem;
  }
}

/* ==========================================================
   39 — PROCESSO DE TRABALHO
========================================================== */

.processo-trabalho{
    position:relative;
    padding:110px 24px;
    background:#f7f9fc;
    overflow:hidden;
}

.processo-trabalho::before{
    content:"";
    position:absolute;
    left:-180px;
    bottom:-180px;

    width:420px;
    height:420px;

    border-radius:50%;

    background:
    radial-gradient(circle,
    rgba(10,31,68,.05),
    transparent 70%);
}


/* ==========================================================
   40 — GRID DO PROCESSO
========================================================== */

.grid-processo{
    position:relative;
    z-index:2;

    display:grid;
    grid-template-columns:repeat(4,1fr);

    gap:28px;
}


/* ==========================================================
   41 — ETAPAS
========================================================== */

.grid-processo>div{

    position:relative;

    padding:35px 28px;

    background:#ffffff;

    border-radius:22px;

    border:1px solid rgba(10,31,68,.08);

    box-shadow:
    0 14px 35px rgba(10,31,68,.08);

    transition:
    transform .30s ease,
    box-shadow .30s ease,
    border-color .30s ease;

}

.grid-processo>div:hover{

    transform:translateY(-8px);

    border-color:rgba(246,196,83,.45);

    box-shadow:
    0 22px 45px rgba(10,31,68,.14);

}


/* ==========================================================
   42 — NÚMERO
========================================================== */

.grid-processo span{

    width:64px;
    height:64px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:28px;

    border-radius:50%;

    background:
    linear-gradient(
    135deg,
    #f6c453,
    #ffd773);

    color:#071722;

    font-size:1.35rem;
    font-weight:800;

    box-shadow:
    0 14px 30px rgba(246,196,83,.30);

}


/* ==========================================================
   43 — TÍTULO
========================================================== */

.grid-processo h3{

    margin-bottom:14px;

    color:#0a1f44;

    font-size:1.30rem;

    font-weight:800;

    line-height:1.3;

}


/* ==========================================================
   44 — TEXTO
========================================================== */

.grid-processo p{

    margin:0;

    color:#5d687a;

    line-height:1.8;

    font-size:.95rem;

}


/* ==========================================================
   45 — RESPONSIVO
========================================================== */

@media(max-width:1100px){

.grid-processo{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:700px){

.processo-trabalho{

padding:85px 20px;

}

.grid-processo{

grid-template-columns:1fr;

gap:22px;

}

.grid-processo>div{

padding:28px 22px;

}

}

@media(max-width:480px){

.processo-trabalho{

padding:70px 16px;

}

.grid-processo span{

width:58px;
height:58px;

font-size:1.2rem;

}

.grid-processo h3{

font-size:1.15rem;

}

}

/* ==========================================================
   46 — ESPECIALIDADES TÉCNICAS
========================================================== */

.especialidades-premium {
  position: relative;
  padding: 110px 24px;
  overflow: hidden;
  background: #ffffff;
}

.especialidades-premium::before {
  content: "";

  position: absolute;
  top: -180px;
  left: -180px;

  width: 420px;
  height: 420px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(54, 199, 220, 0.08),
      transparent 70%
    );

  pointer-events: none;
}


/* ==========================================================
   47 — CABEÇALHO DAS ESPECIALIDADES
========================================================== */

.especialidades-header {
  position: relative;
  z-index: 2;

  max-width: 860px;

  margin: 0 auto 60px;

  text-align: center;
}

.especialidades-header h2 {
  margin-bottom: 20px;

  color: #0a1f44;

  font-size:
    clamp(2.2rem, 4vw, 3.5rem);

  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.especialidades-header p {
  max-width: 760px;

  margin: 0 auto;

  color: #5a667a;

  font-size: 1.05rem;
  line-height: 1.85;
}


/* ==========================================================
   48 — GRID DAS ESPECIALIDADES
========================================================== */

.grid-especialidades-premium {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns:
    repeat(4, minmax(0, 1fr));

  gap: 24px;
}


/* ==========================================================
   49 — CARD DE ESPECIALIDADE
========================================================== */

.especialidade-premium {
  position: relative;

  min-height: 350px;

  display: flex;
  flex-direction: column;

  padding: 30px 26px;

  overflow: hidden;

  border:
    1px solid rgba(10, 31, 68, 0.08);

  border-radius: 22px;

  color: inherit;
  background: #ffffff;

  text-decoration: none;

  box-shadow:
    0 14px 35px
    rgba(10, 31, 68, 0.08);

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.especialidade-premium::before {
  content: "";

  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 4px;

  background:
    linear-gradient(
      90deg,
      #f6c453,
      #ffd773
    );

  transform: scaleX(0);
  transform-origin: left;

  transition: transform 0.3s ease;
}

.especialidade-premium:hover {
  transform: translateY(-8px);

  border-color:
    rgba(246, 196, 83, 0.45);

  box-shadow:
    0 24px 50px
    rgba(10, 31, 68, 0.14);
}

.especialidade-premium:hover::before {
  transform: scaleX(1);
}


/* ==========================================================
   50 — ÍCONE DA ESPECIALIDADE
========================================================== */

.especialidade-icon {
  width: 64px;
  height: 64px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 22px;

  border-radius: 18px;

  color: #0a1f44;

  background:
    linear-gradient(
      135deg,
      #f6c453,
      #ffd773
    );

  font-size: 1.55rem;

  box-shadow:
    0 12px 26px
    rgba(246, 196, 83, 0.24);
}


/* ==========================================================
   51 — TAG, TÍTULO E TEXTO
========================================================== */

.especialidade-premium > span {
  display: block;

  margin-bottom: 10px;

  color: #36aebf;

  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.especialidade-premium h3 {
  margin-bottom: 14px;

  color: #0a1f44;

  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1.3;
}

.especialidade-premium p {
  margin-bottom: 24px;

  color: #5a667a;

  font-size: 0.94rem;
  line-height: 1.75;
}


/* ==========================================================
   52 — LINK "SAIBA MAIS"
========================================================== */

.especialidade-premium strong {
  display: inline-flex;
  align-items: center;
  gap: 9px;

  margin-top: auto;

  color: #0a1f44;

  font-size: 0.9rem;
  font-weight: 900;

  transition:
    gap 0.25s ease,
    color 0.25s ease;
}

.especialidade-premium strong i {
  font-size: 0.8rem;
}

.especialidade-premium:hover strong {
  gap: 13px;
  color: #c69218;
}


/* ==========================================================
   53 — CARD EM DESTAQUE
========================================================== */

.destaque-especialidade {
  border-color:
    rgba(246, 196, 83, 0.45);

  background:
    linear-gradient(
      145deg,
      #fffdf7,
      #ffffff
    );

  box-shadow:
    0 20px 45px
    rgba(10, 31, 68, 0.11);
}

.destaque-especialidade::after {
  content: "Destaque";

  position: absolute;
  top: 20px;
  right: -38px;

  width: 140px;

  padding: 7px 0;

  transform: rotate(45deg);

  color: #0a1f44;
  background: #f6c453;

  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}


/* ==========================================================
   54 — RESPONSIVIDADE DAS ESPECIALIDADES
========================================================== */

@media (max-width: 1200px) {
  .grid-especialidades-premium {
    grid-template-columns:
      repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .grid-especialidades-premium {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .especialidades-premium {
    padding: 85px 20px;
  }

  .especialidades-header {
    margin-bottom: 45px;
  }

  .especialidades-header h2 {
    font-size: 2.05rem;
  }

  .grid-especialidades-premium {
    grid-template-columns: 1fr;
  }

  .especialidade-premium {
    min-height: auto;

    padding: 28px 24px;
  }
}

@media (max-width: 480px) {
  .especialidades-premium {
    padding: 70px 16px;
  }

  .especialidades-header h2 {
    font-size: 1.85rem;
  }

  .especialidades-header p {
    font-size: 1rem;
  }

  .especialidade-premium {
    padding: 25px 21px;
  }

  .especialidade-icon {
    width: 58px;
    height: 58px;

    font-size: 1.4rem;
  }

  .especialidade-premium h3 {
    font-size: 1.2rem;
  }
}

/* ==========================================================
   55 — PORTFÓLIO TÉCNICO
========================================================== */

.portfolio-premium {
  position: relative;

  padding: 110px 24px;

  overflow: hidden;

  background: #f7f9fc;
}


/* ==========================================================
   56 — CABEÇALHO DO PORTFÓLIO
========================================================== */

.portfolio-premium-header {
  max-width: 860px;

  margin: 0 auto 60px;

  text-align: center;
}

.portfolio-premium-header h2 {
  margin-bottom: 20px;

  color: #0a1f44;

  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.portfolio-premium-header p {
  max-width: 760px;

  margin: 0 auto;

  color: #5a667a;

  font-size: 1.05rem;
  line-height: 1.85;
}


/* ==========================================================
   57 — PROJETO EM DESTAQUE
========================================================== */

.projeto-destaque {
  display: grid;
  grid-template-columns:
    minmax(0, 1.1fr)
    minmax(340px, 0.9fr);

  align-items: stretch;

  margin-bottom: 55px;

  overflow: hidden;

  border:
    1px solid rgba(10, 31, 68, 0.08);

  border-radius: 25px;

  background: #ffffff;

  box-shadow:
    0 22px 55px
    rgba(10, 31, 68, 0.12);
}


/* ==========================================================
   58 — IMAGEM DO PROJETO EM DESTAQUE
========================================================== */

.projeto-destaque-img {
  position: relative;

  min-height: 480px;

  overflow: hidden;
}

.projeto-destaque-img::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      180deg,
      transparent 45%,
      rgba(7, 23, 34, 0.55) 100%
    );

  pointer-events: none;
}

.projeto-destaque-img img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition: transform 0.5s ease;
}

.projeto-destaque:hover .projeto-destaque-img img {
  transform: scale(1.04);
}

.projeto-destaque-img > span {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 2;

  padding: 9px 15px;

  border-radius: 999px;

  color: #071722;
  background: #f6c453;

  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}


/* ==========================================================
   59 — CONTEÚDO DO PROJETO EM DESTAQUE
========================================================== */

.projeto-destaque-info {
  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 48px;
}

.tag-projeto {
  display: inline-block;

  margin-bottom: 15px;

  color: #36aebf;

  font-size: 0.77rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.projeto-destaque-info h3 {
  margin-bottom: 20px;

  color: #0a1f44;

  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
}

.projeto-destaque-info > p {
  margin-bottom: 24px;

  color: #5a667a;

  font-size: 1rem;
  line-height: 1.8;
}

.projeto-destaque-info ul {
  display: grid;
  gap: 12px;

  margin: 0 0 30px;
  padding: 0;

  list-style: none;
}

.projeto-destaque-info li {
  position: relative;

  padding-left: 28px;

  color: #334155;

  font-size: 0.94rem;
  line-height: 1.5;
}

.projeto-destaque-info li::before {
  content: "\f00c";

  position: absolute;
  top: 1px;
  left: 0;

  color: #36aebf;

  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}


/* ==========================================================
   60 — ESTRUTURA DO CARROSSEL
========================================================== */

.portfolio-carrossel {
  position: relative;

  display: flex;
  align-items: center;
  gap: 18px;
}

.portfolio-carrossel-viewport {
  width: 100%;

  overflow: hidden;

  padding: 12px 4px 25px;
}


/* ==========================================================
   61 — TRILHO DO CARROSSEL
========================================================== */

.portfolio-grid-premium {
  display: flex;
  gap: 24px;

  transform: translateX(0);

  transition: transform 0.45s ease;
}


/* ==========================================================
   62 — CARDS DO CARROSSEL
========================================================== */

.portfolio-card-premium {
  flex:
    0 0
    calc((100% - 48px) / 3);

  min-width: 0;

  overflow: hidden;

  border:
    1px solid rgba(10, 31, 68, 0.08);

  border-radius: 21px;

  color: inherit;
  background: #ffffff;

  text-decoration: none;

  box-shadow:
    0 13px 34px
    rgba(10, 31, 68, 0.08);

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.portfolio-card-premium:hover {
  transform: translateY(-7px);

  border-color:
    rgba(246, 196, 83, 0.45);

  box-shadow:
    0 22px 45px
    rgba(10, 31, 68, 0.14);
}


/* ==========================================================
   63 — IMAGEM DOS CARDS
========================================================== */

.portfolio-card-img {
  position: relative;

  height: 235px;

  overflow: hidden;

  background: #dfe5ec;
}

.portfolio-card-img::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      180deg,
      transparent 45%,
      rgba(7, 23, 34, 0.62) 100%
    );

  pointer-events: none;
}

.portfolio-card-img img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition: transform 0.45s ease;
}

.portfolio-card-premium:hover .portfolio-card-img img {
  transform: scale(1.06);
}

.portfolio-card-img span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;

  padding: 8px 13px;

  border-radius: 999px;

  color: #071722;
  background: #f6c453;

  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}


/* ==========================================================
   64 — INFORMAÇÕES DOS CARDS
========================================================== */

.portfolio-card-info {
  padding: 25px 23px 27px;
}

.portfolio-card-info small {
  display: block;

  margin-bottom: 9px;

  color: #36aebf;

  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.portfolio-card-info h3 {
  margin-bottom: 12px;

  color: #0a1f44;

  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.3;
}

.portfolio-card-info p {
  margin: 0;

  color: #5a667a;

  font-size: 0.91rem;
  line-height: 1.7;
}


/* ==========================================================
   65 — BOTÕES DO CARROSSEL
========================================================== */

.portfolio-carrossel-btn {
  flex: 0 0 48px;

  width: 48px;
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  border:
    1px solid rgba(10, 31, 68, 0.1);

  border-radius: 50%;

  color: #0a1f44;
  background: #ffffff;

  font-size: 1rem;
  cursor: pointer;

  box-shadow:
    0 10px 26px
    rgba(10, 31, 68, 0.1);

  transition:
    transform 0.25s ease,
    color 0.25s ease,
    background 0.25s ease,
    opacity 0.25s ease;
}

.portfolio-carrossel-btn:hover:not(:disabled) {
  transform: scale(1.08);

  color: #071722;
  background: #f6c453;
}

.portfolio-carrossel-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}


/* ==========================================================
   66 — INDICADORES DO CARROSSEL
========================================================== */

.portfolio-carrossel-indicadores {
  display: flex;
  justify-content: center;
  gap: 8px;

  margin-top: 10px;
}

.portfolio-carrossel-indicadores button {
  width: 9px;
  height: 9px;

  padding: 0;

  border: 0;
  border-radius: 999px;

  background: rgba(10, 31, 68, 0.22);

  cursor: pointer;

  transition:
    width 0.25s ease,
    background 0.25s ease;
}

.portfolio-carrossel-indicadores button.ativo {
  width: 28px;

  background: #f6c453;
}


/* ==========================================================
   67 — RESPONSIVIDADE DO PORTFÓLIO
========================================================== */

@media (max-width: 1050px) {
  .projeto-destaque {
    grid-template-columns: 1fr;
  }

  .projeto-destaque-img {
    min-height: 420px;
  }

  .portfolio-card-premium {
    flex:
      0 0
      calc((100% - 24px) / 2);
  }
}

@media (max-width: 700px) {
  .portfolio-premium {
    padding: 85px 20px;
  }

  .portfolio-premium-header {
    margin-bottom: 45px;
  }

  .portfolio-premium-header h2 {
    font-size: 2.05rem;
  }

  .projeto-destaque {
    margin-bottom: 45px;
  }

  .projeto-destaque-img {
    min-height: 320px;
  }

  .projeto-destaque-info {
    padding: 32px 25px;
  }

  .portfolio-carrossel {
    gap: 8px;
  }

  .portfolio-carrossel-btn {
    position: absolute;
    top: 50%;
    z-index: 5;

    width: 42px;
    height: 42px;

    transform: translateY(-50%);
  }

  .portfolio-carrossel-btn:hover:not(:disabled) {
    transform:
      translateY(-50%)
      scale(1.06);
  }

  .portfolio-carrossel-anterior {
    left: 8px;
  }

  .portfolio-carrossel-proximo {
    right: 8px;
  }

  .portfolio-carrossel-viewport {
    padding:
      12px 0
      25px;
  }

  .portfolio-card-premium {
    flex: 0 0 100%;
  }
}

@media (max-width: 480px) {
  .portfolio-premium {
    padding: 70px 16px;
  }

  .portfolio-premium-header h2 {
    font-size: 1.85rem;
  }

  .projeto-destaque-img {
    min-height: 270px;
  }

  .projeto-destaque-info {
    padding: 28px 21px;
  }

  .projeto-destaque-info h3 {
    font-size: 1.65rem;
  }

  .portfolio-card-img {
    height: 220px;
  }
}

/* ==========================================================
   68 — SEÇÃO DE INDICADORES
========================================================== */

.indicadores-premium {
  position: relative;

  padding: 105px 24px;

  overflow: hidden;

  color: #ffffff;

  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(246, 196, 83, 0.16),
      transparent 28%
    ),
    radial-gradient(
      circle at 85% 80%,
      rgba(14, 58, 138, 0.35),
      transparent 30%
    ),
    linear-gradient(
      135deg,
      #061226 0%,
      #0a1f44 55%,
      #07152f 100%
    );
}

.indicadores-premium::before {
  content: "";

  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.035) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.035) 1px,
      transparent 1px
    );

  background-size: 42px 42px;

  opacity: 0.35;

  pointer-events: none;
}

.indicadores-premium::after {
  content: "";

  position: absolute;
  top: -170px;
  right: -170px;

  width: 420px;
  height: 420px;

  border:
    1px solid rgba(255, 255, 255, 0.08);

  border-radius: 50%;

  pointer-events: none;
}

.indicadores-premium .container {
  position: relative;
  z-index: 2;
}


/* ==========================================================
   69 — CABEÇALHO DOS INDICADORES
========================================================== */

.indicadores-header {
  max-width: 850px;

  margin: 0 auto 58px;

  text-align: center;
}

.indicadores-header .section-tag {
  color: #0a1f44;
  background: #f6c453;
}

.indicadores-header .section-tag::before {
  background: #0a1f44;
}

.indicadores-header h2 {
  margin-bottom: 18px;

  color: #ffffff;

  font-size:
    clamp(2.1rem, 4vw, 3.3rem);

  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.indicadores-header p {
  max-width: 760px;

  margin: 0 auto;

  color: #dce4f2;

  font-size: 1.06rem;
  line-height: 1.8;
}


/* ==========================================================
   70 — GRID DOS INDICADORES
========================================================== */

.grid-indicadores-premium {
  display: grid;
  grid-template-columns:
    repeat(4, minmax(0, 1fr));

  gap: 24px;
}


/* ==========================================================
   71 — CARD DO INDICADOR
========================================================== */

.indicador-premium {
  position: relative;

  min-height: 295px;

  padding: 34px 26px;

  overflow: hidden;

  border:
    1px solid rgba(255, 255, 255, 0.14);

  border-radius: 24px;

  background:
    rgba(255, 255, 255, 0.08);

  box-shadow:
    0 24px 60px
    rgba(0, 0, 0, 0.22);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.indicador-premium::before {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      135deg,
      rgba(246, 196, 83, 0.22),
      transparent 42%
    );

  opacity: 0;

  transition: opacity 0.3s ease;
}

.indicador-premium::after {
  content: "";

  position: absolute;
  right: -55px;
  bottom: -55px;

  width: 130px;
  height: 130px;

  border:
    1px solid rgba(255, 255, 255, 0.08);

  border-radius: 50%;
}

.indicador-premium:hover {
  transform: translateY(-8px);

  border-color:
    rgba(246, 196, 83, 0.45);

  background:
    rgba(255, 255, 255, 0.11);

  box-shadow:
    0 30px 80px
    rgba(0, 0, 0, 0.32);
}

.indicador-premium:hover::before {
  opacity: 1;
}


/* ==========================================================
   72 — CONTEÚDO DOS INDICADORES
========================================================== */

.indicador-icone,
.indicador-premium strong,
.indicador-premium p,
.indicador-premium small {
  position: relative;
  z-index: 2;
}

.indicador-icone {
  width: 60px;
  height: 60px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 25px;

  border-radius: 18px;

  color: #0a1f44;

  background:
    linear-gradient(
      135deg,
      #f6c453,
      #ffd773
    );

  font-size: 1.45rem;

  box-shadow:
    0 12px 30px
    rgba(246, 196, 83, 0.28);
}

.indicador-premium strong {
  display: block;

  margin-bottom: 12px;

  color: #ffffff;

  font-size:
    clamp(2rem, 3vw, 2.7rem);

  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
}

.indicador-premium p {
  margin-bottom: 12px;

  color: #f6c453;

  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.4;
}

.indicador-premium small {
  display: block;

  color: #dce4f2;

  font-size: 0.92rem;
  line-height: 1.7;
}


/* ==========================================================
   73 — ANIMAÇÃO SUAVE DOS NÚMEROS
========================================================== */

.numero {
  display: inline-block;
}


/* ==========================================================
   74 — RESPONSIVIDADE DOS INDICADORES
========================================================== */

@media (max-width: 1100px) {
  .grid-indicadores-premium {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .indicadores-premium {
    padding: 85px 20px;
  }

  .indicadores-header {
    margin-bottom: 45px;
  }

  .indicadores-header h2 {
    font-size: 2.05rem;
  }

  .grid-indicadores-premium {
    grid-template-columns: 1fr;
  }

  .indicador-premium {
    min-height: auto;

    padding: 30px 25px;
  }
}

@media (max-width: 480px) {
  .indicadores-premium {
    padding: 70px 16px;
  }

  .indicadores-header h2 {
    font-size: 1.85rem;
  }

  .indicadores-header p {
    font-size: 1rem;
  }

  .indicador-premium {
    padding: 27px 22px;
  }

  .indicador-icone {
    width: 56px;
    height: 56px;

    font-size: 1.3rem;
  }

  .indicador-premium strong {
    font-size: 2rem;
  }
}

/* ==========================================================
   75 — SEÇÃO DE NORMAS TÉCNICAS
========================================================== */

.normas-tecnicas {
  position: relative;

  padding: 110px 24px;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 88% 15%,
      rgba(246, 196, 83, 0.15),
      transparent 25%
    ),
    radial-gradient(
      circle at 10% 90%,
      rgba(54, 174, 191, 0.09),
      transparent 28%
    ),
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f7f9fc 100%
    );
}

.normas-tecnicas::before {
  content: "";

  position: absolute;
  top: -190px;
  right: -190px;

  width: 460px;
  height: 460px;

  border:
    1px solid rgba(10, 31, 68, 0.055);

  border-radius: 50%;

  pointer-events: none;
}

.normas-tecnicas::after {
  content: "";

  position: absolute;
  left: -210px;
  bottom: -240px;

  width: 500px;
  height: 500px;

  border:
    1px solid rgba(54, 174, 191, 0.08);

  border-radius: 50%;

  pointer-events: none;
}

.normas-tecnicas .container {
  position: relative;
  z-index: 2;
}


/* ==========================================================
   76 — CABEÇALHO DA SEÇÃO
========================================================== */

.normas-tecnicas .section-header {
  max-width: 900px;

  margin-bottom: 62px;
}

.normas-tecnicas .section-header h2 {
  max-width: 820px;

  margin-right: auto;
  margin-left: auto;

  color: #0a1f44;

  font-size:
    clamp(2.15rem, 4vw, 3.4rem);

  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.normas-tecnicas .section-header p {
  max-width: 790px;

  color: #5a667a;

  font-size: 1.05rem;
  line-height: 1.85;
}


/* ==========================================================
   77 — GRID DAS NORMAS
========================================================== */

.grid-normas {
  display: grid;
  grid-template-columns:
    repeat(4, minmax(0, 1fr));

  gap: 22px;
}


/* ==========================================================
   78 — CARDS DAS NORMAS
========================================================== */

.grid-normas span {
  position: relative;

  min-height: 190px;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  padding: 78px 24px 26px;

  overflow: hidden;

  border:
    1px solid rgba(10, 31, 68, 0.08);

  border-radius: 22px;

  color: #0a1f44;

  background:
    linear-gradient(
      145deg,
      #ffffff 0%,
      #f8fafc 100%
    );

  box-shadow:
    0 14px 36px
    rgba(10, 31, 68, 0.075);

  font-size: 1rem;
  font-weight: 900;
  line-height: 1.45;

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.grid-normas span:hover {
  transform: translateY(-8px);

  border-color:
    rgba(246, 196, 83, 0.55);

  background: #ffffff;

  box-shadow:
    0 24px 55px
    rgba(10, 31, 68, 0.14);
}


/* ==========================================================
   79 — LINHA SUPERIOR DOS CARDS
========================================================== */

.grid-normas span::before {
  position: absolute;
  top: 23px;
  left: 23px;

  width: 50px;
  height: 50px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 15px;

  color: #0a1f44;

  background:
    linear-gradient(
      135deg,
      #f6c453,
      #ffd773
    );

  box-shadow:
    0 11px 25px
    rgba(246, 196, 83, 0.26);

  font-family:
    "Font Awesome 6 Free";

  font-size: 1.15rem;
  font-weight: 900;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.grid-normas span:hover::before {
  transform:
    translateY(-3px)
    rotate(-3deg);

  box-shadow:
    0 16px 32px
    rgba(246, 196, 83, 0.34);
}


/* ==========================================================
   80 — DETALHE DECORATIVO DOS CARDS
========================================================== */

.grid-normas span::after {
  content: "";

  position: absolute;
  right: -42px;
  bottom: -42px;

  width: 115px;
  height: 115px;

  border:
    1px solid rgba(10, 31, 68, 0.055);

  border-radius: 50%;

  transition:
    transform 0.35s ease,
    border-color 0.35s ease;
}

.grid-normas span:hover::after {
  transform: scale(1.18);

  border-color:
    rgba(246, 196, 83, 0.18);
}


/* ==========================================================
   81 — ÍCONES INDIVIDUAIS
========================================================== */

.grid-normas span:nth-child(1)::before {
  content: "\f0e7";
}

.grid-normas span:nth-child(2)::before {
  content: "\f0e7";
}

.grid-normas span:nth-child(3)::before {
  content: "\f3ed";
}

.grid-normas span:nth-child(4)::before {
  content: "\f1ad";
}

.grid-normas span:nth-child(5)::before {
  content: "\f1de";
}

.grid-normas span:nth-child(6)::before {
  content: "\f5fd";
}

.grid-normas span:nth-child(7)::before {
  content: "\f1b9";
}

.grid-normas span:nth-child(8)::before {
  content: "\f15c";
}


/* ==========================================================
   82 — IDENTIFICAÇÃO TÉCNICA
========================================================== */

.grid-normas span:nth-child(1) {
  background:
    linear-gradient(
      145deg,
      rgba(246, 196, 83, 0.09),
      #ffffff 58%
    );
}

.grid-normas span:nth-child(2) {
  background:
    linear-gradient(
      145deg,
      rgba(246, 196, 83, 0.08),
      #ffffff 58%
    );
}

.grid-normas span:nth-child(3) {
  background:
    linear-gradient(
      145deg,
      rgba(54, 174, 191, 0.08),
      #ffffff 58%
    );
}

.grid-normas span:nth-child(4) {
  background:
    linear-gradient(
      145deg,
      rgba(10, 31, 68, 0.055),
      #ffffff 58%
    );
}


/* ==========================================================
   83 — RESPONSIVIDADE DAS NORMAS
========================================================== */

@media (max-width: 1150px) {
  .grid-normas {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

  .grid-normas span {
    min-height: 175px;
  }
}

@media (max-width: 700px) {
  .normas-tecnicas {
    padding: 85px 20px;
  }

  .normas-tecnicas .section-header {
    margin-bottom: 45px;
  }

  .normas-tecnicas .section-header h2 {
    font-size: 2.05rem;
  }

  .grid-normas {
    grid-template-columns: 1fr;

    gap: 18px;
  }

  .grid-normas span {
    min-height: 120px;

    justify-content: center;

    padding:
      24px 22px
      24px 88px;
  }

  .grid-normas span::before {
    top: 50%;
    left: 22px;

    transform:
      translateY(-50%);
  }

  .grid-normas span:hover::before {
    transform:
      translateY(-54%)
      rotate(-3deg);
  }
}

@media (max-width: 480px) {
  .normas-tecnicas {
    padding: 70px 16px;
  }

  .normas-tecnicas .section-header h2 {
    font-size: 1.85rem;
  }

  .normas-tecnicas .section-header p {
    font-size: 1rem;
  }

  .grid-normas span {
    min-height: 110px;

    padding:
      22px 18px
      22px 78px;

    border-radius: 18px;

    font-size: 0.92rem;
  }

  .grid-normas span::before {
    left: 18px;

    width: 46px;
    height: 46px;

    border-radius: 13px;

    font-size: 1rem;
  }
}

/* ==========================================================
   82 — SEÇÃO DE ARTIGOS TÉCNICOS
========================================================== */

.artigos-premium {
  position: relative;

  padding: 110px 24px;

  overflow: hidden;

  color: #ffffff;

  background:
    radial-gradient(
      circle at 50% -10%,
      rgba(246, 196, 83, 0.17),
      transparent 34%
    ),
    linear-gradient(
      135deg,
      #061226 0%,
      #0a1f44 55%,
      #07152f 100%
    );
}

.artigos-premium::before {
  content: "";

  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px
    );

  background-size: 46px 46px;

  opacity: 0.45;

  pointer-events: none;
}

.artigos-premium::after {
  content: "";

  position: absolute;
  right: -200px;
  bottom: -200px;

  width: 480px;
  height: 480px;

  border:
    1px solid rgba(255, 255, 255, 0.06);

  border-radius: 50%;

  pointer-events: none;
}

.artigos-premium .container {
  position: relative;
  z-index: 2;
}


/* ==========================================================
   83 — CABEÇALHO DOS ARTIGOS
========================================================== */

.artigos-header {
  max-width: 880px;

  margin: 0 auto 62px;

  text-align: center;
}

.artigos-header .section-tag {
  color: #0a1f44;
  background: #f6c453;
}

.artigos-header .section-tag::before {
  background: #0a1f44;
}

.artigos-header h2 {
  margin: 20px 0;

  color: #ffffff;

  font-size:
    clamp(2.2rem, 4vw, 3.5rem);

  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.artigos-header p {
  max-width: 780px;

  margin: 0 auto;

  color: #dce4f2;

  font-size: 1.05rem;
  line-height: 1.85;
}


/* ==========================================================
   84 — GRID DOS ARTIGOS
========================================================== */

.artigos-grid {
  display: grid;
  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 26px;
}


/* ==========================================================
   85 — CARD DE ARTIGO
========================================================== */

.artigo-premium {
  position: relative;

  min-height: 360px;

  display: flex;
  flex-direction: column;

  padding: 38px 34px;

  overflow: hidden;

  border:
    1px solid rgba(255, 255, 255, 0.13);

  border-radius: 25px;

  background:
    rgba(255, 255, 255, 0.075);

  box-shadow:
    0 25px 65px
    rgba(0, 0, 0, 0.22);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.artigo-premium::before {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      135deg,
      rgba(246, 196, 83, 0.16),
      transparent 45%
    );

  opacity: 0;

  transition: opacity 0.3s ease;

  pointer-events: none;
}

.artigo-premium::after {
  content: "\f15c";

  position: absolute;
  right: 22px;
  bottom: 8px;

  color: rgba(255, 255, 255, 0.035);

  font-family: "Font Awesome 6 Free";
  font-size: 6rem;
  font-weight: 900;

  pointer-events: none;
}

.artigo-premium:hover {
  transform: translateY(-8px);

  border-color:
    rgba(246, 196, 83, 0.42);

  background:
    rgba(255, 255, 255, 0.1);

  box-shadow:
    0 35px 85px
    rgba(0, 0, 0, 0.32);
}

.artigo-premium:hover::before {
  opacity: 1;
}


/* ==========================================================
   86 — ARTIGO EM DESTAQUE
========================================================== */

.artigo-premium.destaque {
  grid-row: span 2;

  min-height: 100%;

  justify-content: center;

  padding: 48px 44px;

  border-color:
    rgba(246, 196, 83, 0.35);

  background:
    linear-gradient(
      145deg,
      rgba(246, 196, 83, 0.15),
      rgba(255, 255, 255, 0.075)
    );

  box-shadow:
    0 32px 80px
    rgba(0, 0, 0, 0.3);
}

.artigo-premium.destaque::after {
  font-size: 9rem;

  color:
    rgba(246, 196, 83, 0.055);
}

.artigo-premium.destaque h3 {
  max-width: 620px;

  font-size:
    clamp(2rem, 3vw, 2.8rem);
}

.artigo-premium.destaque p {
  max-width: 680px;

  font-size: 1rem;
}


/* ==========================================================
   87 — CATEGORIA DO ARTIGO
========================================================== */

.categoria {
  position: relative;
  z-index: 2;

  align-self: flex-start;

  display: inline-flex;
  align-items: center;
  gap: 9px;

  margin-bottom: 25px;
  padding: 9px 16px;

  border-radius: 999px;

  color: #07152f;
  background: #f6c453;

  font-size: 0.7rem;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.categoria::before {
  content: "";

  flex: 0 0 7px;

  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: #0a1f44;
}


/* ==========================================================
   88 — TÍTULO E TEXTO DOS ARTIGOS
========================================================== */

.artigo-premium h3,
.artigo-premium p,
.artigo-premium a {
  position: relative;
  z-index: 2;
}

.artigo-premium h3 {
  margin-bottom: 18px;

  color: #ffffff;

  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1.3;
}

.artigo-premium p {
  margin-bottom: 30px;

  color: #dce4f2;

  font-size: 0.95rem;
  line-height: 1.8;
}


/* ==========================================================
   89 — LINK DO ARTIGO
========================================================== */

.artigo-premium a {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  align-self: flex-start;

  margin-top: auto;

  color: #f6c453;

  font-size: 0.91rem;
  font-weight: 900;
  text-decoration: none;

  transition:
    gap 0.25s ease,
    color 0.25s ease;
}

.artigo-premium a i {
  font-size: 0.82rem;

  transition:
    transform 0.25s ease;
}

.artigo-premium a:hover {
  gap: 14px;

  color: #ffd773;
}

.artigo-premium a:hover i {
  transform: translateX(4px);
}


/* ==========================================================
   90 — RESPONSIVIDADE DOS ARTIGOS
========================================================== */

@media (max-width: 950px) {
  .artigos-grid {
    grid-template-columns: 1fr;
  }

  .artigo-premium.destaque {
    grid-row: auto;

    min-height: 430px;
  }

  .artigo-premium {
    min-height: 320px;
  }
}

@media (max-width: 700px) {
  .artigos-premium {
    padding: 85px 20px;
  }

  .artigos-header {
    margin-bottom: 45px;
  }

  .artigos-header h2 {
    font-size: 2.05rem;
  }

  .artigo-premium,
  .artigo-premium.destaque {
    min-height: auto;

    padding: 30px 25px;
  }

  .artigo-premium.destaque h3 {
    font-size: 1.75rem;
  }

  .categoria {
    max-width: 100%;

    border-radius: 14px;
  }
}

@media (max-width: 480px) {
  .artigos-premium {
    padding: 70px 16px;
  }

  .artigos-header h2 {
    font-size: 1.85rem;
  }

  .artigos-header p {
    font-size: 1rem;
  }

  .artigos-grid {
    gap: 20px;
  }

  .artigo-premium,
  .artigo-premium.destaque {
    padding: 27px 21px;

    border-radius: 21px;
  }

  .artigo-premium h3,
  .artigo-premium.destaque h3 {
    font-size: 1.4rem;
  }

  .artigo-premium p {
    font-size: 0.92rem;
  }

  .categoria {
    padding: 8px 13px;

    font-size: 0.64rem;
  }
}

/* ==========================================================
   91 — SEÇÃO DE DEPOIMENTOS
========================================================== */

#depoimentos {
  position: relative;

  padding: 110px 24px;

  overflow: hidden;

  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f6f8fc 100%
    );
}

#depoimentos::before {
  content: "";

  position: absolute;
  top: -190px;
  left: -190px;

  width: 440px;
  height: 440px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(246, 196, 83, 0.14),
      transparent 70%
    );

  pointer-events: none;
}

#depoimentos::after {
  content: "";

  position: absolute;
  right: -210px;
  bottom: -210px;

  width: 480px;
  height: 480px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(54, 174, 191, 0.09),
      transparent 70%
    );

  pointer-events: none;
}

#depoimentos .container {
  position: relative;
  z-index: 2;
}


/* ==========================================================
   92 — CABEÇALHO DOS DEPOIMENTOS
========================================================== */

.depoimentos-header {
  max-width: 850px;

  margin: 0 auto 58px;

  text-align: center;
}

.depoimentos-header h2 {
  margin-bottom: 18px;

  color: #0a1f44;

  font-size:
    clamp(2.2rem, 4vw, 3.4rem);

  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

#depoimentos .subtitulo {
  max-width: 730px;

  margin: 0 auto;

  color: #5a667a;

  font-size: 1.05rem;
  line-height: 1.85;
}


/* ==========================================================
   93 — ESTRUTURA DO CARROSSEL
========================================================== */

.depoimentos-carrossel {
  position: relative;

  display: flex;
  align-items: center;
  gap: 18px;
}

.depoimentos-viewport {
  width: 100%;

  overflow: hidden;

  padding: 15px 4px 28px;
}


/* ==========================================================
   94 — TRILHO DOS DEPOIMENTOS
========================================================== */

.grid-depoimentos {
  display: flex;
  gap: 26px;

  transform: translateX(0);

  transition:
    transform 0.45s ease;
}


/* ==========================================================
   95 — CARD DO DEPOIMENTO
========================================================== */

.depoimento {
  position: relative;

  flex:
    0 0
    calc((100% - 26px) / 2);

  min-width: 0;
  min-height: 310px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  padding: 42px 36px 34px;

  overflow: hidden;

  border:
    1px solid rgba(10, 31, 68, 0.08);

  border-radius: 24px;

  background: #ffffff;

  box-shadow:
    0 16px 42px
    rgba(10, 31, 68, 0.09);

  text-align: left;

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.depoimento::before {
  content: "“";

  position: absolute;
  top: -24px;
  left: 24px;

  color:
    rgba(246, 196, 83, 0.25);

  font-family: Georgia, serif;
  font-size: 8.5rem;
  font-weight: 700;
  line-height: 1;

  pointer-events: none;
}

.depoimento::after {
  content: "";

  position: absolute;
  right: -60px;
  bottom: -60px;

  width: 150px;
  height: 150px;

  border:
    1px solid rgba(10, 31, 68, 0.05);

  border-radius: 50%;

  pointer-events: none;
}

.depoimento:hover {
  transform: translateY(-7px);

  border-color:
    rgba(246, 196, 83, 0.45);

  box-shadow:
    0 25px 58px
    rgba(10, 31, 68, 0.14);
}


/* ==========================================================
   96 — TEXTO DO DEPOIMENTO
========================================================== */

.depoimento .texto {
  position: relative;
  z-index: 2;

  margin: 0 0 30px;

  color: #3f4b5f;

  font-size: 1rem;
  font-style: italic;
  line-height: 1.85;
}


/* ==========================================================
   97 — AUTOR DO DEPOIMENTO
========================================================== */

.depoimento .autor {
  position: relative;
  z-index: 2;

  padding-top: 20px;

  border-top:
    1px solid rgba(10, 31, 68, 0.08);
}

.depoimento .autor strong {
  display: block;

  margin-bottom: 6px;

  color: #0a1f44;

  font-size: 1rem;
  font-weight: 900;
}

.depoimento .autor span {
  display: block;

  color: #6b7689;

  font-size: 0.87rem;
  line-height: 1.5;
}


/* ==========================================================
   98 — BOTÕES DO CARROSSEL
========================================================== */

.depoimentos-btn {
  flex: 0 0 48px;

  width: 48px;
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  border:
    1px solid rgba(10, 31, 68, 0.1);

  border-radius: 50%;

  color: #0a1f44;
  background: #ffffff;

  font-size: 1rem;
  cursor: pointer;

  box-shadow:
    0 10px 26px
    rgba(10, 31, 68, 0.1);

  transition:
    transform 0.25s ease,
    color 0.25s ease,
    background 0.25s ease,
    opacity 0.25s ease;
}

.depoimentos-btn:hover:not(:disabled) {
  transform: scale(1.08);

  color: #071722;
  background: #f6c453;
}

.depoimentos-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}


/* ==========================================================
   99 — INDICADORES DO CARROSSEL
========================================================== */

.depoimentos-indicadores {
  display: flex;
  justify-content: center;
  gap: 8px;

  margin-top: 8px;
}

.depoimentos-indicadores button {
  width: 9px;
  height: 9px;

  padding: 0;

  border: 0;
  border-radius: 999px;

  background:
    rgba(10, 31, 68, 0.22);

  cursor: pointer;

  transition:
    width 0.25s ease,
    background 0.25s ease;
}

.depoimentos-indicadores button.ativo {
  width: 28px;

  background: #f6c453;
}


/* ==========================================================
   100 — RESPONSIVIDADE DOS DEPOIMENTOS
========================================================== */

@media (max-width: 850px) {
  .depoimento {
    flex: 0 0 100%;
  }
}

@media (max-width: 700px) {
  #depoimentos {
    padding: 85px 20px;
  }

  .depoimentos-header {
    margin-bottom: 45px;
  }

  .depoimentos-header h2 {
    font-size: 2.05rem;
  }

  .depoimentos-carrossel {
    gap: 0;
  }

  .depoimentos-btn {
    position: absolute;
    top: 50%;
    z-index: 5;

    width: 42px;
    height: 42px;

    transform:
      translateY(-50%);
  }

  .depoimentos-btn:hover:not(:disabled) {
    transform:
      translateY(-50%)
      scale(1.06);
  }

  .depoimentos-btn-anterior {
    left: 8px;
  }

  .depoimentos-btn-proximo {
    right: 8px;
  }

  .depoimentos-viewport {
    padding:
      15px 0
      28px;
  }

  .depoimento {
    min-height: 320px;

    padding:
      38px 30px 30px;
  }
}

@media (max-width: 480px) {
  #depoimentos {
    padding: 70px 16px;
  }

  .depoimentos-header h2 {
    font-size: 1.85rem;
  }

  #depoimentos .subtitulo {
    font-size: 1rem;
  }

  .depoimento {
    min-height: 340px;

    padding:
      36px 25px 27px;

    border-radius: 21px;
  }

  .depoimento .texto {
    font-size: 0.95rem;
  }

  .depoimento::before {
    left: 17px;

    font-size: 7rem;
  }
}

/* ==========================================================
   101 — SEÇÃO DE CONTATO
========================================================== */

.contato-premium {
  position: relative;

  padding: 110px 24px;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 90% 15%,
      rgba(246, 196, 83, 0.13),
      transparent 27%
    ),
    linear-gradient(
      180deg,
      #f7f9fc 0%,
      #ffffff 100%
    );
}

.contato-premium::before {
  content: "";

  position: absolute;
  top: -160px;
  right: -160px;

  width: 420px;
  height: 420px;

  border:
    1px solid rgba(10, 31, 68, 0.05);

  border-radius: 50%;

  pointer-events: none;
}

.contato-premium::after {
  content: "";

  position: absolute;
  bottom: -230px;
  left: -230px;

  width: 500px;
  height: 500px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(54, 174, 191, 0.08),
      transparent 68%
    );

  pointer-events: none;
}


/* ==========================================================
   102 — GRID PRINCIPAL DO CONTATO
========================================================== */

.contato-premium-grid {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns:
    minmax(0, 0.92fr)
    minmax(420px, 1.08fr);

  gap: 58px;

  align-items: stretch;
}


/* ==========================================================
   103 — COLUNA DE INFORMAÇÕES
========================================================== */

.contato-info {
  display: flex;
  flex-direction: column;

  padding: 18px 0;
}

.contato-info .section-tag {
  align-self: flex-start;

  margin-bottom: 28px;
}

.contato-info > p {
  max-width: 620px;

  margin: 0 0 34px;

  color: #5a667a;

  font-size: 1.04rem;
  line-height: 1.85;
}


/* ==========================================================
   104 — BENEFÍCIOS DO CONTATO
========================================================== */

.contato-beneficios {
  display: grid;
  grid-template-columns: 1fr;

  gap: 14px;

  margin-bottom: 38px;
}

.contato-beneficios > div {
  display: flex;
  align-items: center;
  gap: 14px;

  min-height: 54px;

  padding: 13px 16px;

  border:
    1px solid rgba(10, 31, 68, 0.07);

  border-radius: 14px;

  background:
    rgba(255, 255, 255, 0.76);

  box-shadow:
    0 9px 24px
    rgba(10, 31, 68, 0.045);

  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.contato-beneficios > div:hover {
  transform: translateX(5px);

  border-color:
    rgba(246, 196, 83, 0.45);

  box-shadow:
    0 14px 30px
    rgba(10, 31, 68, 0.08);
}

.contato-beneficios i {
  flex: 0 0 38px;

  width: 38px;
  height: 38px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 11px;

  color: #0a1f44;

  background:
    linear-gradient(
      135deg,
      #f6c453,
      #ffd773
    );

  font-size: 1rem;
}

.contato-beneficios span {
  color: #27364d;

  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.5;
}


/* ==========================================================
   105 — CONTATO DIRETO PELO WHATSAPP
========================================================== */

.contato-direto {
  position: relative;

  margin-top: auto;
  padding: 28px;

  overflow: hidden;

  border:
    1px solid rgba(255, 255, 255, 0.11);

  border-radius: 21px;

  color: #ffffff;

  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(246, 196, 83, 0.2),
      transparent 38%
    ),
    linear-gradient(
      135deg,
      #07152f,
      #0a1f44
    );

  box-shadow:
    0 20px 48px
    rgba(10, 31, 68, 0.18);
}

.contato-direto::after {
  content: "\f232";

  position: absolute;
  right: 18px;
  bottom: -18px;

  color:
    rgba(255, 255, 255, 0.055);

  font-family:
    "Font Awesome 6 Brands";
  font-size: 6.5rem;
  font-weight: 400;

  pointer-events: none;
}

.contato-direto h3 {
  position: relative;
  z-index: 2;

  margin: 0 0 17px;

  color: #ffffff;

  font-size: 1.22rem;
  font-weight: 800;
  line-height: 1.4;
}

.contato-direto a {
  position: relative;
  z-index: 2;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  min-height: 48px;

  padding: 0 22px;

  border-radius: 999px;

  color: #07152f;

  background:
    linear-gradient(
      135deg,
      #f6c453,
      #ffd773
    );

  box-shadow:
    0 12px 28px
    rgba(246, 196, 83, 0.2);

  font-size: 0.92rem;
  font-weight: 900;
  text-decoration: none;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.contato-direto a:hover {
  transform: translateY(-3px);

  box-shadow:
    0 17px 34px
    rgba(246, 196, 83, 0.3);
}

.contato-direto a i {
  font-size: 1.12rem;
}


/* ==========================================================
   106 — CARD DO FORMULÁRIO
========================================================== */

.form-card-premium {
  position: relative;

  padding: 44px;

  overflow: hidden;

  border:
    1px solid rgba(10, 31, 68, 0.08);

  border-radius: 26px;

  background: #ffffff;

  box-shadow:
    0 25px 70px
    rgba(10, 31, 68, 0.11);
}

.form-card-premium::before {
  content: "";

  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 5px;

  background:
    linear-gradient(
      90deg,
      #f6c453,
      #ffd773,
      #36aebf
    );
}

.form-card-premium h3 {
  margin: 0 0 9px;

  color: #0a1f44;

  font-size:
    clamp(1.55rem, 3vw, 2rem);

  font-weight: 800;
  line-height: 1.25;
}

.form-card-premium > p {
  margin: 0 0 30px;

  color: #68758a;

  font-size: 0.96rem;
  line-height: 1.7;
}


/* ==========================================================
   107 — FORMULÁRIO
========================================================== */

#form-contato {
  display: grid;
  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 20px;
}

#form-contato .campo {
  display: flex;
  flex-direction: column;

  min-width: 0;
}

#form-contato .campo:nth-of-type(3),
#form-contato .campo:nth-of-type(4),
#form-contato .campo:nth-of-type(5) {
  grid-column: 1 / -1;
}

#form-contato .campo label {
  margin-bottom: 8px;

  color: #1e2d45;

  font-size: 0.86rem;
  font-weight: 800;
}

#form-contato .campo input,
#form-contato .campo select,
#form-contato .campo textarea {
  width: 100%;
  min-width: 0;

  border:
    1px solid #d9e0ea;

  border-radius: 13px;

  color: #223149;

  background: #f9fbfd;

  font-family: inherit;
  font-size: 0.94rem;

  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

#form-contato .campo input,
#form-contato .campo select {
  min-height: 52px;

  padding: 0 16px;
}

#form-contato .campo textarea {
  min-height: 145px;

  padding: 15px 16px;

  line-height: 1.65;

  resize: vertical;
}

#form-contato .campo input::placeholder,
#form-contato .campo textarea::placeholder {
  color: #98a3b3;
}

#form-contato .campo input:focus,
#form-contato .campo select:focus,
#form-contato .campo textarea:focus {
  outline: none;

  border-color: #e5af2f;

  background: #ffffff;

  box-shadow:
    0 0 0 4px
    rgba(246, 196, 83, 0.18);
}


/* ==========================================================
   108 — SELECT DO FORMULÁRIO
========================================================== */

#form-contato .campo select {
  appearance: none;
  -webkit-appearance: none;

  padding-right: 45px;

  cursor: pointer;

  background-image:
    linear-gradient(
      45deg,
      transparent 50%,
      #0a1f44 50%
    ),
    linear-gradient(
      135deg,
      #0a1f44 50%,
      transparent 50%
    );

  background-position:
    calc(100% - 20px) 22px,
    calc(100% - 15px) 22px;

  background-size:
    5px 5px,
    5px 5px;

  background-repeat: no-repeat;
}


/* ==========================================================
   109 — BOTÃO ENVIAR
========================================================== */

.btn-enviar-premium {
  grid-column: 1 / -1;

  min-height: 56px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;

  padding: 0 30px;

  border: 0;
  border-radius: 999px;

  color: #07152f;

  background:
    linear-gradient(
      135deg,
      #f6c453,
      #ffd773
    );

  box-shadow:
    0 15px 34px
    rgba(246, 196, 83, 0.24);

  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 900;

  cursor: pointer;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.btn-enviar-premium:hover {
  transform: translateY(-3px);

  box-shadow:
    0 21px 42px
    rgba(246, 196, 83, 0.34);
}

.btn-enviar-premium:active {
  transform: translateY(-1px);
}

.btn-enviar-premium i {
  font-size: 0.9rem;

  transition:
    transform 0.25s ease;
}

.btn-enviar-premium:hover i {
  transform: translateX(4px);
}


/* ==========================================================
   110 — MENSAGEM APÓS O ENVIO
========================================================== */

.mensagem-sucesso {
  grid-column: 1 / -1;

  display: none;

  margin: 0;
  padding: 13px 16px;

  border:
    1px solid rgba(33, 139, 84, 0.2);

  border-radius: 12px;

  color: #17663d;
  background: #eefaf3;

  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.6;
}

.mensagem-sucesso:not(:empty) {
  display: block;
}


/* ==========================================================
   111 — RESPONSIVIDADE DO CONTATO
========================================================== */

@media (max-width: 1050px) {
  .contato-premium-grid {
    grid-template-columns:
      minmax(0, 0.9fr)
      minmax(390px, 1.1fr);

    gap: 38px;
  }

  .form-card-premium {
    padding: 36px;
  }
}

@media (max-width: 900px) {
  .contato-premium-grid {
    grid-template-columns: 1fr;
  }

  .contato-info {
    padding: 0;
  }

  .contato-beneficios {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

  .contato-direto {
    margin-top: 0;
  }
}

@media (max-width: 700px) {
  .contato-premium {
    padding: 85px 20px;
  }

  .contato-premium-grid {
    gap: 34px;
  }

  .contato-beneficios {
    grid-template-columns: 1fr;
  }

  .form-card-premium {
    padding: 31px 25px;

    border-radius: 22px;
  }

  #form-contato {
    grid-template-columns: 1fr;
  }

  #form-contato .campo,
  #form-contato .campo:nth-of-type(3),
  #form-contato .campo:nth-of-type(4),
  #form-contato .campo:nth-of-type(5) {
    grid-column: 1;
  }
}

@media (max-width: 480px) {
  .contato-premium {
    padding: 70px 16px;
  }

  .contato-info .section-tag {
    margin-bottom: 22px;
  }

  .contato-info > p {
    margin-bottom: 27px;

    font-size: 0.97rem;
  }

  .contato-beneficios > div {
    padding: 12px 13px;
  }

  .contato-direto {
    padding: 24px 21px;

    border-radius: 18px;
  }

  .contato-direto a {
    width: 100%;

    padding: 0 18px;
  }

  .form-card-premium {
    padding: 27px 20px;
  }

  .form-card-premium > p {
    margin-bottom: 25px;
  }

  #form-contato {
    gap: 17px;
  }

  .btn-enviar-premium {
    width: 100%;
  }
}

.footer-grid {
  position: relative;
  z-index: 2;

  display: grid;

  grid-template-columns:
    minmax(250px, 1.35fr)
    minmax(170px, 0.8fr)
    minmax(170px, 0.8fr)
    minmax(230px, 1fr)
    52px;

  gap: 42px;

  align-items: start;

  padding-top: 125px;
  padding-bottom: 65px;
}

/* ==========================================================
   113 — RODAPÉ PRINCIPAL
========================================================== */

.footer-principal {
  position: relative;

  overflow: hidden;

  color: #ffffff;

  background:
    radial-gradient(
      circle at 85% 15%,
      rgba(246, 196, 83, 0.11),
      transparent 28%
    ),
    linear-gradient(
      135deg,
      #051126 0%,
      #081a38 52%,
      #0a1f44 100%
    );

  border-top:
    1px solid rgba(255, 255, 255, 0.08);
}

.footer-principal::before {
  content: "";

  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px
    );

  background-size: 46px 46px;

  opacity: 0.35;

  pointer-events: none;
}

.footer-principal::after {
  content: "";

  position: absolute;
  right: -170px;
  bottom: -210px;

  width: 430px;
  height: 430px;

  border:
    1px solid rgba(255, 255, 255, 0.055);

  border-radius: 50%;

  pointer-events: none;
}


/* ==========================================================
   114 — GRID DO RODAPÉ
========================================================== */

.footer-grid {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns:
    minmax(250px, 1.35fr)
    minmax(170px, 0.8fr)
    minmax(170px, 0.8fr)
    minmax(230px, 1fr)
    52px;

  gap: 42px;

  align-items: start;

  padding-top: 105px;
  padding-bottom: 65px;
}

.footer-grid > div {
  min-width: 0;
}


/* ==========================================================
   115 — TÍTULOS DO RODAPÉ
========================================================== */

.footer-principal h3,
.footer-principal h4 {
  margin-top: 0;

  color: #ffffff;
}

.footer-principal h3 {
  position: relative;

  margin-bottom: 18px;

  font-size: 1.55rem;
  font-weight: 900;
  line-height: 1.3;
}

.footer-principal h3::after {
  content: "";

  display: block;

  width: 52px;
  height: 3px;

  margin-top: 14px;

  border-radius: 999px;

  background:
    linear-gradient(
      90deg,
      #f6c453,
      #ffd773
    );
}

.footer-principal h4 {
  position: relative;

  margin-bottom: 20px;
  padding-bottom: 13px;

  font-size: 0.96rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.footer-principal h4::after {
  content: "";

  position: absolute;
  bottom: 0;
  left: 0;

  width: 32px;
  height: 2px;

  border-radius: 999px;

  background: #f6c453;
}


/* ==========================================================
   116 — TEXTOS E LINKS
========================================================== */

.footer-principal p,
.footer-principal li,
.footer-principal a {
  color: #b9c5d6;

  font-size: 0.86rem;
  line-height: 1.75;
}

.footer-principal p {
  margin: 0 0 7px;
}

.footer-grid > div:first-child p {
  max-width: 360px;

  font-size: 0.9rem;
  line-height: 1.85;
}

.footer-principal ul {
  display: grid;
  gap: 9px;

  margin: 0;
  padding: 0;

  list-style: none;
}

.footer-principal li {
  position: relative;

  padding-left: 15px;
}

.footer-principal li::before {
  content: "";

  position: absolute;
  top: 0.72em;
  left: 0;

  width: 5px;
  height: 5px;

  border-radius: 50%;

  background: #f6c453;
}

.footer-principal a {
  text-decoration: none;

  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.footer-principal li a {
  display: inline-block;
}

.footer-principal li a:hover {
  color: #f6c453;

  transform: translateX(4px);
}

/* ==========================================================
   EMPRESA / LOGO
========================================================== */

.footer-empresa{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
}

.logo-footer{
    width:220px;
    height:auto;
    display:block;
    margin-bottom:22px;
}

.footer-empresa p{
    max-width:360px;
    margin:0;
    color:#b9c5d6;
    font-size:0.92rem;
    line-height:1.85;
}

/* ==========================================================
   117 — COLUNA DE CONTATO
========================================================== */

.footer-grid > div:nth-child(4) p {
  position: relative;

  padding-left: 17px;
}

.footer-grid > div:nth-child(4) p::before {
  content: "";

  position: absolute;
  top: 0.68em;
  left: 0;

  width: 6px;
  height: 6px;

  border-radius: 50%;

  background:
    rgba(246, 196, 83, 0.8);
}


/* ==========================================================
   118 — BOTÃO VOLTAR AO TOPO
========================================================== */

.footer-principal .btn-voltar-topo {
  position: relative;
  z-index: 3;

  width: 50px;
  height: 50px;

  display: flex;
  align-items: center;
  justify-content: center;

  align-self: start;

  border:
    1px solid rgba(246, 196, 83, 0.35);

  border-radius: 15px;

  color: #07152f;

  background:
    linear-gradient(
      135deg,
      #f6c453,
      #ffd773
    );

  box-shadow:
    0 14px 32px
    rgba(0, 0, 0, 0.24);

  font-size: 1rem;
  text-decoration: none;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.footer-principal .btn-voltar-topo:hover {
  color: #07152f;

  transform: translateY(-5px);

  box-shadow:
    0 21px 42px
    rgba(0, 0, 0, 0.32);
}


/* ==========================================================
   119 — DIREITOS AUTORAIS
========================================================== */

.footer-copy {
  position: relative;
  z-index: 2;

  padding: 21px 24px;

  border-top:
    1px solid rgba(255, 255, 255, 0.08);

  background:
    rgba(0, 0, 0, 0.09);

  text-align: center;
}

.footer-copy p {
  margin: 0;

  color: #99a8bd;

  font-size: 0.75rem;
  line-height: 1.6;
}


/* ==========================================================
   120 — RESPONSIVIDADE DO RODAPÉ
========================================================== */

@media (max-width: 1150px) {
  .footer-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    gap: 42px 55px;
  }

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }

  .footer-principal .btn-voltar-topo {
    position: absolute;
    top: 70px;
    right: 0;
  }
}

@media (max-width: 700px) {
  .footer-grid {
    grid-template-columns: 1fr;

    gap: 34px;

    padding-top: 90px;
    padding-bottom: 50px;
  }

  .footer-grid > div:first-child {
    grid-column: auto;
  }

  .footer-principal .btn-voltar-topo {
    top: 28px;
    right: 0;
  }

  .footer-grid > div:first-child p {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    padding-top: 86px;
    padding-bottom: 42px;
  }

  .footer-principal h3 {
    font-size: 1.4rem;
  }

  .footer-principal h4 {
    margin-bottom: 16px;
  }

  .footer-principal p,
  .footer-principal li,
  .footer-principal a {
    font-size: 0.84rem;
  }

  .footer-copy {
    padding: 19px 16px;
  }
}

/* ==========================================================
   BOTÃO FLUTUANTE — FALAR COM O ENGENHEIRO
========================================================== */

.cta-estudo {
  position: fixed;
  right: 24px;
  bottom: 28px;
  z-index: 9990;

  width: 62px;
  height: 62px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  margin: 0;
  padding: 0;

  overflow: hidden;

  border:
    1px solid rgba(255, 255, 255, 0.24);

  border-radius: 999px;

  color: #ffffff;

  background:
    linear-gradient(
      135deg,
      #25d366,
      #18b956
    );

  box-shadow:
    0 16px 38px
    rgba(18, 140, 65, 0.35);

  font-size: 0.94rem;
  font-weight: 900;
  line-height: 1.3;
  text-decoration: none;

  transition:
    width 0.35s ease,
    padding 0.35s ease,
    transform 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.cta-estudo::before {
  content: "";

  position: absolute;
  inset: 0;

  border-radius: inherit;

  box-shadow:
    0 0 0 0
    rgba(37, 211, 102, 0.45);

  animation:
    whatsapp-pulso 2.2s infinite;

  pointer-events: none;
}

.cta-estudo::after {
  display: none;
}


/* ==========================================================
   ÍCONE DO WHATSAPP
========================================================== */

.cta-estudo i {
  position: relative;
  z-index: 2;

  flex: 0 0 auto;

  font-size: 1.7rem;
}


/* ==========================================================
   TEXTO ESCONDIDO
========================================================== */

.cta-estudo span {
  position: relative;
  z-index: 2;

  max-width: 0;

  overflow: hidden;

  opacity: 0;

  white-space: nowrap;

  transform: translateX(12px);

  transition:
    max-width 0.35s ease,
    opacity 0.25s ease,
    transform 0.35s ease;
}


/* ==========================================================
   BOTÃO ABERTO AO PASSAR O MOUSE
========================================================== */

.cta-estudo:hover {
  width: 315px;

  justify-content: flex-start;

  padding: 0 25px;

  color: #ffffff;
  background: #20bd5a;

  transform: translateY(-4px);

  box-shadow:
    0 22px 48px
    rgba(18, 140, 65, 0.43);
}

.cta-estudo:hover span {
  max-width: 240px;

  opacity: 1;

  transform: translateX(0);
}

.cta-estudo:focus-visible {
  width: 315px;

  justify-content: flex-start;

  padding: 0 25px;

  outline:
    4px solid rgba(37, 211, 102, 0.28);

  outline-offset: 5px;
}

.cta-estudo:focus-visible span {
  max-width: 240px;

  opacity: 1;

  transform: translateX(0);
}


/* ==========================================================
   ANIMAÇÃO DE PULSO
========================================================== */

@keyframes whatsapp-pulso {
  0% {
    box-shadow:
      0 0 0 0
      rgba(37, 211, 102, 0.45);
  }

  70% {
    box-shadow:
      0 0 0 17px
      rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow:
      0 0 0 0
      rgba(37, 211, 102, 0);
  }
}


/* ==========================================================
   RESPONSIVIDADE
========================================================== */

@media (max-width: 700px) {
  .cta-estudo {
    right: 18px;
    bottom: 20px;

    width: 58px;
    height: 58px;
  }

  .cta-estudo:hover,
  .cta-estudo:focus-visible {
    width: 58px;

    justify-content: center;

    padding: 0;
  }

  .cta-estudo span,
  .cta-estudo:hover span,
  .cta-estudo:focus-visible span {
    display: none;
  }

  .cta-estudo i {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .cta-estudo {
    right: 14px;
    bottom: 16px;

    width: 55px;
    height: 55px;
  }

  .cta-estudo i {
    font-size: 1.5rem;
  }
}

/* ==========================================================
   VK PAINÉIS ELÉTRICOS — SEÇÃO PRINCIPAL
========================================================== */

.vk-paineis-home {
  position: relative;

  padding: 115px 24px;

  overflow: hidden;

  color: #ffffff;

  background:
    radial-gradient(
      circle at 12% 10%,
      rgba(246, 196, 83, 0.16),
      transparent 27%
    ),
    radial-gradient(
      circle at 90% 85%,
      rgba(54, 174, 191, 0.15),
      transparent 30%
    ),
    linear-gradient(
      135deg,
      #050e1e 0%,
      #07172f 48%,
      #0a1f44 100%
    );
}

.vk-paineis-home::before {
  content: "";

  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px
    );

  background-size: 48px 48px;

  opacity: 0.45;

  pointer-events: none;
}

.vk-paineis-home::after {
  content: "";

  position: absolute;
  top: -230px;
  right: -220px;

  width: 540px;
  height: 540px;

  border:
    1px solid rgba(255, 255, 255, 0.065);

  border-radius: 50%;

  pointer-events: none;
}

.vk-paineis-home .container {
  position: relative;
  z-index: 2;
}


/* ==========================================================
   CABEÇALHO
========================================================== */

.vk-paineis-header {
  max-width: 920px;

  margin: 0 auto 65px;

  text-align: center;
}

.vk-paineis-header .section-tag {
  color: #07152f;
  background: #f6c453;
}

.vk-paineis-header .section-tag::before {
  background: #07152f;
}

.vk-paineis-header h2 {
  margin-bottom: 22px;

  color: #ffffff;

  font-size:
    clamp(2.3rem, 4.5vw, 3.8rem);

  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.vk-paineis-header h2 strong {
  color: #f6c453;
}

.vk-paineis-header p {
  max-width: 820px;

  margin: 0 auto;

  color: #cbd6e7;

  font-size: 1.06rem;
  line-height: 1.85;
}


/* ==========================================================
   APRESENTAÇÃO PRINCIPAL
========================================================== */

.vk-paineis-apresentacao {
  display: grid;
  grid-template-columns:
    minmax(0, 1.05fr)
    minmax(390px, 0.95fr);

  gap: 58px;

  align-items: stretch;

  margin-bottom: 65px;
}


/* ==========================================================
   IMAGEM PRINCIPAL
========================================================== */

.vk-paineis-imagem {
  position: relative;

  min-height: 620px;

  overflow: hidden;

  border:
    1px solid rgba(255, 255, 255, 0.13);

  border-radius: 28px;

  background: #101c2e;

  box-shadow:
    0 35px 90px
    rgba(0, 0, 0, 0.34);
}

.vk-paineis-imagem img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  transition:
    transform 0.6s ease;
}

.vk-paineis-imagem:hover img {
  transform: scale(1.035);
}

.vk-paineis-imagem-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      180deg,
      rgba(5, 14, 30, 0.05) 25%,
      rgba(5, 14, 30, 0.9) 100%
    );

  pointer-events: none;
}

.vk-paineis-selo {
  position: absolute;
  top: 24px;
  left: 24px;

  display: inline-flex;
  align-items: center;
  gap: 9px;

  padding: 10px 16px;

  border-radius: 999px;

  color: #07152f;
  background: #f6c453;

  box-shadow:
    0 13px 30px
    rgba(0, 0, 0, 0.25);

  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.vk-paineis-destaque-imagem {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;

  padding: 24px;

  border:
    1px solid rgba(255, 255, 255, 0.13);

  border-radius: 19px;

  background:
    rgba(5, 14, 30, 0.76);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.vk-paineis-destaque-imagem strong {
  display: block;

  margin-bottom: 7px;

  color: #ffffff;

  font-size: 1.12rem;
  font-weight: 900;
}

.vk-paineis-destaque-imagem span {
  display: block;

  color: #cbd6e7;

  font-size: 0.9rem;
  line-height: 1.65;
}


/* ==========================================================
   CONTEÚDO PRINCIPAL
========================================================== */

.vk-paineis-conteudo {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.vk-paineis-tag {
  align-self: flex-start;

  margin-bottom: 18px;
  padding: 8px 14px;

  border:
    1px solid rgba(246, 196, 83, 0.3);

  border-radius: 999px;

  color: #f6c453;

  background:
    rgba(246, 196, 83, 0.08);

  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vk-paineis-conteudo h3 {
  margin-bottom: 21px;

  color: #ffffff;

  font-size:
    clamp(1.85rem, 3vw, 2.65rem);

  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.vk-paineis-conteudo > p {
  margin-bottom: 30px;

  color: #cbd6e7;

  font-size: 1rem;
  line-height: 1.8;
}


/* ==========================================================
   BENEFÍCIOS
========================================================== */

.vk-paineis-beneficios {
  display: grid;
  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 15px;

  margin-bottom: 32px;
}

.vk-paineis-beneficios > div {
  display: flex;
  align-items: flex-start;
  gap: 13px;

  min-height: 128px;

  padding: 18px;

  border:
    1px solid rgba(255, 255, 255, 0.1);

  border-radius: 17px;

  background:
    rgba(255, 255, 255, 0.055);

  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}

.vk-paineis-beneficios > div:hover {
  transform: translateY(-5px);

  border-color:
    rgba(246, 196, 83, 0.4);

  background:
    rgba(255, 255, 255, 0.085);
}

.vk-paineis-beneficios i {
  flex: 0 0 42px;

  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 13px;

  color: #07152f;

  background:
    linear-gradient(
      135deg,
      #f6c453,
      #ffd773
    );

  font-size: 1rem;
}

.vk-paineis-beneficios span {
  color: #cbd6e7;

  font-size: 0.86rem;
  line-height: 1.55;
}

.vk-paineis-beneficios strong {
  display: block;

  margin-bottom: 4px;

  color: #ffffff;

  font-size: 0.92rem;
}


/* ==========================================================
   BOTÕES
========================================================== */

.vk-paineis-acoes {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.vk-paineis-btn-principal,
.vk-paineis-btn-secundario {
  min-height: 54px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 0 24px;

  border-radius: 999px;

  font-size: 0.9rem;
  font-weight: 900;
  text-decoration: none;

  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.vk-paineis-btn-principal {
  color: #07152f;

  background:
    linear-gradient(
      135deg,
      #f6c453,
      #ffd773
    );

  box-shadow:
    0 15px 34px
    rgba(246, 196, 83, 0.23);
}

.vk-paineis-btn-principal:hover {
  transform: translateY(-3px);

  box-shadow:
    0 21px 44px
    rgba(246, 196, 83, 0.32);
}

.vk-paineis-btn-secundario {
  border:
    1px solid rgba(255, 255, 255, 0.19);

  color: #ffffff;

  background:
    rgba(255, 255, 255, 0.055);
}

.vk-paineis-btn-secundario:hover {
  transform: translateY(-3px);

  border-color:
    rgba(37, 211, 102, 0.5);

  background:
    rgba(37, 211, 102, 0.13);
}


/* ==========================================================
   TIPOS DE PAINÉIS
========================================================== */

.vk-paineis-tipos {
  display: grid;
  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 22px;

  margin-bottom: 70px;
}

.vk-painel-tipo {
  position: relative;

  min-height: 275px;

  padding: 29px 25px;

  overflow: hidden;

  border:
    1px solid rgba(255, 255, 255, 0.11);

  border-radius: 22px;

  background:
    rgba(255, 255, 255, 0.055);

  box-shadow:
    0 18px 45px
    rgba(0, 0, 0, 0.16);

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
}

.vk-painel-tipo::after {
  content: "";

  position: absolute;
  right: -50px;
  bottom: -50px;

  width: 130px;
  height: 130px;

  border:
    1px solid rgba(255, 255, 255, 0.06);

  border-radius: 50%;
}

.vk-painel-tipo:hover {
  transform: translateY(-8px);

  border-color:
    rgba(246, 196, 83, 0.42);

  background:
    rgba(255, 255, 255, 0.085);
}

.vk-painel-tipo > i {
  width: 56px;
  height: 56px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 21px;

  border-radius: 16px;

  color: #07152f;

  background:
    linear-gradient(
      135deg,
      #f6c453,
      #ffd773
    );

  font-size: 1.28rem;
}

.vk-painel-tipo > span {
  display: block;

  margin-bottom: 8px;

  color: #36c7dc;

  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.vk-painel-tipo h3 {
  margin-bottom: 12px;

  color: #ffffff;

  font-size: 1.25rem;
  font-weight: 800;
}

.vk-painel-tipo p {
  margin: 0;

  color: #cbd6e7;

  font-size: 0.9rem;
  line-height: 1.72;
}


/* ==========================================================
   PROCESSO DE FABRICAÇÃO
========================================================== */

.vk-paineis-processo {
  margin-bottom: 70px;
  padding: 42px;

  border:
    1px solid rgba(255, 255, 255, 0.11);

  border-radius: 26px;

  background:
    rgba(255, 255, 255, 0.045);

  box-shadow:
    0 25px 65px
    rgba(0, 0, 0, 0.18);
}

.vk-paineis-processo-header {
  max-width: 680px;

  margin: 0 auto 42px;

  text-align: center;
}

.vk-paineis-processo-header span {
  display: block;

  margin-bottom: 9px;

  color: #f6c453;

  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vk-paineis-processo-header h3 {
  color: #ffffff;

  font-size:
    clamp(1.65rem, 3vw, 2.3rem);

  font-weight: 800;
}

.vk-paineis-processo-grid {
  display: grid;
  grid-template-columns:
    repeat(6, minmax(0, 1fr));

  gap: 14px;
}

.vk-paineis-processo-grid > div {
  position: relative;

  min-height: 205px;

  padding: 23px 18px;

  border:
    1px solid rgba(255, 255, 255, 0.085);

  border-radius: 17px;

  background:
    rgba(255, 255, 255, 0.045);

  text-align: center;

  transition:
    transform 0.25s ease,
    border-color 0.25s ease;
}

.vk-paineis-processo-grid > div:hover {
  transform: translateY(-5px);

  border-color:
    rgba(246, 196, 83, 0.38);
}

.vk-paineis-processo-grid > div:not(:last-child)::after {
  content: "\f054";

  position: absolute;
  top: 50%;
  right: -12px;
  z-index: 3;

  color: #f6c453;

  font-family:
    "Font Awesome 6 Free";

  font-size: 0.8rem;
  font-weight: 900;

  transform:
    translateY(-50%);
}

.vk-paineis-processo-grid strong {
  display: block;

  margin-bottom: 10px;

  color: #36c7dc;

  font-size: 0.74rem;
  font-weight: 900;
}

.vk-paineis-processo-grid i {
  display: block;

  margin-bottom: 15px;

  color: #f6c453;

  font-size: 1.5rem;
}

.vk-paineis-processo-grid h4 {
  margin-bottom: 9px;

  color: #ffffff;

  font-size: 1rem;
  font-weight: 800;
}

.vk-paineis-processo-grid p {
  margin: 0;

  color: #bdc9da;

  font-size: 0.79rem;
  line-height: 1.55;
}


/* ==========================================================
   DOCUMENTAÇÃO
========================================================== */

.vk-paineis-documentacao {
  display: grid;
  grid-template-columns:
    minmax(280px, 0.85fr)
    minmax(0, 1.15fr);

  gap: 42px;

  align-items: center;

  margin-bottom: 55px;
  padding: 38px;

  border:
    1px solid rgba(246, 196, 83, 0.23);

  border-radius: 24px;

  background:
    linear-gradient(
      135deg,
      rgba(246, 196, 83, 0.11),
      rgba(255, 255, 255, 0.045)
    );
}

.vk-paineis-documentacao-texto > span {
  display: block;

  margin-bottom: 10px;

  color: #f6c453;

  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vk-paineis-documentacao-texto h3 {
  margin-bottom: 14px;

  color: #ffffff;

  font-size:
    clamp(1.45rem, 2.5vw, 2rem);

  font-weight: 800;
  line-height: 1.25;
}

.vk-paineis-documentacao-texto p {
  margin: 0;

  color: #cbd6e7;

  font-size: 0.93rem;
  line-height: 1.75;
}

.vk-paineis-documentacao-grid {
  display: grid;
  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 13px;
}

.vk-paineis-documentacao-grid span {
  min-height: 57px;

  display: flex;
  align-items: center;
  gap: 11px;

  padding: 13px 15px;

  border:
    1px solid rgba(255, 255, 255, 0.085);

  border-radius: 14px;

  color: #e7edf7;

  background:
    rgba(255, 255, 255, 0.055);

  font-size: 0.86rem;
  font-weight: 700;
}

.vk-paineis-documentacao-grid i {
  color: #f6c453;

  font-size: 1rem;
}


/* ==========================================================
   INDICADORES FINAIS
========================================================== */

.vk-paineis-indicadores {
  display: grid;
  grid-template-columns:
    repeat(4, minmax(0, 1fr));

  overflow: hidden;

  border:
    1px solid rgba(255, 255, 255, 0.11);

  border-radius: 22px;

  background:
    rgba(255, 255, 255, 0.05);
}

.vk-paineis-indicadores > div {
  position: relative;

  min-height: 155px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  padding: 23px;

  text-align: center;
}

.vk-paineis-indicadores > div:not(:last-child)::after {
  content: "";

  position: absolute;
  top: 25%;
  right: 0;

  width: 1px;
  height: 50%;

  background:
    rgba(255, 255, 255, 0.11);
}

.vk-paineis-indicadores i {
  margin-bottom: 12px;

  color: #f6c453;

  font-size: 1.45rem;
}

.vk-paineis-indicadores strong {
  display: block;

  margin-bottom: 5px;

  color: #ffffff;

  font-size: 1.05rem;
  font-weight: 900;
}

.vk-paineis-indicadores span {
  color: #bdc9da;

  font-size: 0.8rem;
}


/* ==========================================================
   RESPONSIVIDADE
========================================================== */

@media (max-width: 1180px) {
  .vk-paineis-apresentacao {
    grid-template-columns: 1fr;
  }

  .vk-paineis-imagem {
    min-height: 560px;
  }

  .vk-paineis-tipos {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

  .vk-paineis-processo-grid {
    grid-template-columns:
      repeat(3, minmax(0, 1fr));
  }

  .vk-paineis-processo-grid
  > div:nth-child(3)::after {
    display: none;
  }
}

@media (max-width: 850px) {
  .vk-paineis-beneficios {
    grid-template-columns: 1fr;
  }

  .vk-paineis-documentacao {
    grid-template-columns: 1fr;
  }

  .vk-paineis-indicadores {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

  .vk-paineis-indicadores
  > div:nth-child(2)::after {
    display: none;
  }

  .vk-paineis-indicadores
  > div:nth-child(-n + 2) {
    border-bottom:
      1px solid rgba(255, 255, 255, 0.11);
  }
}

@media (max-width: 700px) {
  .vk-paineis-home {
    padding: 85px 20px;
  }

  .vk-paineis-header {
    margin-bottom: 45px;
  }

  .vk-paineis-header h2 {
    font-size: 2.05rem;
  }

  .vk-paineis-imagem {
    min-height: 430px;

    border-radius: 22px;
  }

  .vk-paineis-destaque-imagem {
    right: 18px;
    bottom: 18px;
    left: 18px;

    padding: 19px;
  }

  .vk-paineis-tipos {
    grid-template-columns: 1fr;
  }

  .vk-paineis-processo {
    padding: 30px 22px;
  }

  .vk-paineis-processo-grid {
    grid-template-columns: 1fr;
  }

  .vk-paineis-processo-grid
  > div:not(:last-child)::after {
    content: "\f078";

    top: auto;
    right: 50%;
    bottom: -12px;

    transform:
      translateX(50%);
  }

  .vk-paineis-documentacao {
    padding: 29px 23px;
  }

  .vk-paineis-documentacao-grid {
    grid-template-columns: 1fr;
  }

  .vk-paineis-acoes {
    flex-direction: column;
  }

  .vk-paineis-btn-principal,
  .vk-paineis-btn-secundario {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .vk-paineis-home {
    padding: 70px 16px;
  }

  .vk-paineis-header h2 {
    font-size: 1.85rem;
  }

  .vk-paineis-header p {
    font-size: 1rem;
  }

  .vk-paineis-imagem {
    min-height: 360px;
  }

  .vk-paineis-selo {
    top: 17px;
    left: 17px;

    font-size: 0.65rem;
  }

  .vk-paineis-destaque-imagem strong {
    font-size: 1rem;
  }

  .vk-paineis-destaque-imagem span {
    font-size: 0.82rem;
  }

  .vk-painel-tipo {
    min-height: auto;

    padding: 25px 21px;
  }

  .vk-paineis-processo {
    padding: 26px 18px;
  }

  .vk-paineis-indicadores {
    grid-template-columns: 1fr;
  }

  .vk-paineis-indicadores > div {
    min-height: 125px;

    border-bottom:
      1px solid rgba(255, 255, 255, 0.11);
  }

  .vk-paineis-indicadores
  > div:not(:last-child)::after {
    display: none;
  }

  .vk-paineis-indicadores
  > div:last-child {
    border-bottom: 0;
  }
}