/* ================= ABOUT SECTION ================= */
.about-section{
  width:100%;
  padding:80px 0 70px;
  background:#f6fbff;
  color:#092D69;
  overflow:hidden;
}

.about-inner{
  width:100%;
  max-width:90%;
  margin:0 auto;
}

/* ================= TOPO ================= */
.about-header{
  max-width:100%;
  margin-bottom:80px;
  text-align:left;

  opacity:0;
  transform:translateY(40px);

  transition:
    opacity .9s ease,
    transform .9s cubic-bezier(.22,.61,.36,1);
}

.about-section.show-header .about-header{
  opacity:1;
  transform:translateY(0);
}

/* SUBTÍTULO */
.about-subtitle{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 18px;
  border-radius:30px;
  background:rgba(72,197,243,.15);
  color:#48C5F3;
  font-size:13px;
  font-weight:700;
  letter-spacing:2px;
  text-transform:uppercase;
  margin-bottom:20px;
}

/* TÍTULO */
.about-title{
  font-size:48px;
  font-weight:900;
  line-height:1.2;
  margin-bottom:24px;
  white-space:nowrap;
}

/* DESCRIÇÃO */
.about-desc{
  font-size:18px;
  line-height:1.7;
  max-width:800px;
  opacity:.9;
}

/* ================= CONTEÚDO ================= */
.about-content{
  display:grid;
  grid-template-columns:1.6fr 1fr;
  gap:80px;
  align-items:flex-start;
}

/* ================= TEXTO (OUR MISSION) ================= */
.about-text{
  max-width:860px;

  opacity:0;
  transform:translateY(40px);

  transition:
    opacity .9s ease,
    transform .9s cubic-bezier(.22,.61,.36,1);
}

.about-section.show-text .about-text{
  opacity:1;
  transform:translateY(0);
}

.about-text h3{
  font-size:30px;
  font-weight:900;
  margin-bottom:20px;
}

.about-text p{
  font-size:17px;
  line-height:1.8;
  margin-bottom:18px;
}

/* ================= CARDS (DIREITA) ================= */
.about-cards{
  display:grid;
  gap:20px;
}

.about-card{
  display:flex;
  align-items:center;
  gap:14px;
  background:#fff;
  padding:24px 26px;
  border-radius:18px;
  box-shadow:0 10px 30px rgba(0,0,0,.08);

  opacity:0;
  transform:translateX(60px);

  transition:
    opacity .7s ease,
    transform .7s cubic-bezier(.22,.61,.36,1),
    box-shadow .35s ease;
}

/* cards aparecem */
.about-section.show-cards .about-card{
  opacity:1;
  transform:translateX(0);
}

/* delay progressivo (impact) */
.about-card:nth-child(1){ transition-delay:.15s; }
.about-card:nth-child(2){ transition-delay:.30s; }
.about-card:nth-child(3){ transition-delay:.45s; }
.about-card:nth-child(4){ transition-delay:.60s; }

/* hover */
.about-card:hover{
  transform:translateY(-4px);
  box-shadow:
    0 18px 40px rgba(9,45,105,.15),
    0 0 0 1px rgba(72,197,243,.25),
    0 0 25px rgba(72,197,243,.25);
}

/* ================= RESPONSIVO ================= */
@media (max-width:900px){
  .about-content{
    grid-template-columns:1fr;
    gap:50px;
  }

  .about-title{
    font-size:38px;
    white-space:normal;
  }

  .about-text,
  .about-desc{
    max-width:100%;
  }

  .about-card{
    transform:translateY(30px);
  }

  .about-section.show-cards .about-card{
    transform:translateY(0);
  }
}
