/* ==========================================================================
   SOBRE — imagem ocupa a coluna toda + CTA "Falar comigo" em VERDE
   ========================================================================== */

.about-split {
  background: #3D76BB;
  padding-block: clamp(32px, 6vw, 80px);
}

.about-split__grid {
  display: grid;
  gap: clamp(20px, 3vw, 36px);
  align-items: stretch; /* colunas com a mesma altura */
}

/* ===== Coluna da IMAGEM — preencher 100% da coluna ===== */
.about-split__media {
  display: grid;
  align-items: stretch;
  justify-items: stretch;
  min-height: 100%;
  min-width: 0; /* evita overflow e permite encolher */
}

.about-photo {
  margin: 0;
  position: relative;
  width: 100%;
  height: 100%;
}

/* sem moldura/gradiente */
.about-photo::before { content: none !important; }

/* a imagem cobre toda a área da coluna */
.about-photo img {
  display: block;
  width: 100%;
  height: 100%;               /* chave para preencher tudo */
  object-fit: cover;
  object-position: center;
  max-width: none;
  max-height: 650px;
  border: none !important;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0,0,0,.22);
}

/* ===== Coluna de TEXTO ===== */
.about-slab {
  background: transparent !important;
  color: #ffffff;
  border-radius: 0;
  padding: clamp(22px, 4vw, 44px); /* dá folga, inclusive à direita */
  display: grid;
  align-content: start;
  gap: clamp(10px, 1.8vw, 18px);
  min-width: 0; /* permite o texto encolher sem estourar */
}

.about-bar {
  display: block;
  height: 6px;
  width: clamp(260px, 52%, 560px);
  background: var(--green, #95C93D);
  margin-bottom: clamp(14px, 2.4vw, 22px);
  border-radius: 3px;
}

.about-heading {
  margin: 0;
  color: #fff;
  font-weight: 900;
  line-height: .9;
  letter-spacing: -0.02em;
  font-size: clamp(2.8rem, 10vw, 6rem);
  text-transform: uppercase;
}

.about-subtitle {
  margin: .2rem 0 .6rem 0;
  color: #f6f8ff;
  font-weight: 300;
  font-size: clamp(1.05rem, 2.2vw, 1.45rem);
}

.about-body p {
  color: #eef3ff;
  font-size: 1rem;
  line-height: 2;
  margin: 0 0 10px 0;
}

/* ===== Lista (simples, sem colunas de texto!) ===== */
.about-list {
  margin: 10px 0 6px 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.about-list li{
  display: flex;                 /* ícone + bloco de texto */
  align-items: flex-start;
  gap: 10px;
  color: #eef3ff;
  min-width: 0;                  /* deixa o item encolher */
  flex-wrap: nowrap;             /* não precisa quebrar em novas linhas de flex */
}
.about-list svg{
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  fill: none;
  stroke: var(--green, #95C93D);
  stroke-width: 2.5;
  margin-top: 2px;
}
/* TEXTO todo do <li> fica em um único item flex */
.about-list .li-text{
  display: block;
  flex: 1 1 auto;               /* ocupa o resto e quebra normal */
  min-width: 0;
  overflow-wrap: anywhere;      /* evita espaços estranhos e quebra palavras longas */
  hyphens: auto;
  text-wrap: pretty;            /* browsers modernos */
}

/* ===== Botões ===== */
.actions.actions--about {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: clamp(24px, 3.2vw, 42px);
  justify-content: flex-start;
}

/* Base do botão (mantida) */
.about-split a.animated-button{
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border: 0;
  font-size: 16px;
  background-color: #f4f8ff;
  color: #1f387e;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0,0,0,.15);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.about-split a.animated-button svg{
  position: relative !important;
  width: 18px; height: 18px;
  stroke: currentColor; fill: none !important; margin-left: 4px;
}
.about-split a.animated-button .arr-1{ display:inline }
.about-split a.animated-button .arr-2,
.about-split a.animated-button .circle{ display:none !important }
.about-split a.animated-button:hover{
  filter: brightness(1.03);
  box-shadow: 0 10px 26px rgba(0,0,0,.18);
  transform: translateY(-1px);
}

/* ===== Override: "Falar comigo" em VERDE ===== */
.about-split a.animated-button.animated-button--alt,
#index-sobre-cta2{
  --btn-bg: var(--green, #95C93D);
  --btn-fg: #0f204f;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid color-mix(in srgb, var(--green) 80%, #000 20%);
  box-shadow: 0 10px 28px rgba(149,201,61,.32);
}
.about-split a.animated-button.animated-button--alt:hover,
#index-sobre-cta2:hover{
  filter: brightness(1.05);
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(149,201,61,.36);
}
.about-split a.animated-button.animated-button--alt:active,
#index-sobre-cta2:active{
  transform: translateY(0);
  filter: brightness(0.98);
}
.about-split a.animated-button.animated-button--alt:focus-visible,
#index-sobre-cta2:focus-visible{
  outline: 3px solid color-mix(in srgb, var(--green) 60%, #fff 40%);
  outline-offset: 3px;
  border-radius: 12px;
}
.about-split a.animated-button.animated-button--alt svg,
#index-sobre-cta2 svg{ stroke: currentColor; }

/* ===== ≤499px — layout compacto ===== */
@media (max-width: 499px){
  #index-sobre-subtitle{ display:none !important; }
  .about-split__media{ display:none !important; }

  #index-sobre-body{
    display:grid;
    grid-template-columns:auto minmax(0,1fr);
    grid-template-areas:
      "media lead"
      "list  list"
      "acts  acts";
    column-gap:10px;
    row-gap:12px;
    align-items:center;
    min-width:0;
  }

  #index-sobre-body::before{
    content:"";
    grid-area:media;
    display:block;
    width:clamp(100px,34vw,150px);
    aspect-ratio:3/4;
    border-radius:14px;
    background:url("/assets/thiago2.jpeg") center 18% / cover no-repeat;
    box-shadow:0 6px 16px rgba(0,0,0,.16);
  }

  #index-sobre-lead{
    grid-area:lead;
    align-self:center;
    text-align:justify;
    text-justify:inter-word;
    font-size:0.8rem !important;
    line-height:1.6 !important;
    min-width:0;
  }

  #index-sobre-list{ grid-area:list; margin:0; min-width:0; }
  .about-list{ gap:6px; }
  .about-list li{
    font-size:0.70rem !important;
    line-height:1.45 !important;
  }

  #index-sobre-actions{ grid-area:acts; display:grid; grid-template-columns:1fr 1fr; gap:8px; }
  #index-sobre-actions .animated-button{
    width:100%; padding:7px 10px !important; min-height:30px;
    font-size:0.70rem !important; line-height:1.1; border-radius:12px;
  }
  #index-sobre-actions .animated-button svg{ width:16px; height:16px; }
}

/* ===== 500px–979.98px ===== */
@media (min-width: 500px) and (max-width: 979.98px){
  .about-split__media{ display:grid !important; min-height:unset !important; }
  #index-sobre-body{ display:block !important; min-width:0; }
  #index-sobre-body::before{ content:none !important; }
  #index-sobre-subtitle{ display:block !important; }

  .about-photo{ width:100%; height:auto; }
  .about-photo img{
    display:block;
    width:70% !important;
    height:auto !important;
    max-height:clamp(660px, 70vw, 900px);
    object-fit:initial !important;
    aspect-ratio:auto !important;
    border-radius:18px;
    box-shadow:0 18px 40px rgba(0,0,0,.22);
  }

  #index-sobre-lead{
    font-size:clamp(.98rem, .8rem + .40vw, 1.12rem) !important;
    line-height:1.62 !important;
  }
  .about-list{ gap:clamp(8px, 1.6vw, 14px); }
  .about-list li{
    font-size:clamp(.92rem, .78rem + .35vw, 1.05rem) !important;
    line-height:1.5 !important;
  }

  #index-sobre-actions{
    display:grid; grid-template-columns:repeat(2, minmax(160px,1fr));
    gap:clamp(10px, 2.2vw, 16px);
  }
  #index-sobre-actions .animated-button{
    font-size:clamp(.82rem, .72rem + .25vw, 1rem) !important;
    padding:clamp(9px, 1.6vw, 12px) clamp(12px, 2.4vw, 18px) !important;
    min-height:clamp(32px, 4vw, 40px);
    width:100%;
  }
}

/* ===== ≥980px — duas colunas com mais espaço para o texto ===== */
@media (min-width: 980px){
  .about-split__grid{
    grid-template-columns: minmax(360px, 0.9fr) minmax(520px, 1.1fr);
    gap:clamp(18px, 2.4vw, 36px);
  }

  .about-photo img{
    width:100% !important;
    height:auto !important;
    max-height:clamp(760px, 70vw, 1000px);
    object-fit:initial !important;
    aspect-ratio:auto !important;
    border-radius:18px;
  }

  #index-sobre-lead{ font-size:clamp(1.05rem, .9rem + .35vw, 1.25rem) !important; }
  .about-list li{ font-size:clamp(1rem, .9rem + .25vw, 1.12rem) !important; line-height:1.6 !important; }

  #index-sobre-actions{ display:flex; gap:12px; flex-wrap:wrap; justify-content:flex-start; }
  #index-sobre-actions .animated-button{
    font-size:clamp(.95rem, .85rem + .25vw, 1rem) !important;
    padding:12px 20px !important;
  }
}
