@import url('https://fonts.googleapis.com/css2?family=Chewy&display=swap');
body {
  margin: 0;
  padding: 0;
  font-family: "Chewy", system-ui;
  background: linear-gradient(to bottom, #eaf6ff, #cdeefd);
  color: #f0f0f0;
}

.form-container {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  max-width: 400px;
  padding: 20px;
  margin: 0 auto;
  background-color: #ffffff54;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.inputs-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

input {
  padding: 12px 14px;
  font-size: 1rem;
  border: 2px solid #f090ab6b;
  font-family: "Chewy", system-ui;
  border-radius: 8px;
  background-color: #f9fbfc;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  color: #333;
}

input::placeholder {
  color: #ccc;
}

input:focus {
  outline: none;
  border-color: #f090ab;
  box-shadow: 0 0 8px rgba(240, 144, 171, 0.4);
}

button {
  padding: 12px 16px;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  font-family: "Chewy", system-ui;
  background-color: #f090ab;
  color: white;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  height: 100%;
  align-self: start;
  white-space: nowrap;
}

button:hover {
  background-color: #e07896;
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(240, 144, 171, 0.3);
}

button:active {
  transform: scale(0.98);
}

button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 6px;
}

button i {
  font-size: 1.4rem;
}



.container {
  max-width: 400px;
  margin: 5px auto;
  background: #fff8f0;
  background: url(./imagens/ceu.png);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  text-align: center;
}

h1 {
  font-size: 1.8em;
  color: #f79f22;
}

.mensagem {
  font-family: "Chewy", system-ui;
  font-weight: 400;
  font-style: normal;
  font-size: 1.3em;
  color: #ff6699;
}

.texto1 {
  font-family: "Chewy", system-ui;
  font-weight: 400;
  font-style: normal;
  font-size: 1.6em;
  color: #ff6699;
}

.foto-principal img {
  width: 105%;
}

.img {
  width: 100%;
}

.img2 {
  width: 100%;
  margin-bottom: -25px;
}


.acoes {
  margin-top: 20px;
}



footer {
  margin-top: 20px;
  font-size: 0.9em;
  color: #888;
  text-align: center;
}
/* Tela de abertura (splash) com fundo de céu */
#splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('./imagens/ceu.png');
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 1s ease;
}

#splash-screen img {
  width: 90%;
  height: auto;
  animation: pulse 4s infinite;
}

/* Animação suave no sol */
@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.9; }
  100% { transform: scale(1); opacity: 1; }
}
.acoes {
  display: flex;
justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
margin-bottom: 20px;
}

.btn {
  display: flex;
  flex-direction: column; /* Ícone em cima, texto embaixo */
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 12px;
  max-width: 150px;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  font-family: "Chewy", system-ui;
  background-color: #f090ab;
  color: white;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.btn i {
  font-size: 1.4rem;
}

.btn:hover {
  background-color: #e07896;
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(240, 144, 171, 0.3);
}

.btn:active {
  transform: scale(0.98);
}

/* Modal (fundo escuro) */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  align-items: center;
  justify-content: center;
}

/* Conteúdo do Modal */
.modal-content {
  background-color: #fff;
  border-radius: 12px;
  padding: 20px 30px;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  text-align: center;
  position: relative;
  font-family: "Chewy", system-ui;
}

/* Botão fechar */
.fechar {
  position: absolute;
  top: 10px;
  right: 14px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #f090ab;
  cursor: pointer;
}

/* Lista estilizada */
.modal-content ul {
  list-style: none;
  padding: 0;
  margin-top: 16px;
  font-size: 1.1rem;
  color: #444;
}

.modal-content li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.modal-content i, h2 {
  color: #f090ab;
}


