/* ===================================================
TABLET (até 768px)
=================================================== */
@media (max-width: 768px){

  /* ---------- HERO ---------- */
  .hero{
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 36px;
    padding: 100px 0 10px;
  }

  .hero-right{
    order: 0;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .hero-left{
    order: 1;
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    text-align: left;
  }
  .avatar-wrap{
    width: min(360px, 84vw);
    aspect-ratio: 1/1;
    border-radius: 50%; 
    overflow: hidden;
    height: auto;
  }
  .avatar{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translateY(-120px) scale(1.30);
    transition: none;
  }
  .chip{
    font-size: 11px;
    padding: 7px 10px;
    max-width: 55vw;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .chip-top{ top: 10%; left: 6%; }
  .chip-right{ top: 52%; right: -4%; }
  .hero-kicker{
    font-size: 18px;
    margin: 0;
  }
  .hero-title{
    font-size: clamp(30px, 9vw, 40px);
    line-height: 1.05;
    margin: 6px 0;
  }
  .hero-role{
    font-size: 20px;
    margin-bottom: 10px;
  }
  .hero-desc{
    font-size: 16px;
    line-height: 1.7;
  }
  .hero-cta{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
    justify-content: flex-start;
  }
  /* ---------- EDUCAÇÃO ---------- */
  .edu-grid{
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .edu-card{
    width: 100%;
  }
  /* ---------- CONTATO ---------- */
  .contact-card{
    padding: 44px 18px;
  }
  .contact-card h2{
    font-size: 28px;
    margin-bottom: 12px;
    line-height: 1;
  }
  .contact-btn{
    width: min(420px, 100%);
  }
}
/* ===================================================
MOBILE (até 480px)
=================================================== */
@media (max-width: 480px){
  /* ---------- HERO ---------- */
  .hero{
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .avatar-wrap{
    width: min(320px, 84vw);
    margin: 0 auto;
  }
  .hero-left{
    margin-top: -70px;
  }
  .hero-kicker{
    font-size: 16px;
  }
  .hero-title{
    font-size: clamp(36px, 10vw, 52px);
    line-height: 1.05;
  }
  .hero-role{
    font-size: 20px;
    margin-top: 6px;
  }
  .hero-desc{
    font-size: 16px;
    line-height: 1.8;
  }
  .btn{
    font-size: 15px;
    padding: 14px 18px;
  }
  .chip-bottom{
    bottom: 25%;
    left: 10%;
  }
  .chip-right{
    top: 60%;
    right: -3%;
  }
  .chip-top{
    top: 15%;
    left: 6%;
  }
  /* ---------- EDUCAÇÃO ---------- */
  .edu-card{
    padding: 16px;
    display: grid;
    grid-template-columns: 1fr;
    margin: -2px;
  }
  .edu-date{
    text-align: left;
    white-space: normal;
    margin: 2px;
  }
  .edu-link{
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .educacao .section-head h2{
    font-size: 32px;
    text-align: center;
    line-height: 1.2;
  }
  /* ---------- CONTATO ---------- */
  .contact-card h2::after{
    width: 0;
  }
}
/* ===================================================
  ESTILO GLOBAL (fora das medias)
=================================================== */
.contact-card h2::after{
  content:"";
  display:block;
  width: 230px;
  height: 2px;
  background: var(--green);
  margin: 18px auto 10px;
  border-radius: 999px;
}