  .section-ceo {
    background: #ffffff;
    padding: 90px 80px;
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
  }

  /* ── LEFT ── */
  .ceo-left {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .ceo-label {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #3a6b3a;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }

  .ceo-label::before {
    content: '';
    display: block;
    width: 36px;
    height: 2px;
    background: #3a6b3a;
  }

  .ceo-title {
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    font-weight: 800;
    color: #1a2e1a;
    line-height: 1.05;
  }

  .ceo-title .highlight {
    color: #2d8a4e;
  }

  .ceo-author {
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .ceo-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #e6f0ec;
    font-weight: 700;
    font-size: 0.95rem;
    color: #2d8a4e;
    flex-shrink: 0;
  }

    .ceo-avatar img{
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #e6f0ec;
    font-weight: 700;
    font-size: 0.95rem;
    color: #2d8a4e;
    flex-shrink: 0;
  }

  .ceo-author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .ceo-author-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: #1a2e1a;
  }

  .ceo-author-role {
    font-size: 0.82rem;
    color: #7a8f7a;
  }

  /* ── RIGHT ── */
  .ceo-right {
    display: flex;
    flex-direction: column;
    position: relative;
  }

  .ceo-quote-mark {
    font-family: Georgia, serif;
    font-size: 7rem;
    line-height: 0.6;
    color: #e2ece5;
    user-select: none;
    margin-bottom: 8px;
  }

  .ceo-text {
    font-size: 1rem;
    color: #3a4e3a;
  }

  .ceo-text-highlight {
    font-size: 0.95rem;
    color: #2d8a4e;
    font-style: italic;
  }

  /* RESPONSIVIDADE */
  @media (max-width: 768px) {
    .section-ceo {
      grid-template-columns: 1fr;
      padding: 60px 24px;
      gap: 40px;
    }

    .ceo-quote-mark {
      font-size: 5rem;
    }
  }