:root {
  --primary-blue: #2a81f6;
  --gradient-blue: linear-gradient(135deg, #4da3ff 0%, #1765f0 100%);
  --text-dark: #1e2736;
  --text-light: #7a8494;
  --bg-color: #f7fbff;
  --blob-yellow: #fdeab9;
  --blob-orange: #ffdbcc;
  --blob-green: #e1f7eb;
  --blob-light-blue: #e3f0ff;
  --blob-dark-blue: #3b8cf7;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html,
body {
  overflow-x: hidden;
}

body {
  background-color: var(--bg-color);
  color: var(--text-dark);
  position: relative;
}

.site-wrapper {
  overflow-x: hidden;
  position: relative;
}

/* Botões Globais */
.btn {
  display: inline-block;
  padding: 12px 28px;
  background: var(--gradient-blue);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  border: none;
  cursor: pointer;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(42, 129, 246, 0.3);
}

/* Container Principal */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* Formas de Fundo (Blobs) */
.bg-shape {
  position: absolute;
  z-index: 0;
}
.shape-top-left {
  top: -100px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: var(--blob-light-blue);
  border-radius: 50%;
}
.shape-top-right-yellow {
  top: -150px;
  right: 0;
  width: 700px;
  height: 700px;
  background: var(--blob-yellow);
  border-radius: 40% 60% 50% 50% / 50% 50% 60% 40%;
}
.shape-top-right-blue {
  top: 150px;
  right: -50px;
  width: 450px;
  height: 500px;
  background: var(--blob-dark-blue);
  border-radius: 60% 40% 30% 70% / 50% 30% 70% 50%;
  opacity: 0.8;
}
.shape-mid-orange {
  top: 30%;
  left: -100px;
  width: 600px;
  height: 600px;
  background: var(--blob-orange);
  border-radius: 50% 50% 60% 40% / 40% 60% 40% 60%;
}
.shape-mid-green {
  top: 35%;
  left: 150px;
  width: 450px;
  height: 450px;
  background: var(--blob-green);
  border-radius: 50%;
}
.shape-bottom-blue {
  bottom: 25%;
  left: 10%;
  width: 400px;
  height: 400px;
  background: var(--blob-light-blue);
  border-radius: 60% 40% 50% 50% / 40% 50% 50% 60%;
}
.shape-bottom-yellow {
  bottom: 20%;
  right: 15%;
  width: 350px;
  height: 350px;
  background: var(--blob-yellow);
  border-radius: 50%;
}

/* Header */
header {
  padding: 0;
  z-index: 99999999999;
}
.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  position: relative;
}
.site-branding {
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}

/* Nav – desktop */
.primary-nav .links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.primary-nav .links a {
  text-decoration: none;
  color: var(--text-dark);
  font-size: 0.88rem;
  font-weight: 300;
  transition: color 0.2s;
}
.primary-nav .links a:hover {
  color: var(--primary-blue);
}

/* Nav – mobile */
@media (max-width: 768px) {
  .menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 9999;
  }

  /* Botão de fechar fixo quando o menu está aberto */
  .nav-open ~ .menu-btn,
  .menu-btn--open {
    position: fixed;
    top: 24px;
    right: 20px;
    z-index: 10001;
  }

  .primary-nav {
    position: fixed;
    inset: 0;
    background: white;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease;
  }
  .primary-nav.nav-open {
    opacity: 1;
    pointer-events: all;
  }
  .primary-nav .links {
    flex-direction: column;
    gap: 32px;
    text-align: center;
  }
  .primary-nav .links a {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--text-dark);
  }
  .primary-nav .links a:hover {
    color: var(--primary-blue);
  }

  /* Footer mobile */
  footer {
    padding: 40px 0 30px;
  }
  .footer-content {
    flex-direction: column;
    gap: 32px;
    text-align: center;
  }
  .footer-left {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer-right {
    align-items: center;
    width: 100%;
  }
  .footer-right .links {
    flex-direction: column;
    align-items: center;
    gap: 14px;
    justify-content: center;
  }
  .socials {
    justify-content: center;
  }
}

@media (min-width: 769px) {
  .menu-btn {
    display: none;
  }
}
.logo {
  font-size: 1.5rem;
  letter-spacing: 1.5px;
  font-weight: 300;
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-icon {
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.8rem;
}
.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.menu-btn {
  background: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  color: var(--primary-blue);
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  min-height: 80vh;
  padding-bottom: 50px;
}
.hero-content {
  flex: 1;
  padding-right: 50px;
}
.hero h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero p {
  color: var(--text-light);
  margin-bottom: 30px;
  max-width: 400px;
  font-size: 0.95rem;
  line-height: 1.6;
}
.hero-image {
  flex: 1;
  position: relative;
}
.image-mask {
  width: 100%;
  height: 500px;
  overflow: hidden;
  border-radius: 40% 60% 60% 40% / 50% 50% 50% 50%;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
}
.image-mask img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dots {
  display: flex;
  gap: 8px;
  margin-top: 40px;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d1d8e0;
}
.dot.active {
  background: var(--blob-yellow);
}
.dot.active-blue {
  background: var(--primary-blue);
}

/* Features Section */
.features {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  padding: 80px 0;
}
.features-intro {
  flex: 2;
}
.features-intro h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  max-width: 300px;
}
.features-intro p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 20px;
  max-width: 400px;
}
.features-grid {
  flex: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  text-align: left;
}

.feature-item {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 18px;
  padding: 18px 16px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.feature-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 35px rgba(15, 23, 42, 0.12);
  background: #ffffff;
}

.icon-box {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: #ffffff;
}

.icon-box.blue {
  background: #bcdcff; /* azul pastel */
}

.icon-box.green {
  background: #c4f2dd; /* verde pastel */
}

.icon-box.orange {
  background: #ffe0c2; /* laranja pastel */
}

.feature-item h4 {
  font-size: 0.9rem;
  line-height: 1.4;
  font-weight: 500;
  margin-bottom: 0;
}

/* Experience Section */
.experience {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 80px 0;
}
.exp-image {
  flex: 1;
  position: relative;
}
.exp-image .image-mask {
  height: 400px;
  border-radius: 50%;
}
.exp-content {
  flex: 1;
}
.exp-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.exp-content p {
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.6;
}
.exp-list {
  list-style: none;
  margin-bottom: 30px;
}
.exp-list li {
  color: var(--text-light);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.exp-list li::before {
  content: "•";
  color: var(--primary-blue);
  font-size: 1.5rem;
}

/* Pricing Section */
.pricing-section {
  padding: 80px 0;
  text-align: center;
}
.pricing-section h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.pricing-section > p {
  color: var(--text-light);
  margin-bottom: 50px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.pricing-cards {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-bottom: 40px;
}
.card {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  max-width: 360px;
  text-align: left;
  position: relative;
  z-index: 2;
}
.card.premium {
  background: var(--gradient-blue);
  color: white;
  transform: scale(1.08);
  box-shadow: 0 20px 40px rgba(42, 129, 246, 0.2);
}
.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.card h3 {
  font-size: 1.2rem;
  color: var(--text-dark);
}
.card.premium h3 {
  color: white;
}
.card .price {
  font-weight: 700;
  font-size: 1.1rem;
}
.card p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 20px;
}
.card.premium p {
  color: rgba(255, 255, 255, 0.8);
}
.card ul {
  list-style: none;
  margin-bottom: 30px;
}
.card ul li {
  font-size: 0.85rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.card ul li i {
  color: #38f9d7;
}
.card.premium ul li i {
  color: white;
}
.card.standard ul li i {
  color: #f6d365;
}
.card .btn-small {
  display: inline-block;
  padding: 8px 20px;
  background: var(--blob-green);
  color: #2eab73;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
}
.card.premium .btn-small {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}
.card.standard .btn-small {
  background: var(--blob-orange);
  color: #d86938;
}

/* Testimonial Section */
.testimonial {
  text-align: center;
  padding: 60px 0;
  max-width: 600px;
  margin: 0 auto;
}
.testimonial img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 10px;
  border: 3px solid white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.testimonial p {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1.6;
}
.testimonial span {
  display: block;
  font-size: 0.8rem;
  color: var(--text-light);
}
.test-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
.test-nav i {
  color: var(--text-light);
  cursor: pointer;
}

/* Footer */
footer {
  padding: 40px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  margin-top: 50px;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-left p {
  font-size: 0.7rem;
  color: var(--text-light);
  margin-top: 10px;
}
.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.footer-right .links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  margin-top: 5px;
  font-size: 0.8rem;
  justify-content: flex-end;
}
.footer-right .links a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-right .links a:hover {
  color: var(--primary-blue);
}
.subscribe {
  display: flex;
  align-items: center;
  background: white;
  border-radius: 50px;
  padding: 5px 5px 5px 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.subscribe input {
  border: none;
  outline: none;
  font-size: 0.8rem;
  width: 200px;
}
.subscribe button {
  background: var(--primary-blue);
  color: white;
  border: none;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  cursor: pointer;
}
.socials {
  display: flex;
  gap: 10px;
}
.socials i {
  color: white;
  background: var(--text-light);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.8rem;
  cursor: pointer;
}
.socials i.blue {
  background: var(--primary-blue);
}

/* ===========================
   Página: Sobre Nós
   =========================== */

/* Hero Sobre */
.sobre-hero {
  display: flex;
  align-items: center;
  min-height: 70vh;
  gap: 60px;
  padding-bottom: 50px;
}
.sobre-hero-content {
  flex: 1.4;
}
.sobre-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary-blue);
  background: var(--blob-light-blue);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.sobre-hero-content h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 20px;
}
.sobre-hero-content p {
  color: var(--text-light);
  margin-bottom: 30px;
  max-width: 440px;
  font-size: 0.95rem;
  line-height: 1.7;
}
.sobre-hero-badge {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.badge-circle {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--gradient-blue);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  box-shadow: 0 20px 50px rgba(42, 129, 246, 0.3);
  gap: 10px;
}
.badge-circle i {
  font-size: 2.5rem;
}
.badge-circle span {
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.4;
}
.badge-stat {
  background: white;
  border-radius: 16px;
  padding: 14px 28px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.07);
  text-align: center;
  width: 100%;
  max-width: 220px;
}
.badge-stat strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-dark);
}
.badge-stat span {
  font-size: 0.75rem;
  color: var(--text-light);
}

/* História */
.sobre-historia {
  display: flex;
  align-items: center;
  gap: 80px;
  padding: 80px 0;
}
.sobre-historia-content {
  flex: 1;
}
.sobre-historia-content h2 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  line-height: 1.2;
}
.sobre-historia-content p {
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.7;
  font-size: 0.95rem;
}
.sobre-historia-content p strong {
  color: var(--text-dark);
}
.sobre-historia-content .btn {
  margin-top: 14px;
}
.sobre-historia-image {
  flex: 1;
  position: relative;
}
.sobre-historia-image .image-mask {
  height: 480px;
  border-radius: 40% 60% 60% 40% / 50% 50% 50% 50%;
}
.historia-float-card {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: white;
  border-radius: 16px;
  padding: 14px 20px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.1);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 3;
}
.historia-float-card i {
  font-size: 1.8rem;
  color: var(--primary-blue);
}
.historia-float-card strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-dark);
}
.historia-float-card span {
  font-size: 0.75rem;
  color: var(--text-light);
}

/* Jornada */
.sobre-jornada {
  padding: 80px 0;
}
.jornada-header {
  text-align: center;
  margin-bottom: 50px;
}
.jornada-header h2 {
  font-size: 2.2rem;
  margin-bottom: 12px;
}
.jornada-header p {
  color: var(--text-light);
  font-size: 0.95rem;
  max-width: 500px;
  margin: 0 auto;
}
.jornada-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.jornada-item {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 18px;
  padding: 24px 20px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.jornada-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 35px rgba(15, 23, 42, 0.12);
}
.jornada-item .icon-box {
  margin-bottom: 16px;
}
.jornada-item h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-dark);
}
.jornada-item p {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.6;
}
.jornada-item p strong {
  color: var(--primary-blue);
}

/* Propósito */
.sobre-proposito {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 80px 0;
}
.proposito-image {
  flex: 1;
  position: relative;
}
.proposito-image .image-mask {
  height: 400px;
  border-radius: 50%;
}
.proposito-content {
  flex: 1;
}
.proposito-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.proposito-content p {
  color: var(--text-light);
  margin-bottom: 24px;
  line-height: 1.7;
}

/* Valores */
.sobre-valores {
  padding: 80px 0;
  text-align: center;
}
.sobre-valores h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}
.sobre-valores > p {
  color: var(--text-light);
  margin-bottom: 50px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}
.valores-cards {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
.valor-card {
  background: white;
  padding: 36px 28px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  max-width: 300px;
  text-align: left;
  flex: 1;
}
.valor-card--destaque {
  background: var(--gradient-blue);
  transform: scale(1.06);
  box-shadow: 0 20px 40px rgba(42, 129, 246, 0.2);
}
.valor-card--destaque h4,
.valor-card--destaque p {
  color: white !important;
}
.valor-card--destaque p {
  opacity: 0.85;
}
.valor-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
}
.valor-card h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-dark);
}
.valor-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* Encerramento */
.sobre-encerramento {
  padding: 80px 0;
}
.encerramento-inner {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  position: relative;
}
.encerramento-quote-icon {
  font-size: 2.5rem;
  color: var(--primary-blue);
  opacity: 0.2;
  margin-bottom: 16px;
  display: block;
}
.encerramento-inner p {
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 20px;
}
.encerramento-inner span {
  display: block;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 20px;
}

/* Responsividade Básica */
@media (max-width: 900px) {
  .hero,
  .features,
  .experience,
  .pricing-cards {
    flex-direction: column;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-content {
    padding-right: 0;
    margin-bottom: 40px;
    text-align: center;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
  .hero p {
    margin: 0 auto 20px auto;
    color: var(--text-dark);
  }
  .shape-top-right-blue {
    opacity: 0.5;
  }
  .card.premium {
    transform: scale(1);
  }
  .footer-content {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }
  .footer-right {
    align-items: center;
    width: 100%;
  }
  .footer-right .links {
    justify-content: center;
  }
  .footer-left {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .socials {
    justify-content: center;
  }

  /* Sobre Nós - responsivo */
  .sobre-hero,
  .sobre-historia,
  .sobre-proposito {
    flex-direction: column;
    gap: 40px;
  }
  .sobre-hero-content h1 {
    font-size: 2.5rem;
  }
  .sobre-hero-content {
    text-align: center;
  }
  .sobre-hero-content p {
    margin: 0 auto 30px auto;
    color: var(--text-dark);
  }
  .sobre-hero-badge {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  .badge-circle {
    width: 160px;
    height: 160px;
  }
  .jornada-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .valores-cards {
    flex-direction: column;
    align-items: center;
  }
  .valor-card--destaque {
    transform: scale(1);
  }
  .historia-float-card {
    position: static;
    margin-top: 20px;
    align-self: flex-start;
  }
  .sobre-historia-image {
    width: 100%;
  }
}
@media (max-width: 500px) {
  .jornada-grid {
    grid-template-columns: 1fr;
  }
}

/* ===========================
   Blog: Listagem
   =========================== */

.blog-archive-header {
  text-align: center;
  padding: 80px 0 60px;
}
.blog-archive-header h1 {
  font-size: 3rem;
  margin-bottom: 12px;
}
.blog-archive-header p,
.blog-archive-desc {
  color: var(--text-light);
  font-size: 0.95rem;
  max-width: 520px;
  margin: 10px auto 0;
  line-height: 1.6;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.blog-card {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.1);
}

.blog-card-thumb {
  display: block;
  height: 210px;
  overflow: hidden;
  background: var(--blob-light-blue);
}
.blog-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.blog-card:hover .blog-card-thumb img {
  transform: scale(1.04);
}
.blog-card-thumb--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--primary-blue);
  opacity: 0.3;
}

.blog-card-body {
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card-cat {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--primary-blue);
  background: var(--blob-light-blue);
  padding: 4px 12px;
  border-radius: 50px;
  text-decoration: none;
  margin-bottom: 12px;
  align-self: flex-start;
  transition: background 0.2s;
}
.blog-card-cat:hover {
  background: #c9e2ff;
}

.blog-card-title {
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 10px;
}
.blog-card-title a {
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.2s;
}
.blog-card-title a:hover {
  color: var(--primary-blue);
}

.blog-card-excerpt {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 20px;
  flex: 1;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 16px;
}
.blog-card-date {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--text-light);
}
.blog-card-date i {
  font-size: 0.75rem;
}

.blog-card-read {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary-blue);
  text-decoration: none;
  transition: gap 0.2s;
}
.blog-card-read:hover {
  gap: 10px;
}

/* Paginação */
.blog-pagination {
  display: flex;
  justify-content: center;
  margin-bottom: 80px;
}
.blog-pagination .nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-dark);
  background: white;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.07);
  transition:
    background 0.2s,
    color 0.2s,
    transform 0.2s;
}
.blog-pagination .page-numbers:hover {
  background: var(--blob-light-blue);
  color: var(--primary-blue);
  transform: translateY(-2px);
}
.blog-pagination .page-numbers.current {
  background: var(--gradient-blue);
  color: white;
  box-shadow: 0 6px 18px rgba(42, 129, 246, 0.3);
}
.blog-pagination .page-numbers.dots {
  background: transparent;
  box-shadow: none;
  cursor: default;
}

/* Estado vazio */
.blog-empty {
  text-align: center;
  padding: 80px 20px;
}
.blog-empty i {
  font-size: 3.5rem;
  color: var(--primary-blue);
  opacity: 0.25;
  display: block;
  margin-bottom: 20px;
}
.blog-empty h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}
.blog-empty p {
  color: var(--text-light);
  margin-bottom: 30px;
}

/* ===========================
   Blog: Post individual
   =========================== */

.single-post {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 0 40px;
}

/* Breadcrumb */
.single-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.single-breadcrumb a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.2s;
}
.single-breadcrumb a:hover {
  color: var(--primary-blue);
}
.single-breadcrumb i {
  font-size: 0.6rem;
  opacity: 0.5;
}
.single-breadcrumb span {
  color: var(--text-dark);
  font-weight: 500;
}

.single-post-title {
  font-size: 2.6rem;
  line-height: 1.2;
  margin: 14px 0 20px;
}

.single-post-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.single-post-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.single-post-meta i {
  color: var(--primary-blue);
  font-size: 0.8rem;
}

/* Imagem destacada */
.single-post-thumb {
  margin-bottom: 40px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.1);
}
.single-post-thumb img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 500px;
  object-fit: cover;
}

/* Conteúdo */
.single-post-content {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-dark);
  margin-bottom: 40px;
}
.single-post-content p {
  margin-bottom: 1.4em;
}
.single-post-content h2,
.single-post-content h3,
.single-post-content h4 {
  margin: 1.8em 0 0.6em;
  line-height: 1.3;
}
.single-post-content h2 {
  font-size: 1.7rem;
}
.single-post-content h3 {
  font-size: 1.35rem;
}
.single-post-content h4 {
  font-size: 1.1rem;
}
.single-post-content ul,
.single-post-content ol {
  padding-left: 1.5em;
  margin-bottom: 1.4em;
}
.single-post-content li {
  margin-bottom: 0.5em;
}
.single-post-content blockquote {
  border-left: 4px solid var(--primary-blue);
  background: var(--blob-light-blue);
  padding: 18px 24px;
  border-radius: 0 12px 12px 0;
  margin: 1.6em 0;
  font-style: italic;
  color: var(--text-dark);
}
.single-post-content img {
  max-width: 100%;
  border-radius: 12px;
  height: auto;
}
.single-post-content a {
  color: var(--primary-blue);
  text-decoration: underline;
}

/* Páginas internas do post */
.post-pages {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.post-pages span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 500;
  background: white;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.07);
  color: var(--text-dark);
}
.post-pages a span {
  color: var(--primary-blue);
}
.post-pages a span:hover {
  background: var(--gradient-blue);
  color: white;
}

/* Tags */
.single-post-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.single-post-tags > i {
  color: var(--text-light);
  font-size: 0.85rem;
}
.tag-pill {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-dark);
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 5px 14px;
  border-radius: 50px;
  text-decoration: none;
  transition:
    background 0.2s,
    color 0.2s;
}
.tag-pill:hover {
  background: var(--blob-light-blue);
  color: var(--primary-blue);
  border-color: transparent;
}

/* Compartilhar */
.single-share {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 28px 32px;
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
  margin-bottom: 50px;
}
.single-share-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 18px;
}
.single-share-label i {
  color: var(--primary-blue);
}
.single-share-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    opacity 0.2s;
}
.share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}
.share-btn--facebook {
  background: #1877f2;
  color: white;
}
.share-btn--twitter {
  background: #000000;
  color: white;
}
.share-btn--whatsapp {
  background: #25d366;
  color: white;
}
.share-btn--linkedin {
  background: #0a66c2;
  color: white;
}
.share-btn--copy {
  background: var(--blob-light-blue);
  color: var(--primary-blue);
}
.share-btn--copied {
  background: var(--blob-green);
  color: #2eab73;
}

/* Navegação anterior/próximo */
.single-post-nav {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 40px 0 80px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  margin: 0 auto;
  max-width: 100%;
}
.post-nav-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 48%;
  text-decoration: none;
  padding: 20px 24px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.05);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.post-nav-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.1);
}
.post-nav-item--next {
  text-align: right;
  margin-left: auto;
}
.post-nav-dir {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary-blue);
}
.post-nav-item--next .post-nav-dir {
  justify-content: flex-end;
}
.post-nav-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
}

/* Responsivo: blog */
@media (max-width: 900px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .blog-archive-header p,
  .blog-archive-desc {
    color: var(--text-dark);
  }
  .single-post-title {
    font-size: 2rem;
  }
  .single-post-nav {
    flex-direction: column;
  }
  .post-nav-item,
  .post-nav-item--next {
    max-width: 100%;
    text-align: left;
  }
  .post-nav-item--next .post-nav-dir {
    justify-content: flex-start;
  }
}
@media (max-width: 600px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .blog-archive-header h1 {
    font-size: 2.2rem;
  }
  .single-post-title {
    font-size: 1.7rem;
  }
  .single-share {
    padding: 22px 18px;
  }
  .share-btn span {
    display: none;
  }
  .share-btn {
    width: 42px;
    height: 42px;
    padding: 0;
    justify-content: center;
  }
  .share-btn--twitter {
    background: #1a1a1a;
    color: white;
  }
}

/* =============================================
   BOTÃO FLUTUANTE WHATSAPP
   ============================================= */

.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.55);
}
.whatsapp-float svg {
  flex-shrink: 0;
}

/* Variante outline escuro (fundo claro) */
.btn-outline--dark {
  border-color: rgba(42, 129, 246, 0.4);
  color: var(--primary-blue);
}
.btn-outline--dark:hover {
  background: var(--blob-light-blue);
  border-color: var(--primary-blue);
}

/* =============================================
   PAGE: FORUM
   ============================================= */

.forum-page {
  padding: 70px 0 90px;
}
.forum-page-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 38px;
}
.forum-page-header h1 {
  font-size: 2.8rem;
  margin: 12px 0 16px;
}
.forum-page-header p {
  color: var(--text-light);
  line-height: 1.7;
}
.forum-alert {
  background: var(--blob-light-blue);
  border: 1px solid #cce1ff;
  color: var(--primary-blue);
  border-radius: 14px;
  padding: 14px 16px;
  font-size: 0.9rem;
  margin-bottom: 24px;
}
.forum-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(260px, 0.9fr);
  gap: 26px;
}
.forum-top-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 24px;
}
.forum-layout--list {
  grid-template-columns: 1fr;
}
.forum-main--full {
  width: 100%;
}
.forum-intro-card p {
  color: var(--text-light);
  line-height: 1.65;
  margin: 6px 0 16px;
}
.forum-open-modal {
  width: 100%;
  text-align: center;
}
.forum-compose {
  margin-bottom: 26px;
  border: 1px solid rgba(42, 129, 246, 0.15);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
}
.forum-compose-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.forum-compose-head h3 {
  margin: 0;
}
.forum-compose-badge {
  display: inline-flex;
  align-items: center;
  background: var(--blob-light-blue);
  color: var(--primary-blue);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 600;
}
.forum-form-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 14px;
}
.forum-form-submit-wrap .btn {
  width: 100%;
}
.forum-topic-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.forum-topic-card {
  background: white;
  border-radius: 18px;
  padding: 22px 22px 18px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}
.forum-topic-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.1);
  border-color: rgba(42, 129, 246, 0.22);
}
.forum-topic-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.forum-topic-card h3 a {
  text-decoration: none;
  color: var(--text-dark);
}
.forum-topic-card h3 a:hover {
  color: var(--primary-blue);
}
.forum-topic-card p {
  color: var(--text-light);
  line-height: 1.65;
  font-size: 0.93rem;
  margin-bottom: 14px;
}
.forum-topic-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  font-size: 0.78rem;
  color: var(--text-light);
}
.forum-topic-meta i {
  color: var(--primary-blue);
  margin-right: 6px;
}
.forum-card {
  background: white;
  border-radius: 18px;
  padding: 24px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  position: relative;
}
.forum-card h3 {
  margin-bottom: 12px;
}
.forum-form {
  display: grid;
  gap: 12px;
}
.forum-form label {
  font-size: 0.82rem;
  font-weight: 600;
}
.forum-form input,
.forum-form textarea {
  border: 1px solid #d8e6fb;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 0.9rem;
}
.forum-form textarea {
  resize: vertical;
  min-height: 130px;
}
.forum-auth-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}
.forum-auth-links .btn,
.forum-auth-links .btn-outline {
  width: 100%;
  text-align: center;
}
.forum-guidelines ul {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 10px;
}
.forum-guidelines li {
  color: var(--text-light);
  line-height: 1.55;
  font-size: 0.88rem;
  position: relative;
  padding-left: 18px;
}
.forum-guidelines li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-blue);
  position: absolute;
  left: 0;
  top: 0.42em;
}
.forum-modal[hidden] {
  display: none;
}
.forum-modal {
  position: fixed;
  inset: 0;
  z-index: 11000;
}
.forum-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 18, 36, 0.56);
  backdrop-filter: blur(2px);
}
.forum-modal-dialog {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 6vh auto 0;
  background: white;
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.25);
  padding: 26px;
}
.forum-modal-dialog h3 {
  margin-bottom: 14px;
}
.forum-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  background: var(--blob-light-blue);
  color: var(--primary-blue);
  cursor: pointer;
}
.forum-editor-wrap .wp-editor-wrap {
  border: 1px solid #d8e6fb;
  border-radius: 10px;
  overflow: hidden;
}
.forum-editor-wrap .wp-editor-container {
  border-top: 1px solid #d8e6fb;
}
.forum-editor-wrap .mce-toolbar .mce-btn button {
  padding: 2px 4px;
}
.forum-empty {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 18px;
  text-align: center;
  padding: 54px 20px;
}
.forum-empty i {
  font-size: 2.6rem;
  opacity: 0.35;
  color: var(--primary-blue);
  display: block;
  margin-bottom: 12px;
}
.forum-empty h3 {
  margin-bottom: 8px;
}
.forum-empty p {
  color: var(--text-light);
}

@media (max-width: 900px) {
  .forum-page-header p {
    color: var(--text-dark);
  }
  .forum-top-grid {
    grid-template-columns: 1fr;
  }
  .forum-form-grid {
    grid-template-columns: 1fr;
  }
  .forum-layout {
    grid-template-columns: 1fr;
  }
  .forum-card {
    position: relative;
  }
}
@media (max-width: 600px) {
  .forum-page-header h1 {
    font-size: 2rem;
  }
  .forum-topic-list {
    grid-template-columns: 1fr;
  }
  .forum-modal-dialog {
    margin: 0;
    height: 100%;
    max-width: none;
    border-radius: 0;
    overflow-y: auto;
  }
  .forum-compose-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Single do forum */
.forum-single {
  max-width: 980px;
}
.forum-single-header {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(42, 129, 246, 0.12);
  border-radius: 20px;
  padding: 24px 22px;
  margin-bottom: 24px;
}
.forum-single-content {
  background: white;
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: 20px;
  padding: 24px 22px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  overflow-wrap: anywhere;
}
.forum-mod-alert {
  margin-top: 18px;
}
.forum-comments-wrap {
  margin-top: 24px;
  background: white;
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: 20px;
  padding: 24px 22px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}
.forum-comments-wrap .comments-title,
.forum-comments-wrap .comment-reply-title {
  font-size: 1.2rem;
  margin-bottom: 14px;
}
.forum-comments-wrap .comment-list {
  list-style: none;
  margin: 0;
  display: grid;
  gap: 16px;
  padding: 0;
}
.forum-comments-wrap ol.comment-list,
.forum-comments-wrap ol.children {
  list-style: none !important;
  margin-left: 0;
  padding-left: 0;
}
.forum-comments-wrap .comment {
  list-style: none !important;
}
.forum-comments-wrap .comment-list .children {
  list-style: none;
  margin: 12px 0 0;
  padding-left: 16px;
  border-left: 2px solid #e9f1ff;
  display: grid;
  gap: 12px;
}
.forum-comments-wrap .comment {
  margin: 0;
}
.forum-comments-wrap .comment-body {
  background: #f9fbff;
  border: 1px solid #e4eefc;
  border-radius: 14px;
  padding: 16px;
}
.forum-comments-wrap .comment-meta {
  display: block;
  margin-bottom: 10px;
}
.forum-comments-wrap .comment-author .fn {
  color: var(--text-dark);
  font-weight: 600;
}
.forum-comments-wrap .comment-author img {
  border-radius: 50%;
  width: 36px;
  height: 36px;
}
.forum-comments-wrap .comment-author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}
.forum-comments-wrap .comment-metadata {
  padding-left: 46px;
  line-height: 1.4;
}
.forum-comments-wrap .comment-metadata a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.78rem;
}
.forum-comments-wrap .comment-metadata .edit-link {
  margin-left: 8px;
}
.forum-comments-wrap .comment-content {
  color: var(--text-dark);
  line-height: 1.6;
  overflow-wrap: anywhere;
  margin-bottom: 8px;
  padding-left: 46px;
}
.forum-comments-wrap .reply a,
.forum-comments-wrap .comment-reply-link {
  color: var(--primary-blue);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
}
.forum-comments-wrap .reply {
  padding-left: 46px;
}
@media (max-width: 600px) {
  .forum-comments-wrap .comment-metadata,
  .forum-comments-wrap .comment-content,
  .forum-comments-wrap .reply {
    padding-left: 0;
  }
}
.forum-comments-wrap .comment-respond {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid #e6eefb;
}
.forum-comments-wrap .comment-form {
  display: grid;
  gap: 12px;
}
.forum-comments-wrap .comment-form p {
  margin: 0;
}
.forum-comments-wrap .comment-form input[type="text"],
.forum-comments-wrap .comment-form input[type="email"],
.forum-comments-wrap .comment-form input[type="url"],
.forum-comments-wrap .comment-form textarea {
  width: 100%;
  border: 1px solid #d8e6fb;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 0.9rem;
}
.forum-comments-wrap .comment-form textarea {
  min-height: 130px;
  resize: vertical;
}
.forum-comments-wrap .comment-form-cookies-consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-light);
}
.forum-comments-wrap .form-submit .submit {
  border: 0;
  border-radius: 999px;
  padding: 10px 18px;
  color: white;
  font-weight: 600;
  background: var(--gradient-blue);
  cursor: pointer;
}
@media (max-width: 700px) {
  .forum-single-header,
  .forum-single-content,
  .forum-comments-wrap {
    padding: 18px 16px;
    border-radius: 14px;
  }
}

.forum-comments-wrap .comment-meta {
  margin-top: 0;
  border: none;
  padding: 0;
}

.single-forum_topic .single-post-meta {
  border: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.single-forum_topic .single-share-label {
  margin-bottom: 0;
}

.single-forum_topic .commentlist li {
  margin-bottom: 20px;
  border-bottom: 1px solid #e6eefb;
}

.single-forum_topic .commentlist li ul {
  margin-top: 20px;
}

.single-forum_topic .commentlist li ul li {
  margin-bottom: 20px;
  margin-left: 30px;
}

/* =============================================
   PAGE: PROGRAMAS
   ============================================= */

/* Hero */
.programas-hero {
  display: flex;
  align-items: center;
  gap: 60px;
  min-height: 70vh;
  padding: 80px 0 60px;
}
.programas-hero-content {
  flex: 1;
}
.programas-hero-content h1 {
  font-size: 3.2rem;
  line-height: 1.1;
  margin: 14px 0 20px;
}
.programas-hero-content p {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 30px;
  max-width: 480px;
}
.programas-hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.programas-icon-ring {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: var(--gradient-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  color: white;
  box-shadow: 0 20px 50px rgba(42, 129, 246, 0.3);
}
.programas-badges {
  display: flex;
  gap: 16px;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}
.section-header h2 {
  font-size: 2.2rem;
  margin-bottom: 12px;
}
.section-header p {
  color: var(--text-light);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto;
}

/* Grade de Programas */
.programas-grid-section {
  padding: 80px 0;
}
.programas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.programa-card {
  background: white;
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: 0 4px 24px rgba(42, 129, 246, 0.07);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.programa-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(42, 129, 246, 0.13);
}
.programa-card--destaque {
  background: var(--gradient-blue);
  color: white;
}
.programa-card--destaque h3,
.programa-card--destaque p {
  color: white;
}
.programa-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.programa-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
}
.programa-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
  flex: 1;
}
.programa-tag {
  display: inline-block;
  background: var(--blob-light-blue);
  color: var(--primary-blue);
  border-radius: 50px;
  padding: 4px 14px;
  font-size: 0.75rem;
  font-weight: 500;
  align-self: flex-start;
}

/* Referências */
.programas-referencias {
  padding: 80px 0;
}
.referencias-header {
  text-align: center;
  margin-bottom: 50px;
}
.referencias-header h2 {
  font-size: 2.2rem;
  margin-bottom: 12px;
}
.referencias-header p {
  color: var(--text-light);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto;
}
.referencias-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.referencia-card {
  background: white;
  border-radius: 24px;
  padding: 36px 32px;
  box-shadow: 0 4px 24px rgba(42, 129, 246, 0.07);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.referencia-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(42, 129, 246, 0.12);
}
.referencia-logo {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: var(--blob-light-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--primary-blue);
}
.referencia-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.referencia-content p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}
.referencia-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.referencia-tags span {
  background: var(--blob-light-blue);
  color: var(--primary-blue);
  border-radius: 50px;
  padding: 4px 14px;
  font-size: 0.75rem;
  font-weight: 500;
}
.referencia-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--primary-blue);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  margin-top: 6px;
  transition: gap 0.2s;
}
.referencia-link:hover {
  gap: 11px;
}

/* CTA */
.programas-cta {
  padding: 80px 0 100px;
}
.cta-inner {
  background: var(--gradient-blue);
  border-radius: 28px;
  padding: 60px 48px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}
.cta-inner::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 50%;
}
.cta-inner::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 160px;
  height: 160px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}
.cta-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  display: block;
}
.cta-inner h2 {
  font-size: 2rem;
  margin-bottom: 14px;
}
.cta-inner p {
  font-size: 1rem;
  opacity: 0.88;
  max-width: 480px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.btn-outline {
  display: inline-block;
  padding: 12px 28px;
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition:
    background 0.3s,
    border-color 0.3s;
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: white;
}
.cta-inner .btn {
  background: white;
  color: var(--primary-blue);
}
.cta-inner .btn:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Responsivo – Programas */
@media (max-width: 900px) {
  .programas-hero {
    flex-direction: column;
    text-align: center;
    gap: 40px;
    padding: 60px 0 40px;
  }
  .programas-hero-content h1 {
    font-size: 2.4rem;
  }
  .programas-hero-content p {
    max-width: 100%;
    color: var(--text-dark);
  }
  .programas-grid {
    grid-template-columns: 1fr 1fr;
  }
  .referencias-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .programas-hero-content h1 {
    font-size: 2rem;
  }
  .programas-grid {
    grid-template-columns: 1fr;
  }
  .cta-inner {
    padding: 40px 24px;
  }
  .cta-inner h2 {
    font-size: 1.6rem;
  }
  .referencia-card {
    padding: 28px 22px;
  }
}
