@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Poppins;
  font-weight: 400;
}

body {
    background: linear-gradient(to bottom, #FAF3E0, #C6F6D5);
    color: #333;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    padding-bottom: 70px;
}

.container {
  text-align: center;
  background-color: #ffffffdd;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  max-width: 1000px;
  width: 1000vh;
  transition: transform 0.3s;
  
}

.container:hover {
  transform: scale(1.01);
}

h1 {
  font-size: 2.5rem;
  color: #5A67D8;
  margin-bottom: 1rem;
}

p {
  font-size: 1.2rem;
  color: #4A5568;
  margin-bottom: 2rem;
}

.caixas {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.caixa {
  padding: 12px 20px;
  border-radius: 12px;
  font-family: Poppins;
  font-weight: 600;
  color: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  min-width: 100px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.caixa:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}


.conectar {
  background-color: #A3D8F4; 
  color: #1A365D;
}

.escutar {
  background-color: #B2F2BB; 
  color: #22543D;
}

.sentir {
  background-color: #FBCFE8; 
  color: #702459;
}

.cta-button {
  background-color: #5A67D8;
  color: white;
  border: none;
  padding: 1rem 2rem;
  font-size: 1rem;
  border-radius: 50px;
  cursor: pointer;
  transition: background-color 0.3s;
  text-decoration: none;
  display: inline-block;
}

.cta-button:hover {
  background-color: #434190;
}

.illustration {
  margin-bottom: 2rem;
}

.illustration img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

@media (max-width: 600px) {
  h1 {
    font-size: 2rem;
  }

  p {
    font-size: 1rem;
  }

  .caixas {
    flex-direction: column;
    align-items: center;
  }

  .caixa {
    width: 100%;
  }
}

.decorativos {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.decorativo {
  background-color: #EDF2F7;
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
}

.decorativo:hover {
  transform: scale(1.1);
}

.decorativo i {
  width: 32px;
  height: 32px;
  color: #5A67D8;
}


body {
  margin: 0;
  padding: 0;
  font-family: 'Outfit', sans-serif;
  background: linear-gradient(135deg, #fdf6e3, #d5f7eb);
}

.container {
  max-width: 700px;
  margin: 40px auto;
  background-color: #fff;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  margin-bottom: 100px;
}

.illustration {
  width: 80px;
  margin-bottom: 20px;
}

h1 {
  font-size: 2.2rem;
  color: #6a68d2;
  margin-bottom: 10px;
}

.intro {
  color: #555;
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.caixas {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
}

.caixa {
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 600;
  color: white;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  min-width: 100px;
}

.conectar {
  background-color: #9bd0f5;
}

.escutar {
  background-color: #a8f0c6;
}

.sentir {
  background-color: #f6b8d2;
}

.sobre {
  margin-bottom: 30px;
}

.sobre h2 {
  font-size: 1.4rem;
  color: #333;
  margin-bottom: 10px;
}

.sobre p {
  color: #555;
  font-size: 1rem;
  margin-bottom: 20px;
}

.decorativos {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
  
}

.decorativo {
  background: #dce5f3;
  padding: 18px;
  border-radius: 12px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
}

.decorativo i {
  width: 28px;
  height: 28px;
  color: #6a68d2;
}

.btn {
  background-color: #6a68d2;
  color: #fff;
  padding: 12px 30px;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.btn:hover {
  background-color: #6a68d2;
  transform: scale(1.08);
  border: 2px solid #6a68d2;

}


.btn a{
  list-style: none;
  text-decoration: none;
  text-transform: none;
  color: #ffffff;
}

a{
  color: white;
}

.linha-do-tempo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 50px 0 40px;
  padding: 0 20px;
  gap: 20px;
  flex-wrap: wrap;
}

.passo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}

.icone-circulo {
  background-color: #F2E1D8;
  border-radius: 50%;
  padding: 16px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  margin-bottom: 10px;
  transition: all 0.3s ease;
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.passo:hover .icone-circulo {
  background-color: #5A67D8;
  transform: scale(1.2);
  color: white;
}

.passo p {
  font-size: 0.9rem;
  color: #444;
  margin: 0;
}


.rodape {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #F2E1D8;
    color: #1D142E;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    padding: 5px 0;
    z-index: 1000;
    box-shadow: 0 -8px 20px rgba(0, 0, 0, 0.06); 
}

.rodape-conteudo {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.rodape p {
  margin: 5px 0;
  font-weight: 400;
  font-family: Poppins;
  font-size: 16px;
}

.rodape-links {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.rodape-links a {
  color: #1D142E;
  text-decoration: none;
  transition: color 0.3s ease;
}

.rodape-links a:hover {
  color: #8143AB;
  text-decoration: underline;
}

.rodape .divisor {
  color: #999;
  font-weight: 300;
}

/*-----------------------------Person in student--------------------------------------------------------*/


.img-centralizada-student{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px auto;
}


.img-person-student {
    max-width: 70%;
    height: auto;
    border-radius: 12px;
    transition: transform 0.3s ease;
}


/*-----------------------------Doctor in session--------------------------------------------------------*/

.img-centralizada-children{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px auto;
}

.img-person-children {
    max-width: 70%;
    height: auto;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

/*-----------------------------Person in talk--------------------------------------------------------*/

.img-centralizada {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px auto;
}

.img-person {
  max-width: 70%;
  height: auto;
  border-radius: 12px;
  transition: transform 0.3s ease;
}


