:root {
  --azul: #063a88;
  --azul-escuro: #021d4b;
  --verde: #54b500;
  --branco: #ffffff;
  --fundo: #f5f8fd;
  --texto-claro: #60718e;
  --borda: rgba(6, 58, 136, 0.12);
  --browser-ui-offset: 0px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  color: var(--azul-escuro);
  background: var(--fundo);
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
}

/* =========================
   CABEÇALHO
========================= */

.site-header {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--branco);
  box-shadow: 0 5px 18px rgba(2, 29, 75, 0.1);
}

.header-art {
  width: 100%;
  aspect-ratio: 2000 / 199;
  background-image: url("../banners/fundo-cabecalho-desktop.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
}

/* =========================
   MENU DESKTOP
========================= */

.primary-nav {
  width: min(550px, 40vw);
  height: 95%;
  display: flex;
  align-items: center;
  justify-content: space-between;

  position: absolute;
  top: -5px;
  left: 56%;
  z-index: 2;

  padding: 0 8px 7px;
  transform: translateX(-50%);
}

.nav-link {
  height: 100%;
  min-height: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  position: relative;
  padding: 0 9px;

  color: var(--azul-escuro);
  font-size: clamp(1.12rem, 1.4vw, 1.42rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  text-decoration: none;
  white-space: nowrap;

  transition: color 0.25s ease, transform 0.25s ease;
}

.nav-link::after {
  content: "";
  width: calc(100% - 18px);
  height: 3px;
  left: 9px;
  bottom: 35px;

  position: absolute;

  border-radius: 20px;
  background: var(--verde);
  box-shadow: 0 2px 6px rgba(84, 181, 0, 0.18);

  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-link:hover {
  color: var(--verde);
  transform: translateY(-1px);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-link.active {
  color: var(--verde);
}

.nav-icon {
  display: none;
  width: 22px;
  height: 22px;

  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.nav-label-mobile {
  display: none;
}

/* =========================
   PÁGINA INICIAL
========================= */

.page-stage {
  width: 100%;
  min-height: calc(100svh - clamp(105px, 9.95vw, 191px));
  display: flex;
  align-items: center;
  padding: 90px max(6%, 25px);

  background:
    radial-gradient(circle at 82% 20%, rgba(84, 181, 0, 0.17), transparent 22%),
    radial-gradient(circle at 10% 78%, rgba(6, 58, 136, 0.13), transparent 28%),
    linear-gradient(135deg, #ffffff, #eff6ff);
}

.stage-content {
  max-width: 800px;
}

.stage-content > p:first-child {
  margin-bottom: 15px;
  color: var(--verde);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.stage-content h1 {
  color: var(--azul-escuro);
  font-size: clamp(2.7rem, 5vw, 5.2rem);
  line-height: 1.04;
  letter-spacing: -0.06em;
}

.stage-content h1 span {
  display: block;
  color: var(--verde);
}

.stage-description {
  max-width: 620px;
  margin-top: 24px;
  color: var(--texto-claro);
  font-size: 1rem;
  line-height: 1.8;
}

/* =========================
   TABLET
========================= */

@media (max-width: 1100px) and (min-width: 761px) {
  .primary-nav {
    width: min(560px, 48vw);
    top: 5px;
    left: 55%;
  }

  .nav-link {
    font-size: clamp(0.9rem, 1.25vw, 1.08rem);
  }

  .nav-link::after {
    bottom: 18px;
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 760px) {
  body {
    padding-bottom: calc(
      94px + env(safe-area-inset-bottom) + var(--browser-ui-offset)
    );
  }

  .header-art {
    aspect-ratio: 1026 / 167;
    background-image: url("../banners/fundo-cabecalho-mobile.png");
    background-size: 100% 100%;
  }

  .nav-label-desktop {
    display: none;
  }

  .nav-label-mobile {
    display: inline;
  }

  .site-header .primary-nav {
    width: calc(100% - 8px);
    height: calc(88px + env(safe-area-inset-bottom));
    min-height: 88px;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: stretch;

    position: fixed;
    top: auto;
    right: 4px;
    bottom: var(--browser-ui-offset);
    left: 4px;
    z-index: 9999;

    padding: 0 0 env(safe-area-inset-bottom);

    border: 1px solid rgba(6, 58, 136, 0.1);
    border-bottom: 0;
    border-radius: 18px 18px 0 0;

    background: linear-gradient(
      180deg,
      #ffffff 0%,
      #fcfdff 58%,
      #f1f7fd 100%
    );

    box-shadow:
      0 -8px 24px rgba(2, 29, 75, 0.12),
      0 0 0 1px rgba(255, 255, 255, 0.7) inset;

    overflow: hidden;
    transform: none;
  }

  .site-header .primary-nav .nav-link {
    min-width: 0;
    min-height: 88px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;

    padding: 9px 3px 12px;

    color: var(--azul-escuro);
    background: transparent;

    font-size: clamp(0.64rem, 2.75vw, 0.8rem);
    font-weight: 700;
    line-height: 1.05;
    text-align: center;
    white-space: nowrap;

    border: 0;
    box-shadow: none;
    transform: none;
  }

  .site-header .primary-nav .nav-link + .nav-link {
    border-left: 1px solid rgba(6, 58, 136, 0.12);
  }

  .site-header .primary-nav .nav-link .nav-icon {
    width: 25px;
    height: 25px;
    display: block;
    stroke-width: 1.9;
  }

  .site-header .primary-nav .nav-link::after {
    width: 62%;
    height: 4px;
    left: 19%;
    bottom: 0;

    border-radius: 10px 10px 0 0;
    background: var(--verde);
    box-shadow: none;

    transform: scaleX(0);
    transform-origin: center;
  }

  .site-header .primary-nav .nav-link.active {
    color: var(--verde);

    background: linear-gradient(
      180deg,
      rgba(84, 181, 0, 0.01) 0%,
      rgba(84, 181, 0, 0.09) 100%
    );
  }

  .site-header .primary-nav .nav-link.active::after {
    transform: scaleX(1);
  }

  .page-stage {
    min-height: calc(100svh - 62px);
    align-items: flex-start;
    padding: 70px 20px 125px;
  }

  .stage-content h1 {
    font-size: 2.65rem;
  }

  .stage-description {
    font-size: 0.9rem;
  }
}

@media (max-width: 390px) {
  .site-header .primary-nav {
    height: calc(84px + env(safe-area-inset-bottom));
    min-height: 84px;
  }

  .site-header .primary-nav .nav-link {
    min-height: 84px;
    font-size: 0.6rem;
  }

  .site-header .primary-nav .nav-link .nav-icon {
    width: 23px;
    height: 23px;
  }
}

/* =========================
   CATÁLOGO — EM BREVE
========================= */

.catalogo-em-breve {
  min-height: calc(100svh - clamp(105px, 9.95vw, 191px));
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 90px max(7%, 28px);

  background:
    radial-gradient(circle at 85% 18%, rgba(84, 181, 0, 0.18), transparent 20%),
    radial-gradient(circle at 12% 80%, rgba(6, 58, 136, 0.14), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #eef6ff 100%);
}

.catalogo-em-breve::before {
  content: "";
  width: 360px;
  height: 360px;
  right: -160px;
  top: 50%;
  position: absolute;

  border: 1px solid rgba(6, 58, 136, 0.12);
  border-radius: 50%;
  transform: translateY(-50%);
}

.catalogo-em-breve::after {
  content: "";
  width: 250px;
  height: 250px;
  right: -78px;
  top: 50%;
  position: absolute;

  border: 1px dashed rgba(84, 181, 0, 0.38);
  border-radius: 50%;
  transform: translateY(-50%);
}

.catalogo-conteudo {
  width: min(830px, 100%);
  position: relative;
  z-index: 2;
}

.catalogo-selo {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;

  border: 1px solid rgba(84, 181, 0, 0.28);
  border-radius: 30px;

  color: var(--verde);
  background: rgba(255, 255, 255, 0.7);

  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.catalogo-selo span {
  width: 8px;
  height: 8px;

  border-radius: 50%;
  background: var(--verde);
  box-shadow: 0 0 0 5px rgba(84, 181, 0, 0.12);
}

.catalogo-subtitulo {
  margin-top: 26px;
  color: var(--azul);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.catalogo-conteudo h1 {
  max-width: 790px;
  margin-top: 14px;

  color: var(--azul-escuro);
  font-size: clamp(2.7rem, 5vw, 5.4rem);
  line-height: 1.03;
  letter-spacing: -0.06em;
}

.catalogo-conteudo h1 span {
  display: block;
  color: var(--verde);
}

.catalogo-descricao {
  max-width: 650px;
  margin-top: 25px;

  color: var(--texto-claro);
  font-size: 1rem;
  line-height: 1.85;
}

.catalogo-beneficios {
  max-width: 900px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 35px;
}

.catalogo-beneficios div {
  min-height: 122px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 19px;

  border: 1px solid rgba(6, 58, 136, 0.1);
  border-radius: 16px;

  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 28px rgba(2, 29, 75, 0.05);
}

.catalogo-beneficios strong {
  color: var(--azul-escuro);
  font-size: 0.83rem;
}

.catalogo-beneficios span {
  margin-top: 7px;
  color: var(--texto-claro);
  font-size: 0.72rem;
  line-height: 1.55;
}

.catalogo-botao {
  width: fit-content;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
  padding: 0 22px;

  border-radius: 12px;

  color: var(--branco);
  background: linear-gradient(135deg, var(--azul), var(--azul-escuro));
  box-shadow: 0 14px 26px rgba(2, 29, 75, 0.18);

  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;

  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.catalogo-botao:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 32px rgba(2, 29, 75, 0.26);
}

.catalogo-botao span {
  font-size: 1.2rem;
}

@media (max-width: 760px) {
  .catalogo-em-breve {
    min-height: calc(100svh - 62px);
    align-items: flex-start;
    padding: 58px 20px 130px;
  }

  .catalogo-em-breve::before {
    width: 270px;
    height: 270px;
    right: -165px;
    top: 28%;
  }

  .catalogo-em-breve::after {
    width: 190px;
    height: 190px;
    right: -96px;
    top: 28%;
  }

  .catalogo-selo {
    padding: 8px 12px;
    font-size: 0.6rem;
  }

  .catalogo-subtitulo {
    margin-top: 22px;
    font-size: 0.68rem;
  }

  .catalogo-conteudo h1 {
    margin-top: 12px;
    font-size: 2.65rem;
  }

  .catalogo-descricao {
    margin-top: 20px;
    font-size: 0.88rem;
    line-height: 1.75;
  }

  .catalogo-beneficios {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 28px;
  }

  .catalogo-beneficios div {
    min-height: auto;
    padding: 16px;
  }

  .catalogo-botao {
    width: 100%;
    margin-top: 26px;
    font-size: 0.76rem;
  }
}

/* =========================
   QUEM SOMOS — EM BREVE
========================= */

.quem-somos-em-breve {
  min-height: calc(100svh - clamp(105px, 9.95vw, 191px));
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 90px max(7%, 28px);

  background:
    radial-gradient(circle at 84% 20%, rgba(84, 181, 0, 0.17), transparent 21%),
    radial-gradient(circle at 10% 78%, rgba(6, 58, 136, 0.15), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #edf6ff 100%);
}

.quem-somos-em-breve::before {
  content: "";
  width: 350px;
  height: 350px;
  position: absolute;
  right: -155px;
  top: 50%;
  border: 1px solid rgba(6, 58, 136, 0.13);
  border-radius: 50%;
  transform: translateY(-50%);
}

.quem-somos-em-breve::after {
  content: "";
  width: 235px;
  height: 235px;
  position: absolute;
  right: -70px;
  top: 50%;
  border: 1px dashed rgba(84, 181, 0, 0.4);
  border-radius: 50%;
  transform: translateY(-50%);
}

.quem-somos-conteudo {
  width: min(840px, 100%);
  position: relative;
  z-index: 2;
}

.quem-somos-selo {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border: 1px solid rgba(84, 181, 0, 0.28);
  border-radius: 30px;
  color: var(--verde);
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.quem-somos-selo span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--verde);
  box-shadow: 0 0 0 5px rgba(84, 181, 0, 0.12);
}

.quem-somos-subtitulo {
  margin-top: 26px;
  color: var(--azul);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.quem-somos-conteudo h1 {
  max-width: 810px;
  margin-top: 14px;
  color: var(--azul-escuro);
  font-size: clamp(2.7rem, 5vw, 5.35rem);
  line-height: 1.03;
  letter-spacing: -0.06em;
}

.quem-somos-conteudo h1 span {
  display: block;
  color: var(--verde);
}

.quem-somos-descricao {
  max-width: 660px;
  margin-top: 25px;
  color: var(--texto-claro);
  font-size: 1rem;
  line-height: 1.85;
}

.quem-somos-destaques {
  max-width: 900px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 35px;
}

.quem-somos-destaques div {
  min-height: 122px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 19px;
  border: 1px solid rgba(6, 58, 136, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 12px 28px rgba(2, 29, 75, 0.05);
}

.quem-somos-destaques strong {
  color: var(--azul-escuro);
  font-size: 0.83rem;
}

.quem-somos-destaques span {
  margin-top: 7px;
  color: var(--texto-claro);
  font-size: 0.72rem;
  line-height: 1.55;
}

.quem-somos-botao {
  width: fit-content;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
  padding: 0 22px;
  border-radius: 12px;
  color: var(--branco);
  background: linear-gradient(135deg, var(--azul), var(--azul-escuro));
  box-shadow: 0 14px 26px rgba(2, 29, 75, 0.18);
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.quem-somos-botao:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 32px rgba(2, 29, 75, 0.26);
}

.quem-somos-botao span {
  font-size: 1.2rem;
}

@media (max-width: 760px) {
  .quem-somos-em-breve {
    min-height: calc(100svh - 62px);
    align-items: flex-start;
    padding: 58px 20px 130px;
  }

  .quem-somos-em-breve::before {
    width: 270px;
    height: 270px;
    right: -165px;
    top: 28%;
  }

  .quem-somos-em-breve::after {
    width: 190px;
    height: 190px;
    right: -96px;
    top: 28%;
  }

  .quem-somos-selo {
    padding: 8px 12px;
    font-size: 0.6rem;
  }

  .quem-somos-subtitulo {
    margin-top: 22px;
    font-size: 0.68rem;
  }

  .quem-somos-conteudo h1 {
    margin-top: 12px;
    font-size: 2.65rem;
  }

  .quem-somos-descricao {
    margin-top: 20px;
    font-size: 0.88rem;
    line-height: 1.75;
  }

  .quem-somos-destaques {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 28px;
  }

  .quem-somos-destaques div {
    min-height: auto;
    padding: 16px;
  }

  .quem-somos-botao {
    width: 100%;
    margin-top: 26px;
    font-size: 0.76rem;
  }
}
/* =========================
   BANNER PRINCIPAL - HOME
========================= */

.hero-home {
  width: 100%;
  padding: 0;
  background: var(--branco);
}

.hero-banner-wrap {
  width: 100%;
  left: 02%;
  position: relative;
  overflow: hidden;
}

.hero-banner-image {
  width: 100%;
  display: block;
  height: auto;
}

.hero-banner-buttons {
  position: absolute;
  left: 3.6%;
  top: 60.5%;
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 3;
}

.hero-btn {
  min-width: 190px;
  min-height: 52px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

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

.hero-btn-primary {
  color: var(--branco);
  background: linear-gradient(135deg, var(--azul), var(--azul-escuro));
  box-shadow: 0 12px 24px rgba(2, 29, 75, 0.18);
}

.hero-btn-primary:hover {
  box-shadow: 0 16px 28px rgba(2, 29, 75, 0.24);
}

.hero-btn-secondary {
  color: var(--azul-escuro);
  background: var(--branco);
  border: 2px solid rgba(6, 58, 136, 0.18);
  box-shadow: 0 10px 22px rgba(2, 29, 75, 0.08);
}

.hero-btn-secondary:hover {
  color: var(--verde);
  border-color: rgba(84, 181, 0, 0.35);
}

/* Ajuste de desktop intermediário */
@media (max-width: 1200px) and (min-width: 761px) {
  .hero-banner-buttons {
    left: 3.3%;
    top: 60%;
    gap: 10px;
  }

  .hero-btn {
    min-width: 165px;
    min-height: 46px;
    font-size: 0.76rem;
    padding: 0 16px;
  }
}

/* Mobile */
@media (max-width: 760px) {
  .hero-home {
    padding: 0 0 20px;
  }

  .hero-banner-wrap {
    padding: 0;
  }

  .hero-banner-buttons {
    position: static;
    width: 100%;
    padding: 16px 20px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
  }

  .hero-btn {
    width: 100%;
    min-width: 0;
    min-height: 50px;
    font-size: 0.82rem;
    border-radius: 12px;
  }
}

/* =========================
   BOTÕES DO BANNER — REFINAMENTO VISUAL
========================= */

.hero-banner-buttons {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-btn {
  min-width: auto;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 16px;

  border-radius: 6px;
  font-size: 0.74rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;

  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

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

.hero-btn-icon,
.hero-btn-arrow {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;

  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.hero-btn-arrow {
  width: 16px;
  height: 16px;
  margin-left: 2px;
}

.hero-btn-catalogo {
  color: #ffffff;
  background: linear-gradient(135deg, #063a88, #021d4b);
  box-shadow: 0 8px 16px rgba(2, 29, 75, 0.18);
}

.hero-btn-catalogo:hover {
  box-shadow: 0 12px 21px rgba(2, 29, 75, 0.26);
}

.hero-btn-whatsapp {
  color: #399400;
  background: rgba(255, 255, 255, 0.97);
  border: 2px solid rgba(84, 181, 0, 0.7);
  box-shadow: 0 7px 15px rgba(2, 29, 75, 0.08);
}

.hero-btn-whatsapp:hover {
  color: var(--verde);
  box-shadow: 0 11px 19px rgba(84, 181, 0, 0.16);
}

@media (max-width: 760px) {
  .hero-banner-buttons {
    gap: 10px;
  }

  .hero-btn {
    min-height: 50px;
    padding: 0 18px;
    border-radius: 10px;
    font-size: 0.82rem;
  }

  .hero-btn-icon {
    width: 19px;
    height: 19px;
  }
}
.hero-whatsapp-icon {
  fill: currentColor;
  stroke: none;
}.hero-whatsapp-icon {
  width: 18px;
  height: 18px;
  display: block;
  flex: 0 0 auto;
  color: currentColor;
}

/* =========================
   CATEGORIAS EM DESTAQUE
========================= */

.categorias-home {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 7vw, 110px) clamp(24px, 5.4vw, 88px);

  background:
    radial-gradient(circle at 96% 0%, rgba(6, 58, 136, 0.05), transparent 21%),
    radial-gradient(circle at 4% 100%, rgba(84, 181, 0, 0.06), transparent 22%),
    #ffffff;
}

.categorias-cabecalho {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
}

.categorias-selo {
  margin-bottom: 8px;
  color: var(--verde);
  font-size: 0.9rem;
  font-weight: 800;
}

.categorias-cabecalho h2 {
  color: var(--azul-escuro);
  font-size: clamp(2.3rem, 4.2vw, 4.55rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.categorias-cabecalho h2 span {
  color: var(--verde);
}

.btn-ver-todas {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-shrink: 0;
  padding: 0 24px;

  border-radius: 999px;
  color: var(--branco);
  background: linear-gradient(135deg, var(--azul), var(--azul-escuro));
  box-shadow: 0 10px 20px rgba(2, 29, 75, 0.16);

  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;

  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.btn-ver-todas:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 25px rgba(2, 29, 75, 0.24);
}

.btn-ver-todas svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: #72d22a;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.categorias-carrossel {
  width: 100%;
  position: relative;
  margin-top: 38px;
}

.categorias-vitrine {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 14px 10px 25px;

  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.categorias-vitrine::-webkit-scrollbar {
  display: none;
}

.categoria-card {
  flex: 0 0 calc((100% - 80px) / 5);
  min-width: 0;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 24px 18px 25px;

  border: 1px solid rgba(6, 58, 136, 0.08);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 12px 26px rgba(2, 29, 75, 0.07);

  scroll-snap-align: start;
  text-align: center;
  text-decoration: none;

  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.categoria-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 34px rgba(2, 29, 75, 0.12);
}

.categoria-imagem {
  width: 100%;
  height: 235px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;

  border-radius: 16px;
  background:
    radial-gradient(circle at 50% 48%, #f1f6fc 0%, #f8fbff 61%, #ffffff 100%);
}

.categoria-imagem img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;

  transition: transform 0.3s ease;
}

.categoria-card:hover .categoria-imagem img {
  transform: scale(1.06);
}

.categoria-card h3 {
  margin-top: 18px;
  color: var(--azul-escuro);
  font-size: clamp(0.84rem, 1.1vw, 1.04rem);
  font-weight: 800;
  line-height: 1.15;
}

.categoria-seta {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;

  position: absolute;
  top: 50%;
  z-index: 4;

  border: 0;
  border-radius: 50%;
  color: var(--azul);
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(2, 29, 75, 0.12);

  cursor: pointer;
  transform: translateY(-50%);
  transition: transform 0.2s ease, color 0.2s ease;
}

.categoria-seta:hover {
  color: var(--verde);
  transform: translateY(-50%) scale(1.08);
}

.categoria-seta svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.3;
}

.categoria-seta-esquerda {
  left: -28px;
}

.categoria-seta-direita {
  right: -28px;
}

.categorias-mobile-info {
  display: none;
}

/* Notebook menor e tablet horizontal */
@media (max-width: 1200px) and (min-width: 761px) {
  .categoria-card {
    flex-basis: calc((100% - 60px) / 4);
    min-height: 295px;
    padding: 18px 14px 21px;
  }

  .categoria-imagem {
    height: 195px;
  }

  .categoria-seta {
    width: 48px;
    height: 48px;
  }
}

/* Mobile */
@media (max-width: 760px) {
  .categorias-home {
    padding: 18px 0 125px;
  }

  .categorias-cabecalho {
    align-items: flex-start;
    padding: 0 20px;
  }

  .categorias-selo {
    margin-bottom: 8px;
    font-size: 0.76rem;
  }

  .categorias-cabecalho h2 {
    max-width: 310px;
    font-size: 2.5rem;
    line-height: 1.06;
  }

  .categorias-cabecalho h2 span {
    display: block;
  }

  .btn-ver-todas {
    min-width: 104px;
    min-height: 44px;
    margin-top: 6px;
    padding: 0 14px;
    font-size: 0.75rem;
  }

  .btn-ver-todas svg {
    width: 17px;
    height: 17px;
  }

  .categorias-carrossel {
    margin-top: 30px;
  }

  .categorias-vitrine {
    gap: 13px;
    padding: 12px 20px 22px;

    scroll-padding-left: 20px;
  }

  .categoria-card {
    flex: 0 0 42vw;
    min-height: 235px;
    padding: 14px 10px 17px;

    border-radius: 17px;
  }

  .categoria-imagem {
    height: 158px;
    border-radius: 14px;
  }

  .categoria-card h3 {
    margin-top: 12px;
    font-size: 0.75rem;
  }

  .categoria-seta {
    display: none;
  }

  .categorias-mobile-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 2px;
  }

  .categoria-pontos {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .categoria-ponto {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(6, 58, 136, 0.2);
    transition: background 0.2s ease, transform 0.2s ease;
  }

  .categoria-ponto.ativo {
    background: var(--azul);
    transform: scale(1.12);
  }

  .categorias-mobile-info p {
    color: #70819d;
    font-size: 0.78rem;
    font-weight: 600;
  }

  .categorias-mobile-info p span {
    margin-right: 6px;
    color: var(--verde);
    font-size: 1rem;
  }
}

@media (max-width: 390px) {
  .categorias-cabecalho h2 {
    font-size: 2.22rem;
  }

  .categoria-card {
    flex-basis: 45vw;
    min-height: 220px;
  }

  .categoria-imagem {
    height: 146px;
  }

  .categoria-card h3 {
    font-size: 0.69rem;
  }
}

/* =========================
   CATÁLOGO — PÁGINA OFICIAL
========================= */

.catalogo-page {
  width: 100%;
  background: #ffffff;
}

.catalogo-banner {
  width: 100%;
  overflow: hidden;
  background: #f7fbff;
}

.catalogo-banner img {
  width: 100%;
  height: auto;
  display: block;
}

.catalogo-categorias {
  width: 100%;
  padding: clamp(62px, 7vw, 112px) clamp(22px, 5.5vw, 90px) 120px;
  background:
    radial-gradient(circle at 94% 3%, rgba(6, 58, 136, 0.05), transparent 20%),
    radial-gradient(circle at 4% 96%, rgba(84, 181, 0, 0.06), transparent 22%),
    #ffffff;
}

.catalogo-categorias-intro {
  max-width: 760px;
  margin-bottom: 42px;
}

.catalogo-categorias-selo {
  margin-bottom: 10px;
  color: var(--verde);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.catalogo-categorias-intro h1 {
  color: var(--azul-escuro);
  font-size: clamp(2.5rem, 4.5vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.catalogo-categorias-intro h1 span {
  color: var(--verde);
}

.catalogo-categorias-intro > p:last-child {
  max-width: 650px;
  margin-top: 20px;
  color: var(--texto-claro);
  font-size: 1rem;
  line-height: 1.8;
}

.catalogo-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
}

.catalogo-categoria-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 20px 15px 22px;

  border: 1px solid rgba(6, 58, 136, 0.09);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(2, 29, 75, 0.07);

  text-align: center;
  text-decoration: none;

  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.catalogo-categoria-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 21px 36px rgba(2, 29, 75, 0.13);
}

.catalogo-categoria-imagem {
  width: 100%;
  height: 215px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;

  border-radius: 16px;
  background:
    radial-gradient(circle at 50% 48%, #eef5fc 0%, #f9fbff 62%, #ffffff 100%);
}

.catalogo-categoria-imagem img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.catalogo-categoria-card:hover .catalogo-categoria-imagem img {
  transform: scale(1.06);
}

.catalogo-categoria-card h2 {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;

  color: var(--azul-escuro);
  font-size: clamp(0.84rem, 1.05vw, 1rem);
  font-weight: 800;
  line-height: 1.15;
}

/* Notebook e tablet horizontal */
@media (max-width: 1200px) and (min-width: 761px) {
  .catalogo-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .catalogo-categoria-card {
    min-height: 275px;
  }

  .catalogo-categoria-imagem {
    height: 190px;
  }
}

/* Mobile */
@media (max-width: 760px) {
  .catalogo-categorias {
    padding: 48px 16px 132px;
  }

  .catalogo-categorias-intro {
    margin-bottom: 28px;
  }

  .catalogo-categorias-selo {
    font-size: 0.68rem;
  }

  .catalogo-categorias-intro h1 {
    font-size: 2.55rem;
  }

  .catalogo-categorias-intro > p:last-child {
    margin-top: 16px;
    font-size: 0.88rem;
    line-height: 1.7;
  }

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

  .catalogo-categoria-card {
    min-height: 224px;
    padding: 13px 9px 15px;
    border-radius: 17px;
  }

  .catalogo-categoria-imagem {
    height: 154px;
    border-radius: 14px;
  }

  .catalogo-categoria-card h2 {
    min-height: 32px;
    margin-top: 11px;
    font-size: 0.75rem;
  }
}

@media (max-width: 390px) {
  .catalogo-categorias-intro h1 {
    font-size: 2.25rem;
  }

  .catalogo-categoria-card {
    min-height: 208px;
  }

  .catalogo-categoria-imagem {
    height: 140px;
  }

  .catalogo-categoria-card h2 {
    font-size: 0.68rem;
  }
}

/* =========================
   BARRA DE PESQUISA
========================= */

.category-search-section {
  width: 100%;
  position: relative;
  z-index: 20;
  padding: 28px clamp(22px, 5.5vw, 90px) 34px;

  background:
    radial-gradient(circle at 96% 0%, rgba(6, 58, 136, 0.05), transparent 22%),
    radial-gradient(circle at 4% 100%, rgba(84, 181, 0, 0.06), transparent 24%),
    #ffffff;
}

.category-search-shell {
  width: min(1240px, 100%);
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(460px, 1.35fr);
  align-items: center;
  gap: clamp(28px, 4vw, 70px);
  margin: 0 auto;
  padding: clamp(25px, 3vw, 40px);

  border: 1px solid rgba(6, 58, 136, 0.09);
  border-radius: 24px;
  background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 16px 38px rgba(2, 29, 75, 0.08);
}

.category-search-eyebrow {
  margin-bottom: 9px;
  color: var(--verde);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.category-search-copy h2 {
  color: var(--azul-escuro);
  font-size: clamp(2rem, 3.5vw, 3.65rem);
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.category-search-copy h2 span {
  color: var(--verde);
}

.category-search-copy > p:last-child {
  max-width: 420px;
  margin-top: 15px;
  color: var(--texto-claro);
  font-size: 0.94rem;
  line-height: 1.7;
}

.category-search-form {
  position: relative;
}

.category-search-input-wrap {
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 0 8px 0 20px;

  border: 2px solid rgba(6, 58, 136, 0.13);
  border-radius: 15px;
  background: #ffffff;
  box-shadow: 0 9px 18px rgba(2, 29, 75, 0.05);

  transition: border-color 0.22s ease, box-shadow 0.22s ease;
}

.category-search-input-wrap:focus-within {
  border-color: rgba(84, 181, 0, 0.8);
  box-shadow: 0 12px 24px rgba(84, 181, 0, 0.11);
}

.category-search-lupa {
  width: 23px;
  height: 23px;
  flex: 0 0 auto;

  fill: none;
  stroke: var(--azul);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.category-search-input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;

  color: var(--azul-escuro);
  background: transparent;
  font-family: inherit;
  font-size: 0.96rem;
  font-weight: 600;
}

.category-search-input::placeholder {
  color: #8492a9;
  font-weight: 500;
}

.category-search-button {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;

  border: 0;
  border-radius: 11px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--verde), #3f9800);
  box-shadow: 0 7px 14px rgba(84, 181, 0, 0.22);

  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-search-button:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 18px rgba(84, 181, 0, 0.3);
}

.category-search-button svg {
  width: 20px;
  height: 20px;

  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.category-search-results {
  width: 100%;
  max-height: 330px;
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 50;
  overflow-y: auto;

  padding: 8px;
  border: 1px solid rgba(6, 58, 136, 0.1);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 18px 38px rgba(2, 29, 75, 0.16);
}

.category-search-results.is-visible {
  display: block;
}

.category-search-result {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 10px;
  border-radius: 11px;

  color: var(--azul-escuro);
  text-decoration: none;

  transition: background 0.2s ease, transform 0.2s ease;
}

.category-search-result:hover {
  background: #f3f9ff;
  transform: translateX(3px);
}

.category-search-result img {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  padding: 4px;

  border-radius: 11px;
  background: radial-gradient(circle, #edf4fc 0%, #f8fbff 72%);
  object-fit: contain;
}

.category-search-result-info {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.category-search-result-info strong {
  color: var(--azul-escuro);
  font-size: 0.85rem;
  line-height: 1.2;
}

.category-search-result-info span {
  color: #8190a7;
  font-size: 0.7rem;
}

.category-search-result-arrow {
  width: 18px;
  height: 18px;
  margin-left: auto;
  flex: 0 0 auto;

  fill: none;
  stroke: var(--verde);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.category-search-empty {
  padding: 17px 12px;
  color: var(--texto-claro);
  font-size: 0.84rem;
  text-align: center;
}

.category-search-hint {
  margin-top: 10px;
  color: #8290a4;
  font-size: 0.73rem;
  font-weight: 500;
}

/* Aproxima as categorias da barra de busca */
.category-search-section + .categorias-home,
.category-search-section + .catalogo-categorias {
  padding-top: clamp(42px, 5vw, 76px);
}

/* =========================
   BUSCA NO MOBILE
========================= */

@media (max-width: 760px) {
  .category-search-section {
    padding: 20px 16px 25px;
  }

  .category-search-shell {
    grid-template-columns: 1fr;
    gap: 21px;
    padding: 23px 18px;
    border-radius: 20px;
  }

  .category-search-eyebrow {
    margin-bottom: 7px;
    font-size: 0.63rem;
  }

  .category-search-copy h2 {
    font-size: 2.12rem;
    line-height: 1.06;
  }

  .category-search-copy h2 span {
    display: block;
  }

  .category-search-copy > p:last-child {
    margin-top: 12px;
    font-size: 0.83rem;
    line-height: 1.62;
  }

  .category-search-input-wrap {
    min-height: 56px;
    gap: 10px;
    padding-left: 14px;
    border-radius: 13px;
  }

  .category-search-lupa {
    width: 20px;
    height: 20px;
  }

  .category-search-input {
    font-size: 0.82rem;
  }

  .category-search-button {
    width: 42px;
    height: 42px;
    border-radius: 10px;
  }

  .category-search-results {
    max-height: 292px;
    border-radius: 14px;
  }

  .category-search-result {
    gap: 10px;
    padding: 9px;
  }

  .category-search-result img {
    width: 43px;
    height: 43px;
  }

  .category-search-result-info strong {
    font-size: 0.78rem;
  }

  .category-search-result-info span {
    font-size: 0.66rem;
  }

  .category-search-hint {
    font-size: 0.67rem;
  }

  .category-search-section + .categorias-home,
  .category-search-section + .catalogo-categorias {
    padding-top: 30px;
  }
}

/* =========================================
   MAIS VENDIDOS — HOME
========================================= */

.mais-vendidos-home {
  padding: 35px 0 100px;
  background: linear-gradient(180deg, #f7faff 0%, #ffffff 100%);
}

.mais-vendidos-cabecalho {
  width: min(1360px, calc(100% - 56px));
  margin: 0 auto 34px;
}

.mais-vendidos-selo {
  margin: 0 0 12px;
  color: #54b500;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.mais-vendidos-cabecalho h2 {
  margin: 0;
  color: #021d4b;
  font-size: clamp(2rem, 3.1vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.mais-vendidos-cabecalho h2 span {
  color: #54b500;
}

.mais-vendidos-cabecalho > div > p:last-child {
  max-width: 560px;
  margin: 14px 0 0;
  color: #5e6a7f;
  font-size: 1rem;
  line-height: 1.65;
}

.mais-vendidos-vitrine {
  width: min(1360px, calc(100% - 56px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.produto-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e4eaf3;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(2, 29, 75, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.produto-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 38px rgba(2, 29, 75, 0.14);
}

.produto-imagem {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 0.9;
  overflow: hidden;
  padding: 12px;
  background: #fbfbfd;
  border-bottom: 1px solid #edf0f5;
}

.produto-imagem img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.produto-card:hover .produto-imagem img {
  transform: scale(1.04);
}

.produto-conteudo {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 17px;
}

.produto-referencia {
  margin: 0 0 9px;
  color: #54b500;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.produto-conteudo h3 {
  margin: 0;
  color: #021d4b;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.5;
}

.produto-informacoes {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 17px;
  padding-top: 14px;
  border-top: 1px solid #e9eef5;
}

.produto-informacoes span {
  color: #647088;
  font-size: 0.76rem;
  line-height: 1.35;
}

.produto-informacoes strong {
  color: #021d4b;
  font-size: 1.16rem;
  font-weight: 800;
}

.produto-botao {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  margin-top: auto;
  padding: 12px 14px;
  color: #ffffff;
  background: #063a88;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.produto-botao:hover {
  background: #54b500;
  transform: translateY(-2px);
}

.produto-botao span {
  font-size: 1.1rem;
  line-height: 1;
}

/* Tablets */
@media (max-width: 1100px) {
  .mais-vendidos-vitrine {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Celular */
@media (max-width: 760px) {
  .mais-vendidos-home {
    padding: 66px 0 72px;
  }

  .mais-vendidos-cabecalho {
    width: calc(100% - 40px);
    margin-bottom: 25px;
  }

  .mais-vendidos-selo {
    font-size: 0.68rem;
  }

  .mais-vendidos-cabecalho h2 {
    font-size: 2rem;
  }

  .mais-vendidos-cabecalho > div > p:last-child {
    margin-top: 12px;
    font-size: 0.92rem;
  }

  .mais-vendidos-vitrine {
    width: 100%;
    display: flex;
    gap: 14px;
    padding: 2px 20px 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
  }

  .mais-vendidos-vitrine::-webkit-scrollbar {
    display: none;
  }

  .produto-card {
    flex: 0 0 min(285px, 82vw);
    scroll-snap-align: start;
  }

  .produto-conteudo {
    padding: 16px;
  }

  .produto-conteudo h3 {
    font-size: 0.83rem;
  }
}

/* Aproxima Categorias da seção Mais Vendidos */
.categorias-home {
  padding-bottom: 30px;
}

@media (max-width: 760px) {
  .categorias-home {
    padding-bottom: 28px;
  }
}

/* =========================================
   DESTAQUES DE INVERNO — HOME
========================================= */

.destaques-inverno {
  padding: 10px 0 94px;
  background: linear-gradient(180deg, #ffffff 0%, #f3f8ff 100%);
}

.destaques-inverno-cabecalho {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  width: min(1360px, calc(100% - 56px));
  margin: 0 auto 32px;
}

.destaques-inverno-selo {
  margin: 0 0 12px;
  color: #54b500;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.destaques-inverno-cabecalho h2 {
  margin: 0;
  color: #021d4b;
  font-size: clamp(2rem, 3.1vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.destaques-inverno-cabecalho h2 span {
  color: #54b500;
}

.destaques-inverno-cabecalho > div:first-child > p:last-child {
  max-width: 570px;
  margin: 14px 0 0;
  color: #5e6a7f;
  font-size: 1rem;
  line-height: 1.65;
}

.destaques-inverno-controles {
  display: flex;
  gap: 10px;
  padding-bottom: 4px;
}

.inverno-seta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: #063a88;
  background: #ffffff;
  border: 1px solid #dce5f2;
  border-radius: 12px;
  cursor: pointer;
  font-size: 1.35rem;
  font-weight: 700;
  transition: 0.2s ease;
}

.inverno-seta:hover {
  color: #ffffff;
  background: #063a88;
  border-color: #063a88;
  transform: translateY(-2px);
}

.destaques-inverno-viewport {
  width: min(1360px, calc(100% - 56px));
  margin: 0 auto;
  overflow: hidden;
}

.destaques-inverno-track {
  display: flex;
  align-items: stretch;
  gap: 16px;
  transition: transform 0.35s ease;
}

.inverno-produto-card {
  display: flex;
  flex: 0 0 calc((100% - 64px) / 5);
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e1e9f4;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(2, 29, 75, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.inverno-produto-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 38px rgba(2, 29, 75, 0.14);
}

.inverno-produto-imagem {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 0.9;
  overflow: hidden;
  padding: 12px;
  background: #fbfbfd;
  border-bottom: 1px solid #edf0f5;
}

.inverno-produto-imagem img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.inverno-produto-card:hover .inverno-produto-imagem img {
  transform: scale(1.04);
}

.inverno-produto-conteudo {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 17px;
}

.inverno-produto-referencia {
  margin: 0 0 9px;
  color: #54b500;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.inverno-produto-conteudo h3 {
  margin: 0;
  color: #021d4b;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.5;
}

.inverno-produto-informacoes {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 17px;
  padding-top: 14px;
  border-top: 1px solid #e9eef5;
}

.inverno-produto-informacoes span {
  color: #647088;
  font-size: 0.76rem;
  line-height: 1.35;
}

.inverno-produto-informacoes strong {
  color: #021d4b;
  font-size: 1.16rem;
  font-weight: 800;
}

.inverno-produto-botao {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  margin-top: auto;
  padding: 12px 14px;
  color: #ffffff;
  background: #063a88;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: 0.2s ease;
}

.inverno-produto-botao:hover {
  background: #54b500;
  transform: translateY(-2px);
}

.inverno-produto-botao span {
  font-size: 1.1rem;
  line-height: 1;
}

/* Tablet */
@media (max-width: 1100px) {
  .inverno-produto-card {
    flex-basis: calc((100% - 32px) / 3);
  }
}

/* Celular */
@media (max-width: 760px) {
  .destaques-inverno {
    padding: 20px 0 72px;
  }

  .destaques-inverno-cabecalho {
    width: calc(100% - 40px);
    margin-bottom: 25px;
  }

  .destaques-inverno-selo {
    font-size: 0.68rem;
  }

  .destaques-inverno-cabecalho h2 {
    font-size: 2rem;
  }

  .destaques-inverno-cabecalho > div:first-child > p:last-child {
    margin-top: 12px;
    font-size: 0.92rem;
  }

  .destaques-inverno-controles {
    display: none;
  }

  .destaques-inverno-viewport {
    width: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
  }

  .destaques-inverno-viewport::-webkit-scrollbar {
    display: none;
  }

  .destaques-inverno-track {
    width: max-content;
    padding: 2px 20px 18px;
    gap: 14px;
  }

  .inverno-produto-card {
    flex: 0 0 min(285px, 82vw);
    scroll-snap-align: start;
  }

  .inverno-produto-conteudo {
    padding: 16px;
  }
}
/* Botão da linha completa de inverno */
.destaques-inverno-cta {
  display: flex;
  justify-content: center;
  width: min(1360px, calc(100% - 56px));
  margin: 34px auto 0;
}

.destaques-inverno-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 14px 24px;
  color: #ffffff;
  background: #063a88;
  border: 1px solid #063a88;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  transition: 0.25s ease;
}

.destaques-inverno-cta a:hover {
  color: #021d4b;
  background: #ffffff;
  border-color: #54b500;
  box-shadow: 0 10px 24px rgba(2, 29, 75, 0.12);
  transform: translateY(-3px);
}

.destaques-inverno-cta span {
  color: #54b500;
  font-size: 1.2rem;
  line-height: 1;
}

@media (max-width: 760px) {
  .destaques-inverno-cta {
    width: calc(100% - 40px);
    margin-top: 24px;
  }

  .destaques-inverno-cta a {
    width: 100%;
  }
}

/* =========================================
   DIFERENCIAIS — HOME
========================================= */

.diferenciais-kontudo {
  padding: 20px 0 90px;
  background: linear-gradient(180deg, #f6faff 0%, #ffffff 100%);
}

.diferenciais-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(330px, 0.85fr);
  gap: 64px;
  width: min(1360px, calc(100% - 56px));
  margin: 0 auto;
  padding: 58px 62px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e2eaf4;
  border-radius: 28px;
  box-shadow: 0 16px 40px rgba(2, 29, 75, 0.08);
}

.diferenciais-card::after {
  content: "";
  position: absolute;
  right: -100px;
  bottom: -120px;
  width: 440px;
  height: 440px;
  border: 1px solid rgba(6, 58, 136, 0.08);
  border-radius: 50%;
  box-shadow:
    0 0 0 45px rgba(6, 58, 136, 0.035),
    0 0 0 90px rgba(6, 58, 136, 0.02);
  pointer-events: none;
}

.diferenciais-texto,
.diferenciais-numeros {
  position: relative;
  z-index: 1;
}

.diferenciais-selo {
  margin: 0 0 13px;
  color: #54b500;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.diferenciais-texto h2 {
  max-width: 690px;
  margin: 0;
  color: #021d4b;
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 1.12;
  letter-spacing: -0.045em;
}

.diferenciais-texto h2 span {
  color: #54b500;
}

.diferenciais-descricao {
  max-width: 650px;
  margin: 20px 0 0;
  color: #5e6a7f;
  font-size: 1rem;
  line-height: 1.7;
}

.diferenciais-lista {
  display: grid;
  gap: 13px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.diferenciais-lista li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #22395f;
  font-size: 0.94rem;
  font-weight: 600;
}

.diferenciais-lista li::before {
  content: "✓";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 23px;
  height: 23px;
  flex: 0 0 23px;
  color: #ffffff;
  background: #54b500;
  border-radius: 50%;
  font-size: 0.76rem;
  font-weight: 900;
}

.diferenciais-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  padding: 14px 22px;
  color: #ffffff;
  background: #063a88;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(6, 58, 136, 0.22);
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
  transition: 0.25s ease;
}

.diferenciais-whatsapp:hover {
  background: #54b500;
  transform: translateY(-3px);
}

.diferenciais-whatsapp-icone {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-size: 0;
}

.diferenciais-whatsapp-icone::after {
  content: "•";
  margin-top: -7px;
  font-size: 1.5rem;
}

.diferenciais-numeros {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 54px;
  border-left: 1px solid #dce5f0;
}

.diferencial-numero {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 17px 0;
  border-bottom: 1px solid #e3eaf3;
}

.diferencial-numero:first-child {
  padding-top: 0;
}

.diferencial-numero:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.diferencial-numero strong {
  color: #063a88;
  font-size: clamp(2.5rem, 3.5vw, 4rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.06em;
}

.diferencial-numero:nth-child(even) strong {
  color: #54b500;
}

.diferencial-numero span {
  color: #53637c;
  font-size: 1rem;
  font-weight: 600;
}

/* Faixa Global SC */
.global-sc-faixa {
  display: flex;
  align-items: center;
  gap: 35px;
  width: min(1360px, calc(100% - 56px));
  margin: 22px auto 0;
  padding: 22px 30px;
  color: #ffffff;
  background:
    radial-gradient(circle at 82% 50%, rgba(84, 181, 0, 0.12), transparent 28%),
    #021d4b;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  box-shadow: 0 14px 28px rgba(2, 29, 75, 0.16);
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.global-sc-faixa:hover {
  box-shadow: 0 18px 35px rgba(2, 29, 75, 0.24);
  transform: translateY(-3px);
}

.global-sc-identidade {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
  padding-right: 34px;
  border-right: 1px solid rgba(255, 255, 255, 0.34);
}

.global-sc-globo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 39px;
  height: 39px;
  color: #54b500;
  border: 2px solid #54b500;
  border-radius: 50%;
  font-size: 1.3rem;
}

.global-sc-identidade strong {
  font-size: 1.2rem;
  letter-spacing: 0.02em;
}

.global-sc-identidade strong span,
.global-sc-texto b {
  color: #54b500;
}

.global-sc-texto {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 3px;
}

.global-sc-texto strong {
  font-size: 1rem;
}

.global-sc-texto span {
  color: #dce8f9;
  font-size: 0.88rem;
}

.global-sc-botao {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 220px;
  padding: 13px 18px;
  color: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 11px;
  font-size: 0.88rem;
  font-weight: 800;
  transition: 0.25s ease;
}

.global-sc-faixa:hover .global-sc-botao {
  color: #021d4b;
  background: #ffffff;
}

.global-sc-botao span {
  color: #54b500;
  font-size: 1.08rem;
}

/* Tablet */
@media (max-width: 1000px) {
  .diferenciais-card {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .diferenciais-numeros {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    padding: 28px 0 0;
    border-top: 1px solid #dce5f0;
    border-left: 0;
  }

  .diferencial-numero,
  .diferencial-numero:first-child,
  .diferencial-numero:last-child {
    padding: 0 14px 0 0;
    border-right: 1px solid #e3eaf3;
    border-bottom: 0;
  }

  .diferencial-numero:last-child {
    border-right: 0;
  }

  .global-sc-faixa {
    gap: 22px;
  }
}

/* Celular */
@media (max-width: 760px) {
  .diferenciais-kontudo {
    padding: 20px 0 30px;
  }

  .diferenciais-card {
    width: calc(100% - 40px);
    gap: 34px;
    padding: 35px 25px;
    border-radius: 22px;
  }

  .diferenciais-card::after {
    right: -190px;
    bottom: -200px;
    width: 360px;
    height: 360px;
  }

  .diferenciais-selo {
    font-size: 0.67rem;
  }

  .diferenciais-texto h2 {
    font-size: 2rem;
  }

  .diferenciais-descricao {
    margin-top: 16px;
    font-size: 0.92rem;
  }

  .diferenciais-lista {
    gap: 12px;
    margin-top: 24px;
  }

  .diferenciais-lista li {
    align-items: flex-start;
    font-size: 0.86rem;
    line-height: 1.45;
  }

  .diferenciais-lista li::before {
    margin-top: 1px;
  }

  .diferenciais-whatsapp {
    width: 100%;
    justify-content: center;
    margin-top: 27px;
  }

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

  .diferencial-numero,
  .diferencial-numero:first-child,
  .diferencial-numero:last-child {
    padding: 0 16px 0 0;
  }

  .diferencial-numero:nth-child(2) {
    border-right: 0;
  }

  .diferencial-numero:nth-child(3),
  .diferencial-numero:nth-child(4) {
    padding-top: 18px;
    border-top: 1px solid #e3eaf3;
  }

  .diferencial-numero strong {
    font-size: 2.4rem;
  }

  .diferencial-numero span {
    font-size: 0.82rem;
  }

  .global-sc-faixa {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    width: calc(100% - 40px);
    padding: 23px;
    border-radius: 16px;
  }

  .global-sc-identidade {
    width: 100%;
    padding: 0 0 15px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }

  .global-sc-texto {
    width: 100%;
  }

  .global-sc-botao {
    width: 100%;
    min-width: 0;
  }
}

.diferenciais-whatsapp-icone {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  color: #ffffff;
}

/* =========================================
   AVALIAÇÕES — HOME
========================================= */

.avaliacoes-kontudo {
  padding: 76px 0 90px;
  background: #ffffff;
}

.avaliacoes-cabecalho {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  width: min(1360px, calc(100% - 56px));
  margin: 0 auto 32px;
}

.avaliacoes-selo {
  margin: 0 0 12px;
  color: #54b500;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.avaliacoes-cabecalho h2 {
  margin: 0;
  color: #021d4b;
  font-size: clamp(2rem, 3.1vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.avaliacoes-cabecalho h2 span {
  color: #54b500;
}

.avaliacoes-cabecalho > div:first-child > p:last-child {
  max-width: 610px;
  margin: 14px 0 0;
  color: #5e6a7f;
  font-size: 1rem;
  line-height: 1.65;
}

.avaliacoes-controles {
  display: flex;
  gap: 10px;
  padding-bottom: 4px;
}

.avaliacao-seta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: #063a88;
  background: #ffffff;
  border: 1px solid #dce5f2;
  border-radius: 12px;
  cursor: pointer;
  font-size: 1.35rem;
  font-weight: 700;
  transition: 0.2s ease;
}

.avaliacao-seta:hover {
  color: #ffffff;
  background: #063a88;
  border-color: #063a88;
  transform: translateY(-2px);
}

.avaliacoes-viewport {
  width: min(1360px, calc(100% - 56px));
  margin: 0 auto;
  overflow: hidden;
}

.avaliacoes-track {
  display: flex;
  gap: 18px;
  transition: transform 0.35s ease;
}

.avaliacao-card {
  position: relative;
  display: flex;
  flex: 0 0 calc((100% - 36px) / 3);
  min-width: 0;
  min-height: 285px;
  flex-direction: column;
  padding: 30px;
  overflow: hidden;
  background: #f8fbff;
  border: 1px solid #e2eaf4;
  border-radius: 20px;
  box-shadow: 0 12px 28px rgba(2, 29, 75, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.avaliacao-card::after {
  content: "“";
  position: absolute;
  top: 13px;
  right: 22px;
  color: rgba(84, 181, 0, 0.13);
  font-family: Georgia, serif;
  font-size: 7rem;
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}

.avaliacao-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 38px rgba(2, 29, 75, 0.13);
}

.avaliacao-estrelas {
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
  color: #f2b600;
  font-size: 1rem;
  letter-spacing: 0.09em;
}

.avaliacao-estrelas span {
  color: #d7dee8;
}

.avaliacao-texto {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #314968;
  font-size: 0.96rem;
  line-height: 1.72;
}

.avaliacao-cliente {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: auto;
  padding-top: 22px;
}

.avaliacao-cliente strong {
  color: #021d4b;
  font-size: 0.96rem;
  font-weight: 800;
}

.avaliacao-cliente span {
  color: #54b500;
  font-size: 0.82rem;
  font-weight: 700;
}

/* Tablet */
@media (max-width: 1000px) {
  .avaliacao-card {
    flex-basis: calc((100% - 18px) / 2);
  }
}

/* Celular */
@media (max-width: 760px) {
  .avaliacoes-kontudo {
    padding: 64px 0 72px;
  }

  .avaliacoes-cabecalho {
    width: calc(100% - 40px);
    margin-bottom: 25px;
  }

  .avaliacoes-selo {
    font-size: 0.68rem;
  }

  .avaliacoes-cabecalho h2 {
    font-size: 2rem;
  }

  .avaliacoes-cabecalho > div:first-child > p:last-child {
    margin-top: 12px;
    font-size: 0.92rem;
  }

  .avaliacoes-controles {
    display: none;
  }

  .avaliacoes-viewport {
    width: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
  }

  .avaliacoes-viewport::-webkit-scrollbar {
    display: none;
  }

  .avaliacoes-track {
    width: max-content;
    padding: 2px 20px 18px;
    gap: 14px;
  }

  .avaliacao-card {
    flex: 0 0 min(310px, 84vw);
    min-height: 270px;
    padding: 25px;
    scroll-snap-align: start;
  }

  .avaliacao-texto {
    font-size: 0.9rem;
  }
}

/* =========================================
   NEWSLETTER / CONTATO — HOME
========================================= */

.newsletter-kontudo {
  padding: 78px 0 90px;
  background: linear-gradient(180deg, #ffffff 0%, #f4f9ff 100%);
}

.newsletter-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(370px, 0.8fr);
  gap: 42px;
  width: min(1360px, calc(100% - 56px));
  min-height: 530px;
  margin: 0 auto;
  padding: 64px 68px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #dfe8f3;
  border-radius: 28px;
  box-shadow: 0 16px 38px rgba(2, 29, 75, 0.08);
}

.newsletter-card::before {
  content: "";
  position: absolute;
  top: -150px;
  right: -110px;
  width: 590px;
  height: 590px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(84, 181, 0, 0.1) 0%,
    rgba(84, 181, 0, 0.03) 42%,
    transparent 70%
  );
  pointer-events: none;
}

.newsletter-conteudo,
.newsletter-ilustracao {
  position: relative;
  z-index: 1;
}

.newsletter-selo {
  margin: 0 0 13px;
  color: #54b500;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.newsletter-conteudo h2 {
  max-width: 670px;
  margin: 0;
  color: #021d4b;
  font-size: clamp(2.1rem, 3.4vw, 3.45rem);
  line-height: 1.1;
  letter-spacing: -0.05em;
}

.newsletter-conteudo h2 span {
  color: #54b500;
}

.newsletter-descricao {
  max-width: 640px;
  margin: 20px 0 0;
  color: #5d6a80;
  font-size: 1.04rem;
  line-height: 1.7;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  margin-top: 31px;
}

.newsletter-input-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex: 1;
  padding: 0 18px;
  background: #ffffff;
  border: 1px solid #dbe4ef;
  border-radius: 13px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.newsletter-input-wrap:focus-within {
  border-color: #54b500;
  box-shadow: 0 0 0 4px rgba(84, 181, 0, 0.1);
}

.newsletter-email-icone {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  color: #063a88;
}

.newsletter-input-wrap input {
  width: 100%;
  height: 62px;
  color: #021d4b;
  background: transparent;
  border: 0;
  outline: 0;
  font-family: inherit;
  font-size: 0.95rem;
}

.newsletter-input-wrap input::placeholder {
  color: #77859a;
}

.newsletter-botao {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-width: 250px;
  padding: 0 22px;
  color: #ffffff;
  background: #063a88;
  border: 1px solid #063a88;
  border-radius: 13px;
  box-shadow: 0 10px 20px rgba(6, 58, 136, 0.18);
  cursor: pointer;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 800;
  transition: 0.25s ease;
}

.newsletter-botao:hover {
  background: #54b500;
  border-color: #54b500;
  transform: translateY(-3px);
}

.newsletter-botao span {
  color: #c8ff9e;
  font-size: 1.15rem;
  line-height: 1;
}

.newsletter-mensagem {
  min-height: 18px;
  margin: 10px 0 0;
  color: #54b500;
  font-size: 0.82rem;
  font-weight: 700;
}

.newsletter-contato {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 26px;
  padding-top: 27px;
  border-top: 1px solid #dce6f1;
}

.newsletter-whatsapp-circulo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  color: #54b500;
  background: #eff9e9;
  border-radius: 50%;
}

.newsletter-whatsapp-circulo svg {
  width: 29px;
  height: 29px;
}

.newsletter-contato > div:nth-child(2) {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 4px;
}

.newsletter-contato strong {
  color: #021d4b;
  font-size: 0.96rem;
  font-weight: 800;
}

.newsletter-contato > div:nth-child(2) span {
  color: #66758b;
  font-size: 0.86rem;
}

.newsletter-whatsapp-botao {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-width: 210px;
  padding: 14px 17px;
  color: #269400;
  background: #ffffff;
  border: 1px solid #bcdab3;
  border-radius: 12px;
  font-size: 0.87rem;
  font-weight: 800;
  text-decoration: none;
  transition: 0.25s ease;
}

.newsletter-whatsapp-botao:hover {
  color: #ffffff;
  background: #54b500;
  border-color: #54b500;
  transform: translateY(-2px);
}

.newsletter-whatsapp-botao span {
  font-size: 1.15rem;
  line-height: 1;
}

/* Ilustração desktop */

.newsletter-ilustracao {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.newsletter-orbita {
  position: absolute;
  border: 1px solid rgba(84, 181, 0, 0.24);
  border-radius: 50%;
}

.newsletter-orbita-1 {
  width: 330px;
  height: 330px;
}

.newsletter-orbita-2 {
  width: 460px;
  height: 460px;
  border-color: rgba(6, 58, 136, 0.11);
}

.newsletter-painel {
  position: relative;
  z-index: 2;
  width: 245px;
  padding: 13px 18px 22px;
  background: #ffffff;
  border: 1px solid #e0e8f2;
  border-radius: 18px;
  box-shadow: 0 18px 36px rgba(2, 29, 75, 0.15);
}

.newsletter-painel-topo {
  display: flex;
  gap: 5px;
  margin-bottom: 14px;
}

.newsletter-painel-topo span {
  width: 7px;
  height: 7px;
  background: #d3ddea;
  border-radius: 50%;
}

.newsletter-painel-imagem {
  height: 95px;
  margin-bottom: 17px;
  background:
    radial-gradient(circle at 75% 30%, rgba(84, 181, 0, 0.28) 0 10px, transparent 11px),
    linear-gradient(135deg, #e8f5e2 0%, #f7fbff 100%);
  border-radius: 12px;
}

.newsletter-painel-linha {
  width: 87%;
  height: 8px;
  margin-top: 9px;
  background: #e1e8f1;
  border-radius: 10px;
}

.newsletter-painel-linha.grande {
  width: 58%;
  background: #54b500;
}

.newsletter-painel-linha.pequena {
  width: 52%;
}

.newsletter-painel-botao {
  width: 94px;
  height: 17px;
  margin-top: 17px;
  background: #54b500;
  border-radius: 20px;
}

.newsletter-notificacao {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: 220px;
  padding: 16px;
  background: #ffffff;
  border: 1px solid #e2eaf3;
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(2, 29, 75, 0.1);
}

.newsletter-notificacao strong {
  display: block;
  color: #021d4b;
  font-size: 0.78rem;
  font-weight: 800;
}

.newsletter-notificacao i {
  display: block;
  width: 90px;
  height: 6px;
  margin-top: 8px;
  background: #e4ebf3;
  border-radius: 8px;
}

.newsletter-notificacao i:last-child {
  width: 65px;
}

.newsletter-notificacao-icone {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  color: #ffffff;
  background: #54b500;
  border-radius: 50%;
  font-size: 0.9rem;
  font-weight: 900;
}

.notificacao-topo {
  top: 20px;
  left: 8px;
}

.notificacao-baixo {
  right: -5px;
  bottom: 22px;
}

.newsletter-email-bolha,
.newsletter-check-bolha {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 10px 22px rgba(2, 29, 75, 0.12);
}

.newsletter-email-bolha {
  top: 100px;
  right: 15px;
  width: 64px;
  height: 64px;
  color: #ffffff;
  background: #063a88;
  font-size: 1.8rem;
}

.newsletter-check-bolha {
  bottom: 20px;
  left: 45px;
  width: 44px;
  height: 44px;
  color: #ffffff;
  background: #54b500;
  font-size: 1.25rem;
  font-weight: 900;
}

/* Tablet */

@media (max-width: 1050px) {
  .newsletter-card {
    grid-template-columns: 1fr;
    padding: 50px;
  }

  .newsletter-ilustracao {
    display: none;
  }
}

/* Celular */

@media (max-width: 760px) {
  .newsletter-kontudo {
    padding: 05px 0 72px;
  }

  .newsletter-card {
    display: block;
    width: calc(100% - 40px);
    min-height: 0;
    padding: 34px 25px;
    border: 4px solid #021d4b;
    border-radius: 28px;
  }

  .newsletter-card::before {
    top: auto;
    right: -150px;
    bottom: -170px;
    width: 390px;
    height: 390px;
  }

  .newsletter-selo {
    font-size: 0.68rem;
  }

  .newsletter-conteudo h2 {
    font-size: 2.25rem;
  }

  .newsletter-descricao {
    margin-top: 16px;
    font-size: 0.93rem;
    line-height: 1.65;
  }

  .newsletter-form {
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
  }

  .newsletter-input-wrap input {
    height: 56px;
  }

  .newsletter-botao {
    min-height: 56px;
    width: 100%;
  }

  .newsletter-contato {
    align-items: flex-start;
    flex-wrap: wrap;
    margin-top: 24px;
    padding-top: 25px;
  }

  .newsletter-whatsapp-circulo {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
  }

  .newsletter-contato > div:nth-child(2) {
    min-width: 0;
  }

  .newsletter-contato strong {
    font-size: 0.92rem;
  }

  .newsletter-contato > div:nth-child(2) span {
    font-size: 0.82rem;
    line-height: 1.45;
  }

  .newsletter-whatsapp-botao {
    width: 100%;
    min-height: 52px;
    margin-top: 6px;
  }

  .newsletter-ilustracao {
    display: none;
  }
}

/* =========================================
   AJUSTE FINAL DO RODAPÉ
========================================= */

.site-footer {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(circle at 12% 28%, rgba(84, 181, 0, 0.16), transparent 22%),
    radial-gradient(circle at 80% 30%, rgba(6, 58, 136, 0.35), transparent 34%),
    #021d4b;
}

/* Área principal */
.footer-principal {
  display: grid;
  grid-template-columns: 1.05fr 1.15fr 1.05fr 1fr;
  gap: 56px;
  width: min(1360px, calc(100% - 44px));
  margin: 0 auto;
  padding: 68px 0 58px;
  align-items: start;
}

/* Logo do rodapé */
.footer-logo-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 230px;
  height: 174px;
  padding: 0;
  overflow: hidden;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.15);
}

.footer-logo-box img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

/* Linha verde da marca */
.footer-linha-verde {
  display: block;
  width: 58px;
  height: 2px;
  margin: 34px 0 26px;
  background: #54b500;
}

/* Texto da marca */
.footer-marca h3 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 1.08rem;
  font-weight: 800;
}

.footer-marca p {
  max-width: 270px;
  margin: 0;
  color: #d7e2f3;
  font-size: 0.96rem;
  line-height: 1.75;
}

/* Títulos das colunas */
.footer-titulo {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.footer-titulo h3 {
  margin: 0;
  color: #ffffff;
  font-size: 1.32rem;
  font-weight: 850;
}

/* Ícones dos títulos */
.footer-icone {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  color: #54b500;
  border: 1px solid #54b500;
  border-radius: 50%;
  font-size: 1.35rem;
}

/* Botão WhatsApp */
.footer-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  width: 100%;
  max-width: 300px;
  padding: 16px 21px;
  color: #ffffff;
  background: linear-gradient(135deg, #54b500, #2f9e00);
  border-radius: 14px;
  box-shadow: 0 14px 28px rgba(84, 181, 0, 0.22);
  font-size: 0.95rem;
  font-weight: 850;
  text-decoration: none;
}

.footer-whatsapp svg {
  width: 27px;
  height: 27px;
}

.footer-whatsapp span {
  margin-left: auto;
  font-size: 1.25rem;
}

/* Horário */
.footer-horario {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  max-width: 300px;
  margin-top: 28px;
  padding-top: 27px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-horario > span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  color: #54b500;
  border: 1px solid #54b500;
  border-radius: 50%;
}

.footer-horario strong {
  display: block;
  margin-bottom: 5px;
  color: #ffffff;
  font-size: 0.94rem;
  font-weight: 850;
}

.footer-horario p {
  margin: 0;
  color: #d7e2f3;
  font-size: 0.92rem;
}

/* Links institucionais */
.footer-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 17px 0;
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.96rem;
  text-decoration: none;
}

.footer-links a::before {
  content: "•";
  color: #54b500;
  font-size: 1.5rem;
}

.footer-links a span {
  margin-left: auto;
  color: #54b500;
  font-size: 1.55rem;
}

/* Global SC */
.footer-global-texto {
  max-width: 280px;
  margin: 0 0 28px;
  color: #d7e2f3;
  font-size: 0.96rem;
  line-height: 1.75;
}

.footer-global-botao {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  width: 100%;
  max-width: 310px;
  padding: 16px 21px;
  color: #54b500;
  background: transparent;
  border: 1px solid #54b500;
  border-radius: 14px;
  font-size: 0.92rem;
  font-weight: 850;
  text-decoration: none;
}

.footer-global-botao span {
  margin-left: auto;
  font-size: 1.25rem;
}

/* Faixa final */
.footer-final {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 26px;
  padding: 31px min(56px, 4vw);
  background: rgba(0, 12, 35, 0.42);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-seguranca {
  display: flex;
  align-items: center;
  gap: 13px;
}

.footer-seguranca span {
  color: #54b500;
  font-size: 1.45rem;
}

.footer-seguranca p,
.footer-copy {
  margin: 0;
  color: #dce7f6;
  font-size: 0.9rem;
  line-height: 1.5;
}

.footer-copy {
  text-align: center;
}

.footer-marca-dagua {
  justify-self: end;
  color: rgba(255, 255, 255, 0.07);
  font-size: 7rem;
  font-weight: 900;
  line-height: 0.8;
}

/* Mobile */
@media (max-width: 760px) {
  .site-footer {
    padding-bottom: 74px;
  }

  .footer-principal {
    grid-template-columns: 1fr;
    width: calc(100% - 40px);
    gap: 34px;
    padding: 48px 0 40px;
  }

  .footer-coluna {
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .footer-coluna:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .footer-logo-box {
    width: 210px;
    height: 158px;
  }

  .footer-linha-verde {
    margin: 26px 0 22px;
  }

  .footer-whatsapp,
  .footer-global-botao {
    max-width: none;
    width: 100%;
  }

  .footer-final {
    grid-template-columns: 1fr;
    padding: 26px 20px 30px;
    gap: 18px;
    text-align: center;
  }

  .footer-seguranca {
    justify-content: center;
    text-align: center;
  }

  .footer-marca-dagua {
    display: none;
  }
}

/* =========================================
   PÁGINAS INSTITUCIONAIS
   Política de Privacidade / Termos / Aviso
========================================= */

.pagina-institucional {
  min-height: 100vh;
  padding-top: var(--header-height);
  background: linear-gradient(180deg, #f6faff 0%, #ffffff 100%);
}

.institucional-hero {
  width: min(1100px, calc(100% - 56px));
  margin: 0 auto;
  padding: 92px 0 42px;
  text-align: center;
}

.institucional-selo {
  margin: 0 0 14px;
  color: #54b500;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.institucional-hero h1 {
  margin: 0;
  color: #021d4b;
  font-size: clamp(2.3rem, 4vw, 4rem);
  line-height: 1.06;
  letter-spacing: -0.055em;
}

.institucional-hero h1 span {
  color: #54b500;
}

.institucional-hero > p {
  max-width: 720px;
  margin: 20px auto 0;
  color: #5d6a80;
  font-size: 1.05rem;
  line-height: 1.7;
}

.institucional-conteudo {
  width: min(980px, calc(100% - 56px));
  margin: 0 auto;
  padding: 0 0 96px;
}

.institucional-card {
  position: relative;
  overflow: hidden;
  padding: 54px 58px;
  background: #ffffff;
  border: 1px solid #e0e8f2;
  border-radius: 26px;
  box-shadow: 0 16px 38px rgba(2, 29, 75, 0.08);
}

.institucional-card::before {
  content: "";
  position: absolute;
  top: -160px;
  right: -160px;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(84, 181, 0, 0.12), transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.institucional-card h2 {
  position: relative;
  margin: 34px 0 12px;
  color: #021d4b;
  font-size: 1.22rem;
  font-weight: 850;
  line-height: 1.35;
}

.institucional-card h2:first-child {
  margin-top: 0;
}

.institucional-card p {
  position: relative;
  margin: 0;
  color: #465975;
  font-size: 0.98rem;
  line-height: 1.82;
}

.institucional-botao {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  margin-top: 38px;
  padding: 14px 23px;
  color: #ffffff;
  background: #063a88;
  border: 1px solid #063a88;
  border-radius: 12px;
  box-shadow: 0 10px 22px rgba(6, 58, 136, 0.18);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  transition: 0.25s ease;
}

.institucional-botao:hover {
  background: #54b500;
  border-color: #54b500;
  transform: translateY(-3px);
}

.institucional-botao span {
  font-size: 1.12rem;
  line-height: 1;
}

/* Celular */
@media (max-width: 760px) {
  .pagina-institucional {
    padding-top: var(--header-mobile-height);
    padding-bottom: 76px;
  }

  .institucional-hero {
    width: calc(100% - 40px);
    padding: 58px 0 30px;
    text-align: left;
  }

  .institucional-selo {
    font-size: 0.68rem;
  }

  .institucional-hero h1 {
    font-size: 2.25rem;
  }

  .institucional-hero > p {
    margin-top: 16px;
    font-size: 0.92rem;
  }

  .institucional-conteudo {
    width: calc(100% - 40px);
    padding-bottom: 64px;
  }

  .institucional-card {
    padding: 32px 24px;
    border-radius: 22px;
  }

  .institucional-card h2 {
    margin-top: 28px;
    font-size: 1.05rem;
  }

  .institucional-card p {
    font-size: 0.9rem;
    line-height: 1.75;
  }

  .institucional-botao {
    width: 100%;
    margin-top: 32px;
  }
}

/* Ajuste Global SC no mobile */
@media (max-width: 760px) {
  .global-sc-faixa {
    display: flex !important;
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    width: calc(100% - 40px);
    margin: 24px auto 0;
    padding: 22px;
    background: #021d4b;
    border: 1px solid rgba(84, 181, 0, 0.45);
    border-radius: 16px;
    box-shadow: 0 14px 28px rgba(2, 29, 75, 0.18);
  }

  .global-sc-identidade {
    width: 100%;
    padding: 0 0 14px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .global-sc-texto {
    width: 100%;
  }

  .global-sc-texto strong {
    font-size: 0.95rem;
  }

  .global-sc-texto span {
    font-size: 0.84rem;
  }

  .global-sc-botao {
    width: 100%;
    min-width: 0;
    padding: 13px 16px;
  }
}

/* =========================================
   PÁGINA QUEM SOMOS
========================================= */

.sobre-kontudo-page {
  padding-top: var(--header-height);
  background: linear-gradient(180deg, #f6faff 0%, #ffffff 100%);
}

/* Hero */
.sobre-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(330px, 0.65fr);
  gap: 48px;
  align-items: center;
  width: min(1360px, calc(100% - 56px));
  margin: 0 auto;
  padding: 92px 0 78px;
}

.sobre-selo {
  margin: 0 0 14px;
  color: #54b500;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.sobre-hero h1 {
  max-width: 850px;
  margin: 0;
  color: #021d4b;
  font-size: clamp(2.35rem, 4vw, 4.25rem);
  line-height: 1.05;
  letter-spacing: -0.06em;
}

.sobre-hero h1 span {
  color: #54b500;
}

.sobre-hero p {
  max-width: 730px;
  margin: 22px 0 0;
  color: #5d6a80;
  font-size: 1.05rem;
  line-height: 1.75;
}

.sobre-hero-acoes {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.sobre-botao-principal,
.sobre-botao-secundario {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  transition: 0.25s ease;
}

.sobre-botao-principal {
  color: #ffffff;
  background: #063a88;
  border: 1px solid #063a88;
  box-shadow: 0 10px 22px rgba(6, 58, 136, 0.18);
}

.sobre-botao-principal:hover {
  background: #54b500;
  border-color: #54b500;
  transform: translateY(-3px);
}

.sobre-botao-secundario {
  color: #063a88;
  background: #ffffff;
  border: 1px solid #d7e2ef;
}

.sobre-botao-secundario:hover {
  color: #54b500;
  border-color: #54b500;
  transform: translateY(-3px);
}

/* Card lateral */
.sobre-hero-card {
  position: relative;
  overflow: hidden;
  padding: 34px;
  background:
    radial-gradient(circle at 90% 10%, rgba(84, 181, 0, 0.16), transparent 34%),
    #ffffff;
  border: 1px solid #dfe8f3;
  border-radius: 26px;
  box-shadow: 0 16px 38px rgba(2, 29, 75, 0.08);
}

.sobre-card-numero {
  padding: 20px 0;
  border-bottom: 1px solid #e4ebf4;
}

.sobre-card-numero:first-child {
  padding-top: 0;
}

.sobre-card-numero:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.sobre-card-numero strong {
  display: block;
  color: #063a88;
  font-size: clamp(2rem, 3vw, 3.25rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.06em;
}

.sobre-card-numero:nth-child(2) strong {
  color: #54b500;
}

.sobre-card-numero span {
  display: block;
  margin-top: 8px;
  color: #5d6a80;
  font-size: 0.92rem;
  font-weight: 700;
}

/* Blocos */
.sobre-blocos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(1360px, calc(100% - 56px));
  margin: 0 auto;
  padding-bottom: 82px;
}

.sobre-bloco {
  padding: 34px 30px;
  background: #ffffff;
  border: 1px solid #e0e8f2;
  border-radius: 22px;
  box-shadow: 0 12px 30px rgba(2, 29, 75, 0.06);
  transition: 0.25s ease;
}

.sobre-bloco:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 38px rgba(2, 29, 75, 0.12);
}

.sobre-bloco-icone {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 20px;
  color: #54b500;
  background: #eff9e9;
  border-radius: 16px;
  font-size: 1.5rem;
}

.sobre-bloco h2 {
  margin: 0 0 12px;
  color: #021d4b;
  font-size: 1.18rem;
  font-weight: 850;
}

.sobre-bloco p {
  margin: 0;
  color: #5d6a80;
  font-size: 0.94rem;
  line-height: 1.72;
}

/* Missão */
.sobre-missao {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 50px;
  align-items: center;
  width: min(1360px, calc(100% - 56px));
  margin: 0 auto 92px;
  padding: 52px 58px;
  background:
    radial-gradient(circle at 88% 50%, rgba(84, 181, 0, 0.1), transparent 32%),
    #021d4b;
  border-radius: 28px;
  box-shadow: 0 18px 40px rgba(2, 29, 75, 0.16);
}

.sobre-missao h2 {
  max-width: 720px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.045em;
}

.sobre-missao p:not(.sobre-selo) {
  max-width: 720px;
  margin: 20px 0 0;
  color: #d8e4f5;
  font-size: 1rem;
  line-height: 1.75;
}

.sobre-lista {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sobre-lista li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  font-size: 0.94rem;
  font-weight: 700;
}

.sobre-lista li::before {
  content: "✓";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  color: #ffffff;
  background: #54b500;
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 900;
}

/* Tablet */
@media (max-width: 1000px) {
  .sobre-hero,
  .sobre-missao {
    grid-template-columns: 1fr;
  }

  .sobre-blocos {
    grid-template-columns: 1fr;
  }
}

/* Celular */
@media (max-width: 760px) {
  .sobre-kontudo-page {
    padding-top: var(--header-mobile-height);
    padding-bottom: 76px;
  }

  .sobre-hero {
    width: calc(100% - 40px);
    gap: 28px;
    padding: 58px 0 54px;
  }

  .sobre-selo {
    font-size: 0.68rem;
  }

  .sobre-hero h1 {
    font-size: 2.25rem;
  }

  .sobre-hero p {
    margin-top: 16px;
    font-size: 0.92rem;
  }

  .sobre-hero-acoes {
    flex-direction: column;
    margin-top: 28px;
  }

  .sobre-botao-principal,
  .sobre-botao-secundario {
    width: 100%;
  }

  .sobre-hero-card {
    padding: 28px 24px;
    border-radius: 22px;
  }

  .sobre-card-numero {
    padding: 18px 0;
  }

  .sobre-card-numero strong {
    font-size: 2.35rem;
  }

  .sobre-blocos {
    width: calc(100% - 40px);
    padding-bottom: 60px;
  }

  .sobre-bloco {
    padding: 28px 24px;
    border-radius: 20px;
  }

  .sobre-missao {
    width: calc(100% - 40px);
    gap: 30px;
    margin-bottom: 70px;
    padding: 34px 25px;
    border-radius: 22px;
  }

  .sobre-missao h2 {
    font-size: 2rem;
  }

  .sobre-missao p:not(.sobre-selo) {
    font-size: 0.92rem;
  }

  .sobre-lista li {
    align-items: flex-start;
    font-size: 0.88rem;
    line-height: 1.45;
  }

  .sobre-lista li::before {
    margin-top: 1px;
  }
}

/* Hover dos botões do rodapé */
.footer-whatsapp:hover {
  color: #021d4b;
  background: #ffffff;
  box-shadow: 0 18px 34px rgba(255, 255, 255, 0.16);
  transform: translateY(-3px);
}

.footer-whatsapp:hover svg {
  color: #54b500;
}

.footer-whatsapp:hover span {
  color: #54b500;
}

.footer-global-botao:hover {
  color: #021d4b;
  background: #ffffff;
  border-color: #54b500;
  box-shadow: 0 16px 30px rgba(84, 181, 0, 0.22);
  transform: translateY(-3px);
}

.footer-global-botao:hover span {
  color: #021d4b;
}