/*
Theme Name: MEB Benefícios
Description: parmedia.cc para a Meb Benefícios
Author: PAR.media
Version: 1.0
*/

@font-face {
  font-family: 'Urbane';
  src: url('./assets/fonts/Urbane-Medium.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Urbane';
  src: url('./assets/fonts/Urbane-DemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

body {
  background-color: #ffffff;
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.6;
  color: #1e2b32;
  margin: 0;
}

:root {
  --font-main: 'Urbane', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.meb-header {
  background: #27343c;
  position: relative;
  z-index: 1000;
}

.meb-header-container {
  max-width: 1180px;
  margin: 0 auto;
  height: 72px;
  padding: 0 32px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
}
.meb-header-logo img {
  height: 48px;
  width: auto;
  display: block;
}
.meb-header-nav {
  display: flex;
  justify-content: center;
}
.meb-header-nav ul {
  display: flex;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.meb-header-nav a {
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  transition: color 0.2s ease;
}
.meb-header-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #9fdceb;
  transition: width 0.25s ease;
}
.meb-header-nav a:hover::after {
  width: 100%;
}
.meb-header-nav a:hover {
  color: #9fdceb;
}

.meb-header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}
.meb-header-socials {
  display: flex;
  gap: 14px;
}

.meb-header-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.2s ease;
}
.meb-header-socials a:hover {
  transform: translateY(-2px);
}
.meb-header-socials i {
  color: #9fdceb;
  font-size: 18px;
}
.meb-header-socials svg {
  width: 18px;
  height: 18px;
  fill: #9fdceb;
  transition: 0.2s ease;
}
.meb-header-socials a:hover svg {
  opacity: 1;
  filter: drop-shadow(0 0 6px rgba(159,220,235,0.4));
}

.meb-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  font-size: 36px;
  color: #9fdceb;
  cursor: pointer;
}

.meb-header-phone {
  color: #9fdceb;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.meb-header-phone:hover {
  color: #ffffff;
}

.meb-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.meb-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #9fdceb;
  margin: 6px 0;
}

.meb-mobile-menu {
  position: fixed;
  inset: 0;
  background: #2b3a42;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 28px;
  transform: translateX(100%);
  transition: 0.3s ease;
  pointer-events: none;
  z-index: 999;
}

.meb-mobile-menu.active {
  transform: translateX(0);
  pointer-events: auto;
}

.meb-mobile-menu a {
  color: #ffffff;
  font-size: 22px;
  font-weight: 600;
  text-decoration: none;
}

.meb-mobile-menu span {
  color: #9fdceb;
  margin-top: 24px;
}

.desktop-only { display: flex; }
.mobile-only { display: none; }

.meb-footer {
  background: #242424;
  color: #ffffff;
  padding: 64px 0 32px;
}

.meb-footer-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
  gap: 48px;
}

.meb-footer-logo {
  height: 42px;
  margin-bottom: 16px;
}

.meb-footer-desc {
  max-width: 260px;
  line-height: 1.5;
  margin-bottom: 24px;
}

.meb-footer-socials {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 15px;
}

.meb-footer-socials a {
  display: flex;
  align-items: center;
  color: #9fdceb;
  font-size: 18px;
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.meb-footer-socials a:hover {
  transform: translateY(-2px);
  opacity: 0.85;
}

.meb-footer-phone {
  margin-left: 5px;
  color: #9fdceb;
  font-size: 22px;
  font-weight: 700;
  text-decoration: none;
  line-height: 1;
  display: inline-block;
  white-space: nowrap !important;
}

.meb-footer-col h4 {
  margin-bottom: 16px;
}

.meb-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.meb-footer-col li {
  margin-bottom: 10px;
}

.meb-footer-col a,
.meb-footer-links a {
  color: #ffffff;
  text-decoration: none;
  position: relative;
  transition: color 0.2s ease;
}

.meb-footer-col a::after,
.meb-footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: #9fdceb;
  transition: width 0.25s ease;
}

.meb-footer-col a:hover::after,
.meb-footer-links a:hover::after {
  width: 100%;
}

.meb-footer-col a:hover,
.meb-footer-links a:hover {
  color: #9fdceb;
}

.meb-footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.meb-footer-contact li {
  display: flex !important;
  align-items: flex-start;
  gap: 12px;
  color: #ffffff;
  font-size: 15px;
  line-height: 1.4;
  margin-bottom: 0 !important;
}

.meb-footer-contact li i {
  color: #9fdceb;
  width: 20px;
  text-align: center;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 3px;
}

.meb-footer-contact li a, 
.meb-footer-contact li span {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s;
}

.meb-footer-contact li a:hover {
  color: #9fdceb;
}

.meb-footer-contact li a::after {
  display: none !important;
}

.meb-footer-divider {
  height: 4px;
  background: #9fdceb;
  margin: 48px 0 24px;
}

.meb-footer-bottom {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.meb-footer-links {
  display: flex;
  gap: 24px;
}

.meb-footer-links a {
  opacity: .8;
}

.btn-seja-meb {
  background-color: #9fdceb;
  color: #0f1f27;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none !important;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-left: 15px;
  display: inline-block;
  border: 2px solid #9fdceb;
}

.btn-seja-meb:hover {
  background-color: #ffffff;
  color: #0f1f27;
  border-color: #ffffff;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 0 20px rgba(159, 220, 235, 0.6);
}

.meb-header-actions .btn-seja-meb::after {
  display: none !important;
}

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

.meb-hero {
  background: linear-gradient(180deg,#23343d,#0f1f27);
  padding: 80px 0;
}

.meb-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.meb-hero h1 {
  color: #fff;
  font-size: 48px;
  line-height: 1.15;
}

.meb-hero p {
  color: #cfeaf1;
  margin: 24px 0;
}

.meb-hero-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
}

.btn-primary {
  background: #9fdceb;
  color: #0f1f27;
  padding: 14px 22px;
  border-radius: 6px;
  font-weight: 600;
}

.btn-secondary {
  border: 1px solid #9fdceb;
  color: #9fdceb;
  padding: 14px 22px;
  border-radius: 6px;
}

.btn-dark {
  background: #1c2c34;
  color: #ffffff;
  padding: 16px 22px;
  border-radius: 10px;
  font-weight: 600;
  margin-top: auto;
}

.btn-primary,
.btn-secondary,
.btn-dark {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.meb-benefits {
  background: #f4fbfd;
  padding: 80px 0;
  text-align: center;
}

.meb-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
  margin-top: 48px;
}

.meb-benefit-card {
  background: #fff;
  padding: 32px;
  border-radius: 10px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.meb-benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.meb-benefit-card .icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #e6f6fb;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.meb-benefit-card h3 {
  margin-bottom: 8px;
}

.meb-dual {
  padding: 80px 0;
}

.meb-dual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.meb-dual-content {
  max-width: 520px;
}

.meb-dual ul {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.meb-dual li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
}

.meb-dual li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #9fdceb;
  font-weight: 700;
}

.meb-cta {
  background: #1c2c34;
  color: #fff;
  padding: 96px 0;
  text-align: center;
}

.meb-cta .meb-hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}

.meb-cta-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 56px;
  text-align: center;
}

.meb-cta-stats strong {
  display: block;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
}

.meb-cta-stats span {
  font-size: 15px;
  opacity: 0.9;
}

.meb-blog-preview {
  padding: 120px 0;
}

.meb-hero-image img,
.meb-dual-image img,
.meb-dual img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

section {
  padding: 96px 0;
  overflow: hidden;
}

section.meb-cta {
  padding: 120px 0;
}

.section-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 16px;
}

.section-title span {
  color: #9fdceb;
}

.section-subtitle {
  font-size: 18px;
  color: #6b7c86;
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.meb-planos-hero {
  padding: 40px 0 20px !important;
  text-align: center;
}

.meb-planos-hero h1 {
  margin-bottom: 10px;
}

.meb-planos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
  align-items: stretch;
}

.meb-planos-section {
  padding: 20px 0 60px !important;
}

.meb-plano-card {
  background: #ffffff;
  border: 1px solid #e4eef5;
  border-radius: 16px;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  height: 100%;
  text-align: left;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

@media (hover: hover) and (pointer: fine) {
  .meb-plano-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,.08);
  }
}

.meb-plano-card .preco {
  font-size: 28px;
  font-weight: 700;
  color: #0d2b45;
  margin-bottom: 5px;
}

.meb-plano-card .cobranca {
  font-size: 15px;
  color: #6b7c86;
  margin-bottom: 20px;
}

.meb-plano-card h3 {
  font-size: 22px;
  color: #0d2b45;
  margin-bottom: 15px;
  min-height: 54px;
}

.meb-plano-card hr {
  border: none;
  height: 2px;
  background: #e6f4f9;
  margin: 20px 0;
}

.meb-plano-card .btn-primary {
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  white-space: normal;
  text-align: center;
  margin-top: auto;
}

.metrica {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100%;
  min-height: 140px;
}

.metrica strong {
  font-size: 28px;
  display: block;
}

.plano-hero {
  background: #f4f6f8;
  padding: 80px 0;
}

.plano-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}

.plano-hero h1 {
  font-size: 42px;
  margin-bottom: 16px;
}

.plano-hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.plano-hero-image img {
  width: 100%;
  border-radius: 16px;
}

.plano-metricas {
  padding: 40px 0;
}

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

.plano-simplicidade {
  padding: 80px 0;
}

.plano-simplicidade-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.plano-checklist {
  list-style: none;
  padding: 0;
}

.plano-checklist li {
  padding-left: 28px;
  margin-bottom: 12px;
  position: relative;
}

.plano-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #6dd3f5;
  font-weight: bold;
}

.plano-beneficios {
  background: #f9fafb;
  padding: 80px 0;
}

.plano-beneficios-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.beneficio-card {
  background: #fff;
  border-radius: 12px;
  padding: 32px;
}

.plano-controle {
  padding: 80px 0;
}

.plano-controle-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.plano-controle-galeria {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.plano-controle-galeria img {
  width: 100%;
  border-radius: 12px;
}

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

.meb-blog-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
  box-shadow: 0 12px 32px rgba(0,0,0,.06);
}

.meb-blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(0,0,0,.1);
}

.meb-blog-thumb img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.meb-blog-content {
  padding: 20px;
}

.meb-blog-category a {
  font-size: 15px;
  color: #9fdceb;
  font-weight: 600;
  text-decoration: none;
}

.meb-blog-content h3 {
  font-size: 20px;
  line-height: 1.3;
}

.meb-blog-readmore {
  color: #1c2c34;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  text-decoration: none;
}

.whatsapp-float {
  color: #fff;
  position: fixed;
  right: 20px;
  bottom: 20px;
  height: 56px;
  padding: 0 14px;
  background: #25d366;
  border-radius: 28px;
  display: flex;
  align-items: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  z-index: 9999;
  text-decoration: none;
  overflow: hidden;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.whatsapp-float i {
  font-size: 28px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-float span {
  max-width: 0;
  opacity: 0;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
  background: #20b858;
}

.whatsapp-float:hover span {
  max-width: 200px;
  opacity: 1;
  margin-left: 10px;
}

.meb-exit-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 43, 69, 0.85);
  backdrop-filter: blur(5px);
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.meb-exit-popup.show {
  opacity: 1;
  visibility: visible;
}

.meb-exit-popup-content {
  background: #ffffff;
  border-radius: 20px;
  max-width: 800px;
  width: 90%;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(0,0,0,0.25);
}

.meb-exit-popup.show .meb-exit-popup-content {
  transform: translateY(0);
}

.meb-exit-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 32px;
  line-height: 1;
  color: #6b7c86;
  cursor: pointer;
  z-index: 2;
  transition: color 0.2s;
}

.meb-exit-close:hover {
  color: #0d2b45;
}

.meb-exit-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
}

.meb-exit-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.meb-exit-text {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.meb-exit-text h2 {
  font-size: 32px;
  color: #0d2b45;
  margin-bottom: 16px;
  line-height: 1.2;
}

.meb-exit-text p {
  font-size: 16px;
  color: #6b7c86;
  margin-bottom: 32px;
}

@media (min-width: 1024px) {
  .meb-footer-container {
    grid-template-columns: 1fr 0.8fr 0.8fr auto !important;
  }
  .meb-footer-contact ul li,
  .meb-footer-contact ul li span,
  .meb-footer-contact ul li a {
    white-space: nowrap !important;
    max-width: none !important;
  }
}

@media (max-width: 1023px) {
  .desktop-only { display: none; }
  .mobile-only { display: block; }
  .meb-menu-toggle { display: block; }
  .meb-footer-container {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .meb-footer-desc {
    margin-left: auto;
    margin-right: auto;
  }
  .meb-footer-socials {
    justify-content: center;
    flex-wrap: wrap;
  }
  .meb-footer-contact ul {
    align-items: center;
  }
  .meb-footer-contact li {
    justify-content: center;
    text-align: center;
  }
  .meb-footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .meb-footer-links {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 992px) {
  .plano-hero-grid,
  .plano-simplicidade-grid,
  .plano-controle-grid {
    grid-template-columns: 1fr;
  }
  .plano-metricas-grid,
  .plano-beneficios-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .meb-hero-grid,
  .meb-dual-grid,
  .meb-benefits-grid,
  .meb-blog-grid,
  .meb-cta-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    height: 52px;
    padding: 0 12px;
  }
  .whatsapp-float i {
    font-size: 28px;
  }
  .whatsapp-float span {
    display: none;
  }
  .meb-exit-grid {
    grid-template-columns: 1fr;
  }
  .meb-exit-image {
    display: none;
  }
  .meb-exit-text {
    padding: 40px 24px;
    text-align: center;
  }
  .meb-planos-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    padding: 0 20px;
  }
  .meb-plano-card:hover {
    transform: none;
  }
  .btn-seja-meb {
    padding: 8px 20px;
    font-size: 13px;
    margin-left: 0;
    margin-top: 10px;
  }
}

@media (max-width: 576px) {
  .plano-metricas-grid,
  .plano-beneficios-grid {
    grid-template-columns: 1fr;
  }
}

.planos-contato {
  padding: 80px 0;
  background: linear-gradient(180deg, #f4fbfd 0%, #ffffff 100%);
}

.planos-contato-form {
  max-width: 650px;
  margin: 0 auto;
  background: #ffffff;
  padding: 48px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid #e4eef5;
}

.meb-form-wrapper h3 {
  font-size: 32px;
  color: #0d2b45;
  margin-bottom: 8px;
  text-align: center;
}

.meb-form-wrapper p {
  color: #6b7c86;
  text-align: center;
  margin-bottom: 32px;
  font-size: 16px;
}

.meb-cf7-container .wpcf7-form-control.wpcf7-text,
.meb-cf7-container .wpcf7-form-control.wpcf7-textarea {
  width: 100%;
  padding: 16px;
  border: 1px solid #d1dbe1;
  border-radius: 8px;
  background: #f9fafb;
  font-family: var(--font-main);
  font-size: 15px;
  color: #3a4a52;
  box-sizing: border-box;
  transition: all 0.3s ease;
  margin-bottom: 8px;
}

.meb-cf7-container .wpcf7-form-control:focus {
  outline: none;
  border-color: #9fdceb;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(159, 220, 235, 0.2);
}

.meb-cf7-container .wpcf7-textarea {
  min-height: 120px;
  resize: vertical;
}

.meb-cf7-container .wpcf7-submit {
  width: 100%;
  background: #9fdceb;
  color: #0f1f27;
  border: none;
  padding: 16px 24px;
  font-weight: 700;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin-top: 16px;
}

.meb-cf7-container .wpcf7-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(159, 220, 235, 0.4);
}

.depoimentos-wrapper {
  padding: 40px 0 100px;
  background: #ffffff;
  text-align: center;
}

.depoimentos-title {
  font-size: 36px;
  color: #0d2b45;
  margin-bottom: 56px;
}

.depoimentos-title span {
  color: #9fdceb;
}

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

.depoimento {
  background: #f4fbfd;
  padding: 40px 32px;
  border-radius: 16px;
  position: relative;
  text-align: left;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease;
}

.depoimento:hover {
  transform: translateY(-5px);
}

.depoimento::before {
  content: "\201C";
  position: absolute;
  top: 10px;
  left: 24px;
  font-size: 80px;
  color: #9fdceb;
  opacity: 0.3;
  font-family: Georgia, serif;
  line-height: 1;
}

.depoimento p {
  position: relative;
  z-index: 2;
  font-size: 16px;
  color: #3a4a52;
  font-style: italic;
  line-height: 1.6;
}

.wpcf7-not-valid-tip {
  font-size: 13px;
  color: #e74c3c;
  margin-top: -4px;
  margin-bottom: 12px;
  display: block;
}

.wpcf7-response-output {
  border-radius: 8px !important;
  font-size: 14px;
  margin-top: 24px !important;
  border-width: 1px !important;
}

@media (max-width: 992px) {
  .depoimentos-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .planos-contato-form {
    padding: 32px 24px;
  }
}

.meb-sobre section {
  padding: 80px 0;
}

.sobre-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.sobre-hero-text h1 {
  font-size: 46px;
  color: #0d2b45;
  line-height: 1.15;
  margin-bottom: 24px;
}

.sobre-hero-text h1 span {
  color: #9fdceb;
}

.sobre-hero-text p {
  font-size: 18px;
  color: #6b7c86;
  margin-bottom: 32px;
  line-height: 1.6;
  max-width: 90%;
}

.sobre-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.sobre-hero-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  object-fit: cover;
}

.sobre-oque-fazemos {
  background: #f9fafb;
}

.sobre-oque-fazemos h2,
.sobre-depoimentos h2 {
  font-size: 36px;
  color: #0d2b45;
  text-align: center;
  margin-bottom: 48px;
}

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

.oque-card {
  background: #ffffff;
  padding: 40px 32px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.oque-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.06);
}

.oque-card h3 {
  font-size: 22px;
  color: #0d2b45;
  margin-bottom: 16px;
}

.oque-card p {
  color: #6b7c86;
  font-size: 15px;
  line-height: 1.6;
}

.sobre-pessoas-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}

.sobre-pessoas-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  object-fit: cover;
}

.sobre-pessoas-text h2 {
  font-size: 36px;
  color: #0d2b45;
  margin-bottom: 24px;
  line-height: 1.2;
}

.sobre-pessoas-text p {
  font-size: 16px;
  color: #6b7c86;
  line-height: 1.8;
}

.depoimento strong {
  display: block;
  font-size: 20px;
  color: #0d2b45;
  margin-bottom: 12px;
  font-weight: 700;
  position: relative;
  z-index: 2;
}

.sobre-cta {
  background: #1c2c34;
  text-align: center;
  padding: 100px 0 !important;
}

.sobre-cta h2 {
  font-size: 40px;
  color: #ffffff;
  margin-bottom: 16px;
}

.sobre-cta p {
  font-size: 18px;
  color: #cfeaf1;
  margin-bottom: 40px;
}

.sobre-cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}

.sobre-metricas {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 56px;
}

.sobre-metricas div {
  display: flex;
  flex-direction: column;
}

.sobre-metricas strong {
  font-size: 36px;
  color: #9fdceb;
  font-weight: 700;
  line-height: 1.1;
}

.sobre-metricas span {
  font-size: 14px;
  color: #cfeaf1;
  margin-top: 8px;
  font-weight: 500;
}

@media (max-width: 992px) {
  .sobre-hero-grid, 
  .sobre-pessoas-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  
  .sobre-hero-text p {
    margin: 0 auto 32px;
  }

  .sobre-hero-actions {
    justify-content: center;
  }

  .sobre-pessoas-grid {
    display: flex;
    flex-direction: column-reverse;
  }

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

  .sobre-metricas {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .oque-fazemos-grid {
    grid-template-columns: 1fr;
  }
  
  .sobre-cta h2 {
    font-size: 32px;
  }
}

.meb-blog-hero {
  background: linear-gradient(180deg, #23343d, #0f1f27);
  padding: 100px 0 80px;
  text-align: center;
  color: #ffffff;
}

.meb-blog-hero h1 {
  font-size: 48px;
  margin-bottom: 16px;
  line-height: 1.15;
}

.meb-blog-hero p {
  font-size: 18px;
  color: #cfeaf1;
}

.meb-blog-hero p span {
  color: #9fdceb;
  font-weight: 700;
}

.meb-blog-list {
  padding: 80px 0;
  background: #f4f6f8;
}

.meb-blog-header {
  margin-bottom: 40px;
  display: flex;
  justify-content: flex-end;
}

.meb-post-hero {
  background: #f4fbfd;
  padding: 80px 0 60px;
  text-align: center;
  border-bottom: 1px solid #e4eef5;
}

.meb-post-hero h1 {
  font-size: 40px;
  color: #0d2b45;
  line-height: 1.2;
  max-width: 900px;
  margin: 0 auto 16px;
}

.meb-post-meta {
  font-size: 15px;
  color: #6b7c86;
  font-weight: 500;
}

.meb-post-content {
  padding: 60px 0 80px;
  background: #ffffff;
}

.meb-post-thumb img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 48px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.meb-post-text {
  max-width: 800px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.8;
  color: #3a4a52;
}

.meb-post-text h2, 
.meb-post-text h3 {
  color: #0d2b45;
  margin: 40px 0 20px;
  line-height: 1.3;
}

.meb-post-text p {
  margin-bottom: 24px;
}

.meb-post-text img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 32px 0;
}

.meb-post-text a {
  color: #9fdceb;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(159, 220, 235, 0.5);
  transition: all 0.2s ease;
}

.meb-post-text a:hover {
  border-bottom-color: #9fdceb;
  color: #0d2b45;
}

.meb-post-text ul, 
.meb-post-text ol {
  margin-bottom: 24px;
  padding-left: 24px;
}

.meb-post-text li {
  margin-bottom: 12px;
}

.meb-related {
  background: #f9fafb;
  padding: 80px 0;
  border-top: 1px solid #e4eef5;
}

.meb-related h3 {
  font-size: 32px;
  color: #0d2b45;
  margin-bottom: 40px;
  text-align: center;
}

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

.meb-related-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none !important;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.meb-related-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.meb-related-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.meb-related-card h4 {
  padding: 24px;
  font-size: 18px;
  color: #0d2b45 !important;
  line-height: 1.4;
  margin: 0;
  text-decoration: none !important;
}

@media (max-width: 992px) {
  .meb-related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .meb-post-hero h1 {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .meb-related-grid {
    grid-template-columns: 1fr;
  }
  .meb-blog-hero h1 {
    font-size: 36px;
  }
}