@charset "utf-8";
/* CSS Document */
    *{
      --primary: #114b8a;
      --primary-dark: #0b3564;
      --secondary: #f5a623;
      --accent: #26a69a;
      --text: #1f2933;
      --muted: #64748b;
      --light: #f8fafc;
      --white: #ffffff;
      --border: #e2e8f0;
      --shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
      --radius: 22px;
      --container: 1360px;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: Arial, Helvetica, sans-serif;
      color: var(--text);
      background: var(--white);
      line-height: 1.6;
    }

    img {
      max-width: 100%;
      display: block;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .container {
      width: min(100% - 32px, var(--container));
      margin: 0 auto;
    }

    .section {
      padding: 88px 0;
    }

    .section-light {
      background: var(--light);
    }

	/* BG AZUL CLARO -- aqui muda a cor do BG de algumas áreas do site ----*/
	.bg-azul {
      background: #006fc5;
    }

	/* BG AZUL ESCURO -- aqui muda a cor do BG de algumas áreas do site ----*/
	.bg-azul-escuro {
      background: #00133c;
    }

	/* BG PROCESSO -- aqui muda a imagem de fundo do BG da parte que fala sobre o 'PROCESSO' ----*/
	.bg-processo {
      background-image: url("../images/bg/bg_processos.jpg"); background-repeat: no-repeat;
    }


    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 7px 13px;
      border-radius: 999px;
      background: rgba(17, 75, 138, 0.1);
      color: var(--primary);
      font-size: 0.82rem;
      font-weight: 700;
      letter-spacing: 0.03em;
      text-transform: uppercase;
      margin-bottom: 16px;
    }

	/* FUNDO DOS SUBTITULOS -- aqui muda a cor da bolinha que tem antes da palavra ----*/
    .eyebrow::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: #ff7200;
    }


	/* EYEBROW 02 -- aqui muda a opção de cor do item dos subtitulos quando for usando em fundo escuro ---*/
	.eyebrow02 {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 7px 13px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.1);
      color: var(--primary);
      font-size: 0.82rem;
      font-weight: 700;
      letter-spacing: 0.03em;
      text-transform: uppercase;
      margin-bottom: 16px;
    }

    .eyebrow02::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: #ff7200;
    }


    h1,
    h2,
    h3 {
      line-height: 1.15;
      color: #102033;
    }

    h1 {
      font-size: clamp(2.25rem, 5vw, 4.7rem);
      letter-spacing: -0.05em;
      margin-bottom: 24px;
    }

    h2 {
      font-size: clamp(2rem, 4vw, 3.25rem);
      letter-spacing: -0.04em;
      margin-bottom: 18px;
    }

    h3 {
      font-size: 1.25rem;
      margin-bottom: 12px;
    }

    p {
      color: var(--muted);
      font-size: 1rem;
    }

	/* TEXTO DESCRIÇÃO - SOLUÇÕES EDUCACIONAIS -- aqui muda o tamanho do texto e tamanho máximo de largura ----*/
    .lead {
      font-size: clamp(1.0rem, 2vw, 1.28rem);
      color: #425466;
      max-width: 760px;
    }

	/* PROJETOS DE LEITURA -- aqui muda o tamanho do texto e tamanho máximo de largura ----*/
    .texto-projetos-leitura {
      font-size: clamp(0.9rem, 2vw, 1.09rem);
      color: #425466;
      max-width: 760px;
    }

    .section-heading {
      max-width: 780px;
      margin-bottom: 44px;
    }

    .center {
      text-align: center;
      margin-left: auto;
      margin-right: auto;
    }

    .btn-group {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 32px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 50px;
      padding: 14px 22px;
      border-radius: 999px;
      font-weight: 700;
      transition: 0.25s ease;
      border: 1px solid transparent;
      cursor: pointer;
    }

    .btn-primary {
      color: var(--white);
      background: var(--primary);
      box-shadow: 0 14px 28px rgba(17, 75, 138, 0.25);
    }

    .btn-primary:hover {
      background: var(--primary-dark);
      transform: translateY(-2px);
    }

    .btn-secondary {
      color: var(--primary-dark);
      background: var(--white);
      border-color: var(--border);
    }

    .btn-secondary:hover {
      border-color: var(--primary);
      transform: translateY(-2px);
    }

    .header {
      position: sticky;
      top: 0;
      z-index: 20;
      background: rgba(255, 255, 255, 0.88);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(226, 232, 240, 0.75);
    }

    .nav {
      height: 76px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 800;
      color: var(--primary-dark);
    }

    .logo-mark {
      width: 42px;
      height: 42px;
      border-radius: 14px;
      background: linear-gradient(135deg, var(--primary), var(--accent));
      display: grid;
      place-items: center;
      color: var(--white);
      font-weight: 900;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 22px;
      font-size: 0.95rem;
      color: #475569;
    }

    .nav-links a:hover {
      color: var(--primary);
    }

    .mobile-menu-btn {
      display: none;
      border: 0;
      background: var(--light);
      padding: 10px 12px;
      border-radius: 12px;
      font-size: 1.2rem;
      cursor: pointer;
    }

    .hero {
      position: relative;
      overflow: hidden;
      background:
        radial-gradient(circle at top left, rgba(38, 166, 154, 0.16), transparent 36%),
        linear-gradient(135deg, #f8fbff 0%, #ffffff 52%, #eef7ff 100%);
      padding: 92px 0 80px;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.08fr 0.92fr;
      gap: 56px;
      align-items: center;
    }

    .hero-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 32px;
      padding: 28px;
      box-shadow: var(--shadow);
      position: relative;
    }


/* QUEM SOMOS -- aqui muda a imagem lateral e o efeito degradê por cima dela ---*/
    .hero-image-placeholder {
      min-height: 390px;
      border-radius: 24px;
      background: linear-gradient(rgba(17, 75, 138, 0.1), rgba(17, 75, 138, 0.30)),
        url("../images/quemsomos/quemsomos01.jpg") center/cover;
      display: flex;
      align-items: end;
      padding: 12px;
      color: var(--white);
    }

    .hero-image-placeholder p {
      color: rgba(255, 255, 255, 0.88);
      max-width: 360px;
    }

    .stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
      margin-top: 28px;
    }

    .stat-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 18px;
      padding: 18px;
      box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
    }

    .stat-card strong {
      display: block;
      font-size: 1.65rem;
      line-height: 1;
      color: var(--primary);
      margin-bottom: 6px;
    }

    .stat-card span {
      color: var(--muted);
      font-size: 1.2rem;
    }

    .grid-2 {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 32px;
      align-items: center;
    }

    .grid-3 {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }

    .grid-4 {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
    }

    .card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 26px;
      box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
      height: 100%;
    }

    .card-icon {
      width: 48px;
      height: 48px;
      border-radius: 16px;
      background: rgba(17, 75, 138, 0.09);
      color: var(--primary);
      display: grid;
      place-items: center;
      margin-bottom: 18px;
      font-size: 1.3rem;
    }

    .feature-list {
      display: grid;
      gap: 14px;
      margin-top: 28px;
    }

    .feature-item {
      display: flex;
      gap: 13px;
      align-items: flex-start;
      padding: 16px;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 18px;
    }

    .check {
      flex: 0 0 25px;
      width: 25px;
      height: 25px;
      border-radius: 999px;
      background: #00133c;
      color: var(--white);
      display: grid;
      place-items: center;
      font-size: 0.85rem;
      font-weight: 900;
    }

    .solution-card {
      position: relative;
      overflow: hidden;
    }

	/* SOLUÇÕES --- aqui muda a cor da bolinha que tem no cantinho inferior direito das boxes com as informações */
    .solution-card::after {
      content: "";
      position: absolute;
      right: -45px;
      bottom: -45px;
      width: 110px;
      height: 110px;
      border-radius: 999px;
      background: rgba(0, 111, 197, 0.14);
    }

    .highlight {
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      color: var(--white);
      border-radius: 34px;
      padding: 56px;
      position: relative;
      overflow: hidden;
    }

    .highlight::after {
      content: "";
      position: absolute;
      right: -80px;
      top: -80px;
      width: 260px;
      height: 260px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.08);
    }

    .highlight h2,
    .highlight h3 {
      color: var(--white);
    }

    .highlight p {
      color: rgba(255, 255, 255, 0.82);
    }

    .pill-list {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 28px;
    }

    .pill {
      padding: 10px 15px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.12);
      color: var(--white);
      font-weight: 700;
      font-size: 0.80rem;
    }

    .steps {
      counter-reset: step;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
    }

    .step {
      counter-increment: step;
      position: relative;
    }


	/* COMO FUNCIONA -- aqui muda a cor das bolinhas dos numeros ---*/
    .step::before {
      content: counter(step);
      width: 40px;
      height: 40px;
      border-radius: 999px;
      background: #006fc5;
      color: #ffffff;
      display: grid;
      place-items: center;
      font-weight: 900;
      margin-bottom: 16px;
    }

	/* CTA -- aqui muda a imagem de fundo do item 'CTA' acima do rodapé ----*/
    .cta-final {
      background:
        linear-gradient(rgba(11, 53, 100, 0.86), rgba(11, 53, 100, 0.86)),
        url("../images/cta/cta_imagem.jpg") center/cover;
      color: var(--white);
      text-align: center;
      border-radius: 34px;
      padding: 70px 28px;
    }

    .cta-final h2 {
      color: var(--white);
    }

    .cta-final p {
      color: rgba(255, 255, 255, 0.86);
      margin: 0 auto;
    }

    .contact-box {
      background: var(--white);
      border-radius: 28px;
      border: 1px solid var(--border);
      box-shadow: var(--shadow);
      padding: 32px;
    }

    form {
      display: grid;
      gap: 14px;
    }

    input,
    select,
    textarea {
      width: 100%;
      min-height: 48px;
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 13px 14px;
      font: inherit;
      color: var(--text);
      background: var(--white);
    }

    textarea {
      min-height: 110px;
      resize: vertical;
    }

    .footer {
      padding: 34px 0;
      border-top: 1px solid var(--border);
      background: var(--white);
      color: var(--muted);
      font-size: 0.95rem;
    }

    .footer-content {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
    }

    .whatsapp-float {
      position: fixed;
      right: 20px;
      bottom: 20px;
      z-index: 30;
      background: #25d366;
      color: var(--white);
      width: 60px;
      height: 60px;
      border-radius: 999px;
      display: grid;
      place-items: center;
      font-size: 1.6rem;
      box-shadow: 0 16px 30px rgba(37, 211, 102, 0.35);
    }

    @media (max-width: 980px) {
      .hero-grid,
      .grid-2 {
        grid-template-columns: 1fr;
      }

      .grid-3,
      .grid-4,
      .steps {
        grid-template-columns: repeat(2, 1fr);
      }

      .nav-links {
        position: fixed;
        top: 76px;
        left: 16px;
        right: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: 20px;
        padding: 18px;
        box-shadow: var(--shadow);
      }

      .nav-links.active {
        display: flex;
      }

      .mobile-menu-btn {
        display: inline-flex;
      }
    }

    @media (max-width: 680px) {
      .section {
        padding: 64px 0;
      }

      .hero {
        padding: 62px 0 60px;
      }

      .stats,
      .grid-3,
      .grid-4,
      .steps {
        grid-template-columns: 1fr;
      }

      .highlight {
        padding: 34px 24px;
        border-radius: 26px;
      }

      .hero-card {
        padding: 18px;
      }

      .hero-image-placeholder {
        min-height: 310px;
      }

      .btn {
        width: 100%;
      }
    }
  



/* ==========================
   TOPO COM BARRA AZUL + LOGO
   ========================== */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: none;
}

.top-bar {
  background: #0578c9;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
}

.top-bar-content {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.top-bar a {
  color: #ffffff;
  text-decoration: none;
}

.top-bar a:hover {
  opacity: 0.85;
}

.top-bar-left,
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.top-bar-right {
  margin-left: auto;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-icons a {
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  color: #0578c9;
  background: #ffffff;
  border-radius: 4px;
  font-size: 0.95rem;
  line-height: 1;
}

.social-icons a:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.nav {
  min-height: 153px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 92px;
}

.logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.logo-img {
  width: 190px;
  height: 140px;
  object-fit: contain;
  display: block;
}

.logo-mark {
  display: none;
}



/* MENU TOPO DESKTOP -- aqui muda o tamanho da fonte e outras configurações --*/
.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 1.22rem;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  color: #080d3d;
}

.nav-links a {
  color: #080d3d;
  white-space: nowrap;
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover {
  color: var(--primary);
  transform: translateY(-1px);
}

.mobile-menu-btn {
  margin-left: auto;
}

/* Ajustes do menu mobile com a nova barra superior */
@media (max-width: 980px) {
  .top-bar-content {
    min-height: auto;
    padding: 10px 0;
  }

  .nav {
    min-height: 130px;
    justify-content: space-between;
    gap: 20px;
  }

  .logo-img {
    width: 165px;
    height: 115px;
  }

  .nav-links {
    position: fixed;
    top: 180px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 18px;
    box-shadow: var(--shadow);
    font-size: 1rem;
  }

  .nav-links a {
    padding: 12px 8px;
  }

  .nav-links.active {
    display: flex;
  }
}

@media (max-width: 680px) {
  .top-bar-content {
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    text-align: center;
  }

  .top-bar-left,
  .top-bar-right {
    flex-direction: column;
    gap: 8px;
  }

  .top-bar {
    font-size: 0.88rem;
  }

  .nav {
    min-height: 115px;
  }

  .logo-img {
    width: 145px;
    height: 95px;
  }

  .nav-links {
    top: 210px;
  }
}


/* ==========================
   BANNER RESPONSIVO
   ========================== */

.banner-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #eaf8fb;
  border-top: 1px solid rgba(226, 232, 240, 0.8);
}

.banner-track {
  position: relative;
  width: 100%;
  display: grid;
}

.banner-slide {
  grid-area: 1 / 1;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 1;
  transition:
    opacity 0.9s ease,
    visibility 0s linear 0.9s;
  will-change: opacity;
}

.banner-slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 2;
  transition:
    opacity 0.9s ease,
    visibility 0s linear 0s;
}

.banner-slide picture,
.banner-slide img {
  width: 100%;
  display: block;
}

.banner-slide img {
  height: clamp(300px, 38vw, 560px);
  object-fit: cover;
  object-position: center;
}


/* SLIDER - BANNER - Ajuste desktop: banner principal com 680px sem cortar a imagem */
@media (min-width: 981px) {
  .banner-slider,
  .banner-track,
  .banner-slide,
  .banner-slide picture,
  .banner-slide img {
    height: 550px;
  }

  .banner-slide img {
    object-fit: contain;
    object-position: center;
    background: #eaf8fb;
  }
}

.banner-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgba(8, 13, 61, 0.65);
  color: #ffffff;
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.banner-arrow:hover {
  background: rgba(8, 13, 61, 0.9);
  transform: translateY(-50%) scale(1.06);
}

.banner-prev {
  left: 28px;
}

.banner-next {
  right: 28px;
}

.banner-dots {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.banner-dot {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

.banner-dot.active {
  width: 30px;
  border-radius: 999px;
  background: #0578c9;
}

@media (prefers-reduced-motion: reduce) {
  .banner-slide {
    transition: none;
  }
}

@media (max-width: 980px) {
  .banner-slide img {
    height: clamp(280px, 55vw, 460px);
  }

  .banner-arrow {
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }

  .banner-prev {
    left: 16px;
  }

  .banner-next {
    right: 16px;
  }
}

@media (max-width: 680px) {
  .banner-slide img {
    height: clamp(300px, 92vw, 450px);
    object-fit: cover;
  }

  .banner-arrow {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }

  .banner-prev {
    left: 10px;
  }

  .banner-next {
    right: 10px;
  }

  .banner-dots {
    bottom: 14px;
    gap: 8px;
  }

  .banner-dot {
    width: 10px;
    height: 10px;
  }

  .banner-dot.active {
    width: 24px;
  }
}


/* Ajuste de ancoragem do menu fixo */
section[id] {
  scroll-margin-top: 240px;
}

@media (max-width: 768px) {
  section[id] {
    scroll-margin-top: 180px;
  }
}

/* ==========================
   CORREÇÃO MOBILE - BARRA AZUL DO TOPO
   Centraliza e organiza e-mail, WhatsApp e redes sociais somente no mobile
   ========================== */
@media (max-width: 680px) {
  .top-bar {
    text-align: center;
  }

  .top-bar-content {
    width: 100%;
    min-height: auto;
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-align: center;
  }

  .top-bar-left,
  .top-bar-right {
    width: 100%;
    margin-left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .top-bar-left {
    flex-direction: row;
  }

  .top-bar-right {
    flex-direction: column;
    gap: 7px;
  }

  .top-bar-left a,
  .top-bar-right a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .social-icons {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
}


/* ==========================
   GALERIA / CARROSSEL - APLICAÇÕES
   Mostra 3 imagens no desktop, 2 no tablet e 1 no mobile
   ========================== */

.aplicacoes-carousel {
  position: relative;
  width: 100%;
  margin: 10px 0 36px;
  padding: 0 58px 38px;
}

.aplicacoes-carousel-viewport {
  width: 100%;
  overflow: hidden;
  border-radius: 26px;
}

.aplicacoes-carousel-track {
  display: flex;
  transition: transform 0.45s ease;
  will-change: transform;
}

.aplicacoes-carousel-slide {
  flex: 0 0 33.3333%;
  padding: 0 10px;
}

.aplicacoes-carousel-slide img {
  width: 100%;
  height: 360px;
  object-fit: contain;
  object-position: center;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
  padding: 16px;
}

.aplicacoes-carousel-arrow {
  position: absolute;
  top: calc(50% - 18px);
  transform: translateY(-50%);
  z-index: 4;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: rgba(8, 13, 61, 0.72);
  color: #ffffff;
  display: grid;
  place-items: center;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.aplicacoes-carousel-arrow:hover {
  background: rgba(8, 13, 61, 0.95);
  transform: translateY(-50%) scale(1.06);
}

.aplicacoes-carousel-prev {
  left: 0;
}

.aplicacoes-carousel-next {
  right: 0;
}

.aplicacoes-carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.aplicacoes-carousel-dot {
  width: 11px;
  height: 11px;
  border: 0;
  border-radius: 50%;
  background: rgba(8, 13, 61, 0.25);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

.aplicacoes-carousel-dot.active {
  width: 28px;
  border-radius: 999px;
  background: #0578c9;
}

@media (max-width: 980px) {
  .aplicacoes-carousel {
    padding-left: 52px;
    padding-right: 52px;
  }

  .aplicacoes-carousel-slide {
    flex-basis: 50%;
  }

  .aplicacoes-carousel-slide img {
    height: 330px;
  }
}

@media (max-width: 680px) {
  .aplicacoes-carousel {
    margin: 4px 0 32px;
    padding-left: 42px;
    padding-right: 42px;
    padding-bottom: 34px;
  }

  .aplicacoes-carousel-slide {
    flex-basis: 100%;
    padding: 0 6px;
  }

  .aplicacoes-carousel-slide img {
    height: 300px;
    border-radius: 20px;
    padding: 12px;
  }

  .aplicacoes-carousel-arrow {
    width: 34px;
    height: 34px;
    font-size: 0.82rem;
  }

  .aplicacoes-carousel-dot {
    width: 10px;
    height: 10px;
  }

  .aplicacoes-carousel-dot.active {
    width: 24px;
  }
}

/* ==========================
   PROJETO DE LEITURA COM IMAGEM LATERAL
   ========================== */

.highlight-reading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: center;
  gap: 48px;
}

.highlight-reading-content,
.highlight-reading-image {
  position: relative;
  z-index: 1;
}

.highlight-reading .section-heading {
  margin-bottom: 0;
}

.highlight-reading .lead {
  max-width: 760px;
}

.highlight-reading-image {
  width: 100%;
  min-height: 390px;
  border-radius: 34px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.highlight-reading-image img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
  object-position: center;
  display: block;
}

@media (max-width: 980px) {
  .highlight-reading {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .highlight-reading-image,
  .highlight-reading-image img {
    min-height: 340px;
  }
}

@media (max-width: 680px) {
  .highlight-reading {
    gap: 26px;
  }

  .highlight-reading-image {
    border-radius: 24px;
  }

  .highlight-reading-image,
  .highlight-reading-image img {
    min-height: 260px;
  }
}


/* ==========================
   AJUSTE DESKTOP - LOGO CENTRALIZADA
   3 itens do menu à esquerda + 3 à direita
   Mobile mantido com o menu original
   ========================== */

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

@media (min-width: 981px) {
  .nav {
    position: relative;
    min-height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
  }

  .logo {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 3;
    width: clamp(190px, 15.7vw, 226px);
    height: clamp(160px, 13.2vw, 190px);
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 24px;
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.16);
  }

  .logo-img {
    width: clamp(150px, 12vw, 190px);
    height: clamp(125px, 10.5vw, 150px);
    object-fit: contain;
  }

  .mobile-nav-links {
    display: none !important;
  }

  .desktop-nav-links {
    position: absolute;
    top: 50%;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: clamp(12px, 1.8vw, 26px);
    transform: translateY(-50%);
    font-size: clamp(0.95rem, 1.25vw, 1.22rem);
    line-height: 1;
    font-weight: 900;
    text-transform: uppercase;
    color: #080d3d;
  }

  .desktop-nav-links a {
    color: #080d3d;
    white-space: nowrap;
    transition: color 0.2s ease, transform 0.2s ease;
  }

  .desktop-nav-links a:hover {
    color: var(--primary);
    transform: translateY(-1px);
  }

  .desktop-nav-left {
    right: calc(50% + clamp(112px, 9.8vw, 142px));
    justify-content: flex-end;
  }

  .desktop-nav-right {
    left: calc(50% + clamp(112px, 9.8vw, 142px));
    justify-content: flex-start;
  }
}

@media (max-width: 980px) {
  .desktop-nav-links {
    display: none !important;
  }
}
