/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* FOOTER */
footer {
  background-color: #fff;
  border-radius: 6px;
  color: black;
  font-family: Arial, sans-serif;
  padding: 20px;
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
}

.logo {
  background: linear-gradient(black, red);
  border-radius: 6px;
  color: #fcfcfc;
  font-size: 18px;
  font-weight: bold;
  padding: 5px;
}

.links {
  display: flex;
  gap: 30px;
}

.links a {
  background: linear-gradient(black, red);
  border-radius: 6px;
  color: #fff;
  font-weight: bold;
  padding: 6px;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.links a:hover {
  transform: scale(1.05);
}

/* SESSÃO PRINCIPAL */
.sessao {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 60px;
  background-color: #f5f5f5;
  flex-wrap: wrap;
}

.texto {
  flex: 1;
  max-width: 500px;
}

.texto h1 {
  color: #111;
  font-size: 3rem;
  margin-bottom: 20px;
}

.texto p {
  color: #444;
  font-size: 2rem;
  margin-bottom: 30px;
}

.botao {
  background: linear-gradient(black, red);
  border-radius: 6px;
  color: #fff;
  display: flex;
  font-weight: bold;
  padding: 20px;
  text-decoration: none;
  width: 100%;
  max-width: 250px;
  justify-content: center;
  margin-top: 30px;
  cursor: pointer;
  animation: pulse 2s infinite;
  transition: transform 0.3s ease;
}

/* IMAGEM */
.imagem {
  flex: 1;
  max-width: 500px;
}

.imagem img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}

/* SESSÃO 2 */
.sessao2 {
  background: linear-gradient(black, black);
  border-radius: 20px;
  color: #fff;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  padding: 40px;
}

.texto2 {
  flex: 1;
  max-width: 50%;
  padding: 20px;
}

.texto2 p {
  font-size: 1.1rem;
  font-weight: bold;
}

.imagem2 {
  flex: 1;
  max-width: 50%;
}

.imagem2 img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 20px;
}

/* PLANOS E CONTATOS */
.sessao2-conteudo {
  display: flex;
  gap: 40px;
  justify-content: space-between;
  margin-top: 20px;
  flex-wrap: wrap;
}

.icones,
.contatos {
  flex: 1;
}

.icone-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
}

.icone-item span {
  color: greenyellow;
}

.contato-item p {
  font-size: 0.95rem;
  color: white;
  margin: 0;
  padding: 0;
}

/* ANIMAÇÕES */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVO: mantém layout lado a lado no celular */
@media (max-width: 768px) {
  .sessao {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 30px;
    gap: 20px;
  }

  .texto,
  .imagem {
    flex: 1 1 100%;
    max-width: 100%;
    padding: 10px;
  }

  .texto h1 {
    font-size: 2rem;
  }

  .texto p {
    font-size: 1.2rem;
  }

  .botao {
    width: 100%;
    max-width: 250px;
    margin-top: 20px;
  }

  .imagem img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
  }

  .sessao2 {
    flex-direction: column;
    padding: 30px;
  }

  .imagem2,
  .texto2 {
    max-width: 100%;
    width: 100%;
    padding: 10px;
  }

  .sessao2-conteudo {
    flex-direction: column;
    gap: 20px;
  }

  .icones,
  .contatos {
    width: 100%;
  }

  .icone-item,
  .contato-item a {
    justify-content: flex-start;
  }
}
