/*
Theme Name: Dr. Alexandre Barão Acuña
Theme URI: https://alexandreacuna.com.br/
Author: Iluminare Soluções em TI
Description: Tema personalizado baseado no HTML fornecido, com blog dinâmico via WordPress.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: alexandre-acuna
*/

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

  body {
    font-family: 'Segoe UI', Arial, sans-serif;
    color: #333;
  }

  /* === TOKENS === */
  :root {
    --azul:        #1e4a5f;
    --azul-escuro: #152f3e;
    --verde:       #7ab32e;
    --verde-claro: #8fc93a;
    --branco:      #ffffff;
    --cinza-claro: #f5f7f9;
    --cinza-borda: #dde8ef;
    --cinza-texto: #444;
    --cinza-medio: #777;
  }

  /* ========================================================
     HERO — SEÇÃO INICIAL
  ======================================================== */
  .sec-hero {
    background: var(--azul-escuro);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
  }

  .hero-topbar {
    background: var(--verde);
    text-align: center;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 2;
  }

  .hero-topbar a { color: #fff; text-decoration: underline; }

  .hero-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 60px;
    position: relative;
    z-index: 2;
  }

  .hero-nav .logo {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.5px;
    line-height: 1.2;
  }

  .hero-nav .logo span { color: var(--verde); }
  .hero-nav .logo small {
    display: block;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,.5);
    margin-top: 2px;
  }

  .logo-img {
    height: 52px;
    width: auto;
    display: block;
    object-fit: contain;
    border-radius: 4px;
  }

  .logo-fallback {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.5px;
    line-height: 1.2;
  }

  .hero-nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
  }

  .hero-nav-links a {
    font-size: 13px;
    color: rgba(255,255,255,.75);
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: color .2s;
  }

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

  .btn-nav {
    background: var(--verde) !important;
    color: #fff !important;
    padding: 10px 22px !important;
    border-radius: 6px !important;
    font-weight: 700 !important;
  }

  .hero-body {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 60px 60px;
    gap: 40px;
    position: relative;
    z-index: 2;
  }

  .hero-texto { flex: 1; max-width: 580px; }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(122,179,46,.15);
    border: 1px solid rgba(122,179,46,.3);
    color: var(--verde);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 20px;
    margin-bottom: 24px;
  }

  .hero-badge svg { fill: var(--verde); width: 14px; height: 14px; }

  .hero-texto h1 {
    font-size: 46px;
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
  }

  .hero-texto h1 span { color: var(--verde); }

  .hero-texto p {
    font-size: 17px;
    color: rgba(255,255,255,.72);
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 500px;
  }

  .hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 44px;
  }

  .btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--verde);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    padding: 15px 32px;
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: background .2s;
  }

  .btn-hero-primary svg { fill: #fff; width: 18px; height: 18px; }
  .btn-hero-primary:hover { background: var(--verde-claro); }

  .btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    padding: 15px 28px;
    border-radius: 8px;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,.25);
    transition: border-color .2s, background .2s;
  }

  .btn-hero-secondary svg { fill: rgba(255,255,255,.7); width: 18px; height: 18px; }
  .btn-hero-secondary:hover { border-color: var(--verde); }

  .hero-selos {
    display: flex;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap;
  }

  .hero-selo { display: flex; align-items: center; gap: 8px; }

  .selo-icone {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .selo-icone svg { fill: var(--verde); width: 18px; height: 18px; }

  .selo-texto strong { display: block; font-size: 14px; font-weight: 700; color: #fff; }
  .selo-texto span   { display: block; font-size: 11px; color: rgba(255,255,255,.5); }
  .selo-divider      { width: 1px; height: 32px; background: rgba(255,255,255,.12); }

  .hero-foto { flex-shrink: 0; width: 420px; position: relative; }

  .hero-foto-wrap {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: visible;
    min-height: 520px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
  }

  .hero-foto-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
  }

  .foto-placeholder {
    width: 100%;
    min-height: 520px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: rgba(255,255,255,.25);
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 20px;
  }

  .foto-placeholder svg { fill: rgba(255,255,255,.1); width: 64px; height: 64px; }

  .hero-card-crm {
    position: absolute;
    bottom: 24px;
    left: -24px;
    background: #fff;
    border-radius: 12px;
    padding: 14px 18px;
    box-shadow: 0 8px 32px rgba(0,0,0,.3);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 210px;
    z-index: 3;
  }

  .crm-icone {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--azul);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .crm-icone svg { fill: #fff; width: 20px; height: 20px; }
  .crm-info strong { display: block; font-size: 13px; font-weight: 700; color: var(--azul-escuro); }
  .crm-info span   { display: block; font-size: 11px; color: var(--cinza-medio); margin-top: 2px; }

  .hero-card-google {
    position: absolute;
    top: 24px;
    right: -24px;
    background: #fff;
    border-radius: 12px;
    padding: 12px 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,.3);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 3;
  }

  .google-star-ico { font-size: 22px; line-height: 1; }
  .google-card-info strong { display: block; font-size: 18px; font-weight: 800; color: var(--azul-escuro); line-height: 1.1; }
  .google-card-info span   { display: block; font-size: 11px; color: var(--cinza-medio); }

  .hero-pilares {
    background: rgba(0,0,0,.2);
    border-top: 1px solid rgba(255,255,255,.07);
    padding: 0 60px;
    display: flex;
    position: relative;
    z-index: 2;
  }

  .pilar-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 32px;
    border-right: 1px solid rgba(255,255,255,.07);
  }

  .pilar-item:first-child { padding-left: 0; }
  .pilar-item:last-child  { border-right: none; }

  .pilar-ico {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(122,179,46,.15);
    border: 1px solid rgba(122,179,46,.25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .pilar-ico svg { fill: var(--verde); width: 22px; height: 22px; }
  .pilar-texto strong { display: block; font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 2px; }
  .pilar-texto span   { font-size: 12px; color: rgba(255,255,255,.5); line-height: 1.4; }

  .hero-bg-dec {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
  }

  @media (max-width: 900px) {
    .hero-body { flex-direction: column; padding: 32px 24px 40px; }
    .hero-foto  { width: 100%; max-width: 360px; margin: 0 auto; }
    .hero-nav   { padding: 18px 24px; }
    .hero-nav-links { display: none; }
    .hero-texto h1  { font-size: 32px; }
    .hero-pilares   { flex-direction: column; padding: 0 24px; }
    .pilar-item     { border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); padding: 18px 0; }
    .pilar-item:last-child { border-bottom: none; }
    .hero-card-crm    { left: 0; bottom: 10px; }
    .hero-card-google { right: 0; top: 10px; }
  }

  /* ========================================================
     DOBRA 1 — DEPOIMENTOS
  ======================================================== */
  .sec-depoimentos {
    background: var(--cinza-claro);
    padding: 72px 40px;
    text-align: center;
  }

  .eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--verde);
    margin-bottom: 10px;
    margin-right: -3px;
  }

  .sec-depoimentos h2 {
    font-size: 30px;
    font-weight: 700;
    color: var(--azul-escuro);
    margin-bottom: 8px;
  }

  .sec-depoimentos .sub {
    font-size: 17px;
    color: var(--cinza-medio);
    margin-bottom: 44px;
  }

  .dep-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    max-width: 960px;
    margin: 0 auto;
  }

  .dep-card {
    background: var(--branco);
    border-radius: 14px;
    padding: 28px 22px;
    border: 1px solid var(--cinza-borda);
    text-align: left;
    display: flex;
    flex-direction: column;
  }

  .dep-card .aspas {
    font-family: Georgia, serif;
    font-size: 52px;
    line-height: 1;
    color: var(--verde);
    margin-bottom: 8px;
  }

  .dep-card p {
    font-size: 15px;
    color: var(--cinza-texto);
    line-height: 1.75;
    flex: 1;
    font-style: italic;
    margin-bottom: 20px;
  }

  .dep-autor {
    display: flex;
    align-items: center;
    gap: 11px;
  }

  .avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--azul);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .autor-info strong { display: block; font-size: 13px; color: var(--azul-escuro); }
  .autor-info span   { font-size: 12px; color: var(--cinza-medio); }
  .estrelas { color: #f5a623; font-size: 12px; margin-bottom: 2px; }

  .google-nota {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
  }

  .google-logo {
    height: 22px;
    width: 22px;
    display: block;
  }

  .nota-num {
    font-size: 26px;
    font-weight: 800;
    color: var(--azul-escuro);
    line-height: 1;
  }

  .nota-sub {
    font-size: 13px;
    color: var(--cinza-medio);
    border-left: 1px solid var(--cinza-borda);
    padding-left: 10px;
  }


  /* ========================================================
     DOBRA 2 — ANOS DE CAMINHADA + VÍDEO
  ======================================================== */
  .sec-video {
    background: var(--azul-escuro);
    padding: 72px 40px;
    display: flex;
    gap: 60px;
    align-items: center;
    justify-content: center;
  }

  .video-left  { flex: 1; max-width: 440px; text-align: center; }
  .video-right { flex: 1; max-width: 440px; }

  .video-left .eyebrow { color: var(--verde); }

  .video-left h2 {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 14px;
  }

  .video-left h2 span { color: var(--verde); }

  .video-left p {
    font-size: 16px;
    color: rgba(255,255,255,.72);
    line-height: 1.75;
    margin-bottom: 32px;
  }

  .numeros {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .num-item {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 10px;
    padding: 18px 14px;
    text-align: center;
  }

  .num-item strong {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: var(--verde);
    line-height: 1.1;
  }

  .num-item span {
    display: block;
    font-size: 12px;
    color: rgba(255,255,255,.55);
    margin-top: 4px;
  }

  .video-frame {
    width: 100%;
    /*aspect-ratio: 16/9;*/
    background: rgba(255,255,255,.05);
    border: 2px solid rgba(122,179,46,.4);
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    cursor: pointer;
  }

  /* substitua o conteúdo interno pelo iframe quando tiver o link */
  .video-frame iframe {
    width: 100%;
  
    border: none;
    border-radius: 12px;
  }

  .play-btn {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: var(--verde);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
  }

  .play-btn:hover { background: var(--verde-claro); }

  .play-btn svg { fill: #fff; width: 26px; height: 26px; margin-left: 4px; }

  .video-label {
    font-size: 13px;
    color: rgba(255,255,255,.5);
    letter-spacing: .5px;
  }

  .video-hint {
    font-size: 11px;
    color: rgba(122,179,46,.7);
    margin-top: -6px;
  }


  /* ========================================================
     DOBRA 3 — PROBLEMAS DOS CLIENTES
  ======================================================== */
  .sec-problemas {
    background: var(--branco);
    padding: 72px 40px;
    text-align: center;
  }

  .sec-problemas h2 {
    font-size: 30px;
    font-weight: 700;
    color: var(--azul-escuro);
    margin-bottom: 8px;
  }

  .sec-problemas .sub {
    font-size: 17px;
    color: var(--cinza-medio);
    max-width: 560px;
    margin: 0 auto 44px;
    line-height: 1.6;
  }

  .prob-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 960px;
    margin: 0 auto 36px;
  }

  .prob-card {
    background: var(--cinza-claro);
    border-radius: 12px;
    padding: 26px 20px;
    border: 1px solid var(--cinza-borda);
    border-top: 3px solid var(--verde);
    text-align: left;
  }

  .prob-icon {
    width: 48px;
    height: 48px;
    background: var(--azul);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
  }

  .prob-icon svg { fill: #fff; width: 24px; height: 24px; }

  .prob-card h3 {
    font-size: 19px;
    font-weight: 700;
    color: var(--azul-escuro);
    margin-bottom: 10px;
  }

  .prob-card p {
    font-size: 16px;
    color: var(--cinza-medio);
    line-height: 1.7;
  }

  .prob-cta { font-size: 17px; color: var(--cinza-medio); }
  .prob-cta strong { color: var(--azul); }


  /* ========================================================
     DOBRA 3.5 — 10 ELOS DA CORRENTE DA SAÚDE
  ======================================================== */
  .sec-elos {
    background: var(--cinza-claro);
    padding: 80px 40px;
    text-align: center;
  }

  .sec-elos h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--azul-escuro);
    margin-bottom: 18px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
  }

  .sec-elos h2 span { color: var(--verde); }

  .sec-elos .sub {
    font-size: 17px;
    color: var(--cinza-medio);
    max-width: 680px;
    margin: 0 auto 36px;
    line-height: 1.75;
  }

  .elos-quote {
    max-width: 720px;
    margin: 0 auto 48px;
    text-align: left;
    background: var(--branco);
    border: 1px solid var(--cinza-borda);
    border-left: 4px solid var(--verde);
    border-radius: 12px;
    padding: 28px 32px;
  }

  .elos-quote .aspas {
    font-family: Georgia, serif;
    font-size: 52px;
    line-height: 1;
    color: var(--verde);
    margin-bottom: 6px;
    display: block;
  }

  .elos-quote p {
    font-size: 17px;
    font-style: italic;
    color: var(--azul-escuro);
    line-height: 1.75;
  }

  .elos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 920px;
    margin: 0 auto 44px;
    text-align: left;
  }

  .elo-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--branco);
    border: 1px solid var(--cinza-borda);
    border-radius: 12px;
    padding: 18px 20px;
  }

  .elo-num {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--verde);
    color: #fff;
    font-weight: 800;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .elo-texto {
    font-size: 16px;
    color: var(--cinza-texto);
    line-height: 1.55;
    padding-top: 5px;
  }

  .elos-final {
    max-width: 720px;
    margin: 0 auto;
    font-size: 17px;
    color: var(--cinza-medio);
    line-height: 1.8;
  }

  .elos-final strong { color: var(--azul-escuro); }


  /* ========================================================
     DOBRA 4 — AGENDAR CONSULTA
  ======================================================== */
  .sec-agendar {
    background: var(--azul);
    padding: 80px 40px;
    text-align: center;
    position: relative;
  }

  .sec-agendar::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--verde);
  }

  .badge-pill {
    display: inline-block;
    background: rgba(122,179,46,.15);
    color: var(--verde);
    border: 1px solid rgba(122,179,46,.35);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 20px;
    margin-bottom: 20px;
  }

  .sec-agendar h2 {
    font-size: 34px;
    font-weight: 800;
    color: #fff;
    line-height: 1.25;
    max-width: 580px;
    margin: 0 auto 16px;
  }

  .sec-agendar h2 span { color: var(--verde); }

  .sec-agendar .intro {
    font-size: 17px;
    color: rgba(255,255,255,.72);
    max-width: 620px;
    margin: 0 auto 36px;
    line-height: 1.7;
  }

  .beneficios {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 38px;
  }

  .benef-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: rgba(255,255,255,.85);
  }

  .benef-item svg { fill: var(--verde); width: 18px; height: 18px; flex-shrink: 0; }

  .btn-agendar {
    display: inline-block;
    background: var(--verde);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    padding: 16px 44px;
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: background .2s;
  }

  .btn-agendar:hover { background: var(--verde-claro); }

  .sec-agendar .rodape-cta {
    margin-top: 14px;
    font-size: 12px;
    color: rgba(255,255,255,.35);
  }


  /* ========================================================
     DOBRA 5 — MENTORIA INDIVIDUAL
  ======================================================== */
  .sec-mentoria {
    background: var(--cinza-claro);
    padding: 72px 40px;
    display: flex;
    gap: 60px;
    align-items: center;
    justify-content: center;
  }

  .ment-left  { flex: 1; max-width: 440px; }
  .ment-right { flex: 1; max-width: 400px; }

  .ment-left .eyebrow { color: var(--verde); }

  .ment-left h2 {
    font-size: 30px;
    font-weight: 700;
    color: var(--azul-escuro);
    line-height: 1.3;
    margin-bottom: 14px;
  }

  .ment-left h2 span { color: var(--verde); }

  .ment-left p {
    font-size: 16px;
    color: var(--cinza-medio);
    line-height: 1.75;
    margin-bottom: 24px;
  }

  .ment-lista { list-style: none; margin-bottom: 32px; }

  .ment-lista li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    color: var(--cinza-texto);
    margin-bottom: 12px;
    line-height: 1.55;
  }

  .check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--verde);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
  }

  .check svg { fill: #fff; width: 12px; height: 12px; }

  .btn-mentoria {
    display: inline-block;
    background: var(--azul);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 36px;
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: background .2s;
  }

  .btn-mentoria:hover { background: var(--azul-escuro); }

  /* Card da mentoria */
  .ment-card {
    background: var(--branco);
    border-radius: 16px;
    border: 1px solid var(--cinza-borda);
    overflow: hidden;
  }

  .ment-card-head {
    background: var(--azul-escuro);
    padding: 28px 24px;
    text-align: center;
  }

  .ment-card-head h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
  }

  .ment-card-head p {
    color: rgba(255,255,255,.55);
    font-size: 13px;
  }

  .ment-card-body { padding: 8px 20px 20px; }

  .ment-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid #eef3f7;
    font-size: 14px;
    color: var(--cinza-texto);
  }

  .ment-item:last-child { border-bottom: none; }

  .ment-item-ic {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    background: #eaf4f0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .ment-item-ic svg { fill: var(--azul); width: 20px; height: 20px; }


  /* ========================================================
     DOBRA 6 — BLOG / CONTEÚDO
  ======================================================== */
  .sec-blog {
    background: var(--branco);
    padding: 80px 40px;
    text-align: center;
  }

  .sec-blog h2,
  .sec-blog .sub {
    text-align: center;
  }

  .sec-blog .sub {
    font-size: 17px;
    color: var(--cinza-medio);
    max-width: 560px;
    margin: 0 auto 48px;
    line-height: 1.7;
  }

  .blog-wrap {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 56px;
    max-width: 1160px;
    margin: 0 auto;
    align-items: start;
    text-align: left;
  }

  /* ---- Lista de posts (coluna esquerda, formato do site) ---- */
  .blog-post {
    padding-bottom: 32px;
    margin-bottom: 32px;
    border-bottom: 1px solid var(--cinza-borda);
  }

  .blog-post:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .blog-post h3 {
    font-size: 25px;
    font-weight: 800;
    color: #222;
    line-height: 1.3;
    margin-bottom: 14px;
  }

  .blog-post-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 13px;
    color: var(--cinza-medio);
    margin-bottom: 20px;
  }

  .blog-post-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .blog-post-meta svg { width: 14px; height: 14px; fill: var(--cinza-medio); flex-shrink: 0; }

  .blog-post-body {
    display: flex;
    gap: 24px;
    align-items: flex-start;
  }

  .blog-post-img {
    width: 280px;
    height: 176px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
  }

  .blog-post-text p {
    font-size: 15px;
    color: var(--cinza-texto);
    line-height: 1.7;
    margin-bottom: 16px;
  }

  .blog-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--cinza-claro);
    color: var(--azul-escuro);
    font-weight: 700;
    font-size: 14px;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    border: 1px solid var(--cinza-borda);
    transition: background .2s, color .2s, border-color .2s;
  }

  .blog-btn:hover { background: var(--verde); color: #fff; border-color: var(--verde); }

  /* ---- Sidebar: busca + categorias (coluna direita) ---- */
  .blog-sidebar-search {
    display: flex;
    margin-bottom: 40px;
  }

  .blog-sidebar-search input {
    flex: 1;
    padding: 13px 14px;
    border: 1px solid var(--cinza-borda);
    border-right: none;
    border-radius: 8px 0 0 8px;
    font-size: 14px;
    font-family: inherit;
    outline: none;
    color: var(--cinza-texto);
  }

  .blog-sidebar-search button {
    background: var(--azul-escuro);
    border: none;
    color: #fff;
    padding: 0 18px;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
  }

  .blog-sidebar-search button:hover { background: var(--azul); }
  .blog-sidebar-search button svg { width: 18px; height: 18px; fill: #fff; }

  .blog-sidebar h3 {
    font-size: 26px;
    font-weight: 800;
    color: var(--azul-escuro);
    margin-bottom: 8px;
  }

  .blog-cat-lista { list-style: none; }

  .blog-cat-lista li {
    border-bottom: 1px solid var(--cinza-borda);
  }

  .blog-cat-lista li:last-child { border-bottom: none; }

  .blog-cat-lista a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 0;
    font-size: 15px;
    color: #333;
    text-decoration: none;
    transition: color .2s;
  }

  .blog-cat-lista a:hover { color: var(--verde); }

  .blog-cat-lista svg { width: 16px; height: 16px; fill: var(--azul); flex-shrink: 0; }

  .blog-cat-count { color: var(--cinza-medio); }


  /* ========================================================
     RODAPÉ
  ======================================================== */
  .rodape {
    background: var(--azul-escuro);
    color: rgba(255,255,255,.65);
    padding: 60px 40px 0;
  }

  .rodape-topo {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
    max-width: 1160px;
    margin: 0 auto;
    padding-bottom: 44px;
    border-bottom: 1px solid rgba(255,255,255,.1);
  }

  .rodape-marca img {
    height: 44px;
    width: auto;
    display: block;
    margin-bottom: 16px;
  }

  .rodape-marca p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,.55);
    max-width: 280px;
    margin-bottom: 20px;
  }

  .rodape-social {
    display: flex;
    gap: 10px;
  }

  .rodape-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background .2s;
  }

  .rodape-social a:hover { background: var(--verde); }
  .rodape-social a svg { fill: #fff; width: 16px; height: 16px; }

  .rodape-col h4 {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 18px;
  }

  .rodape-col ul { list-style: none; }

  .rodape-col li { margin-bottom: 12px; }

  .rodape-col a {
    font-size: 14px;
    color: rgba(255,255,255,.6);
    text-decoration: none;
    transition: color .2s;
  }

  .rodape-col a:hover { color: var(--verde); }

  .rodape-contato li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: rgba(255,255,255,.6);
    line-height: 1.6;
  }

  .rodape-contato svg { fill: var(--verde); width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; }

  .rodape-baixo {
    max-width: 1160px;
    margin: 0 auto;
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 12.5px;
    color: rgba(255,255,255,.4);
  }

  .rodape-baixo a { color: rgba(255,255,255,.4); text-decoration: underline; }


  /* ========================================================
     RESPONSIVO (larguras < 768px)
  ======================================================== */
  @media (max-width: 768px) {
    .dep-grid,
    .prob-grid,
    .elos-grid { grid-template-columns: 1fr; }

    .sec-video,
    .sec-mentoria {
      flex-direction: column;
      gap: 40px;
      padding: 52px 20px;
    }

    .video-left, .video-right,
    .ment-left,  .ment-right  { max-width: 100%; }

    .numeros { grid-template-columns: 1fr 1fr; }

    .sec-depoimentos,
    .sec-problemas,
    .sec-agendar,
    .sec-blog { padding: 52px 20px; }

    .sec-agendar h2 { font-size: 26px; }

    .beneficios { flex-direction: column; align-items: center; gap: 14px; }

    .blog-wrap { grid-template-columns: 1fr; gap: 40px; }
    .blog-post-body { flex-direction: column; }
    .blog-post-img { width: 100%; height: auto; aspect-ratio: 16/10; }

    .rodape-topo { grid-template-columns: 1fr 1fr; padding-bottom: 32px; }
    .rodape { padding: 44px 20px 0; }
    .rodape-baixo { flex-direction: column; text-align: center; padding: 20px 0; }
  }

/* === WORDPRESS / BLOG DINÂMICO === */
.blog-post h3 a { color: inherit; text-decoration: none; }
.blog-post h3 a:hover { color: var(--verde); }
.blog-post-body > a { display: block; flex-shrink: 0; }
.blog-post-body > a .blog-post-img { display: block; }

/* Single post */
.single-post-page {
  background: var(--cinza-claro);
  padding: 72px 20px;
}
.single-post-container {
  max-width: 900px;
  margin: 0 auto;
  background: var(--branco);
  border: 1px solid var(--cinza-borda);
  border-radius: 16px;
  padding: 44px;
}
.single-post-title {
  color: var(--azul-escuro);
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 16px;
}
.single-post-meta {
  color: var(--cinza-medio);
  font-size: 14px;
  margin-bottom: 30px;
}
.single-post-featured {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 32px;
}
.single-post-content {
  color: var(--cinza-texto);
  font-size: 17px;
  line-height: 1.85;
}
.single-post-content h2,
.single-post-content h3,
.single-post-content h4 { color: var(--azul-escuro); margin: 32px 0 14px; }
.single-post-content p { margin: 0 0 20px; }
.single-post-content ul,
.single-post-content ol { margin: 0 0 20px 24px; }
.single-post-content a { color: var(--azul); }
.single-post-content img { max-width: 100%; height: auto; border-radius: 10px; }
.single-post-back { margin-top: 36px; }

.archive-page { background: var(--cinza-claro); padding: 72px 20px; }
.archive-container { max-width: 1160px; margin: 0 auto; }
.archive-title { color: var(--azul-escuro); font-size: 36px; margin-bottom: 36px; }
.archive-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 56px; align-items: start; }
.archive-post { background: var(--branco); padding: 28px; border: 1px solid var(--cinza-borda); border-radius: 14px; margin-bottom: 22px; }
.archive-post h2 { font-size: 25px; margin-bottom: 10px; }
.archive-post h2 a { color: var(--azul-escuro); text-decoration: none; }
.archive-post h2 a:hover { color: var(--verde); }
.archive-post .blog-post-img { width: 220px; height: 140px; }
.pagination { display:flex; gap:8px; flex-wrap:wrap; margin-top:30px; }
.pagination .page-numbers { padding:8px 12px; border:1px solid var(--cinza-borda); border-radius:6px; text-decoration:none; color:var(--azul-escuro); }
.pagination .current { background:var(--verde); color:#fff; border-color:var(--verde); }

.search-page-title { color: var(--azul-escuro); font-size: 32px; margin-bottom: 30px; }

@media (max-width: 768px) {
  .single-post-container { padding: 28px 20px; }
  .single-post-title { font-size: 30px; }
  .archive-grid { grid-template-columns: 1fr; gap: 40px; }
  .archive-post .blog-post-body { flex-direction: column; }
  .archive-post .blog-post-img { width: 100%; height: auto; aspect-ratio: 16/10; }
}

