/* ===== Novo styles.css organizado ===== */

/* Reset geral */
body, h1, h2, h3, h4, p, a, button, label {
  margin: 0;
  padding: 0;
  font-family: 'Arial', sans-serif;
  font-weight: 700;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

/* ===== Estilo padrão para todo o site ===== */
body {
  background: linear-gradient(to bottom, #f7f7f7, #e0e0e0);
  min-height: 100vh;
}

/* Header */
.header {
  background: #007bff;
  padding: 20px;
  text-align: center;
}
.header .logo {
  font-size: 32px;
  color: white;
  font-weight: bold;
  text-decoration: none;
}

/* Hero (Index) */
.hero {
  text-align: center;
  padding: 80px 20px 30px;
}
.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
}
.hero p {
  font-size: 22px;
  color: #555;
  margin-bottom: 30px;
}

/* Botão Principal */
.btn-principal {
  display: inline-block;
  padding: 15px 30px;
  background: #28a745;
  color: white;
  font-size: 20px;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
}
.btn-principal:hover {
  background: #218838;
}

/* Footer */
.footer {
  background: #343a40;
  color: white;
  text-align: center;
  padding: 20px 10px;
  margin-top: 60px;
  font-size: 14px;
}

/* Botões tipo "Loja Online", "Blog", etc */
.tipos-site {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}
.tipo-btn {
  background: white;
  border: 2px solid #007bff;
  border-radius: 30px;
  padding: 10px 25px;
  color: #007bff;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s;
}
.tipo-btn:hover {
  background: #007bff;
  color: white;
}

/* ===== Estilos específicos de login e cadastro ===== */
.login-cadastro-body {
  background: linear-gradient(to right, #00c6ff, #0072ff);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  min-height: 100vh;
}

.login-container, .cadastro-container {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
  width: 100%;
  max-width: 400px;
  text-align: center;
}

.login-container h1, .cadastro-container h1 {
  color: #0072ff;
  margin-bottom: 20px;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.4);
}

form label {
  text-align: left;
  display: block;
  margin-top: 15px;
  margin-bottom: 5px;
}

form input {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
}

.senha-container {
  position: relative;
  width: 100%;
}

.toggle-senha {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}

.toggle-senha img {
  height: 24px;
  width: 24px;
  display: block;
}


.toggle-password {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 18px;
}

form button {
  width: 100%;
  padding: 15px;
  background: #007bff;
  color: white;
  font-size: 18px;
  border: none;
  border-radius: 8px;
  margin-top: 20px;
  cursor: pointer;
}
form button:hover {
  background: #0056b3;
}

.back-home {
  margin-top: 20px;
  display: block;
  color: #007bff;
  text-decoration: none;
}
.back-home:hover {
  text-decoration: underline;
}

.btn-comecar {
  display: inline-block;
  margin: 20px auto;
  padding: 14px 30px;
  background-color: #28a745;
  color: white;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}
.btn-comecar:hover {
  background-color: #218838;
  transform: scale(1.03);
}
