/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Nunito', sans-serif;
}

body {
  background: #f9fbff;
  color: #333;
  overflow-x: hidden;
}

/* CONTAINER */
.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* HERO */
.hero {
  position: relative;
  background: linear-gradient(135deg, #A7D8FF, #FFC1E3);
  padding: 100px 0;
  overflow: hidden;
}

/* BLOBS */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}

.blob1 {
  width: 300px;
  height: 300px;
  background: #ff8ecf;
  top: -50px;
  left: -50px;
}

.blob2 {
  width: 300px;
  height: 300px;
  background: #7cc6ff;
  bottom: -50px;
  right: -50px;
}

/* HERO CONTENT */
.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

/* TEXTO */
.text h1 {
  font-size: 42px;
  margin-bottom: 15px;
  color: #2a2a2a;
}

.frase {
  font-size: 18px;
  margin-bottom: 20px;
  font-style: italic;
  line-height: 1.5;
}

.frase span {
  display: block;
  font-size: 14px;
  margin-top: 5px;
  color: #555;
}

/* 🔥 CONTRASTE MELHORADO */
.destaque {
  font-weight: 900;
  color: #d81b78;
  margin-bottom: 25px;
  font-size: 20px;
  text-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* BOTÃO */
button {
  background: linear-gradient(135deg, #ff8ecf, #ff4fa3);
  color: white;
  border: none;
  padding: 14px 28px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: bold;
  box-shadow: 0 10px 25px rgba(255,79,163,0.4);
  transition: 0.3s;
}

button:hover {
  transform: translateY(-3px);
}

/* FOTO */
.foto-box {
  background: white;
  padding: 10px;
  border-radius: 25px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.foto img {
  width: 280px;
  height: 420px;
  object-fit: cover;
  border-radius: 20px;
}

/* SEÇÕES */
section {
  padding: 70px 0;
  text-align: center;
}

/* SOBRE */
.sobre p {
  font-size: 18px;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

/* CARDS */
.cards .container {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
}

.card {
  background: white;
  padding: 25px;
  border-radius: 20px;
  width: 260px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.card h3 {
  color: #ff4fa3;
}

/* ========================= */
/* 🔥 GRID MELHORADO */
/* ========================= */

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* ========================= */


/* ========================= */
/* 🎓 FORMAÇÃO PREMIUM */
/* ========================= */

.formacao {
  background: linear-gradient(135deg, #ffffff, #fff3fa);
  padding: 30px;
  border-radius: 25px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.formacao h2 {
  margin-bottom: 20px;
}

/* LISTA */
/* ========================= */
/* 🎓 FORMAÇÃO EM CARDS */
/* ========================= */

.formacao {
  background: linear-gradient(135deg, #ffffff, #fff3fa);
}

.formacao-cards {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 25px;
}

.formacao-card {
  background: white;
  padding: 18px 20px;
  border-radius: 18px;
  width: 280px;

  display: flex;
  align-items: center;
  gap: 15px;

  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.formacao-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

/* ÍCONE */
.formacao-card .icon {
  font-size: 28px;
  background: linear-gradient(135deg, #ff8ecf, #ff4fa3);
  color: white;
  width: 50px;
  height: 50px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 12px;
  flex-shrink: 0;
}

/* TEXTO */
.formacao-card p {
  font-weight: 600;
  text-align: left;
}

/* CONTATO */
.contato {
  background: linear-gradient(135deg, #A7D8FF, #FFC1E3);
}


/* ANIMAÇÃO */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.6s;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ========================= */
/* 📱 MOBILE PREMIUM */
/* ========================= */

@media (max-width: 768px) {

  /* HERO */
  .hero {
    padding: 50px 0;
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
    gap: 25px;
  }

  .text h1 {
    font-size: 26px;
    line-height: 1.2;
  }

  .frase {
    font-size: 15px;
    padding: 0 10px;
  }

  .destaque {
    font-size: 18px;
  }

  /* FOTO */
  .foto img {
    width: 85%;
    max-width: 260px;
    height: auto;
  }

  /* SEÇÕES */
  section {
    padding: 50px 0;
  }

  /* SOBRE */
  .sobre p {
    font-size: 16px;
    padding: 0 10px;
  }

  /* CARDS */
  .cards .container {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .card {
    width: 95%;
    padding: 20px;
  }

  /* ========================= */
  /* 🎓 FORMAÇÃO MOBILE TOP */
  /* ========================= */

  .formacao-cards {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .formacao-card {
    width: 95%;
    padding: 16px;
    gap: 12px;
  }

  .formacao-card .icon {
    width: 45px;
    height: 45px;
    font-size: 22px;
  }

  .formacao-card p {
    font-size: 15px;
  }

  /* BOTÃO */
  button {
    width: 100%;
    max-width: 280px;
    font-size: 15px;
  }

 
}
