/* Estilos específicos para a página inicial */

body {
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
}

.index-container {
  animation: fadeIn 1s ease-in-out;
  min-height: 100vh;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.index-logo {
  transition: all 0.3s ease;
}

.index-logo:hover {
  transform: scale(1.05);
}

.index-logo img {
  width: auto;
  height: 100px;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.15));
}

.index-subtitle {
  color: var(--accent-color);
  font-weight: 500;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

.index-title {
  color: var(--primary-color);
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.index-slogan {
  color: var(--accent-color);
  font-style: italic;
  font-weight: 400;
  margin-bottom: 2rem;
}

.index-box {
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 40px;
  width: 100%;
  max-width: 450px;
  transform: translateY(0);
  transition: all 0.4s ease;
  border-top: 5px solid var(--primary-color);
}

.index-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.index-btn {
  display: block;
  width: 100%;
  padding: 15px;
  font-weight: 600;
  font-size: 16px;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s;
}

.index-btn-primary {
  background-color: var(--primary-color);
  color: white;
}

.index-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(4, 68, 52, 0.25);
}

.index-btn-secondary {
  background-color: white;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.index-btn-secondary:hover {
  background-color: rgba(4, 68, 52, 0.05);
  color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.index-guest-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s;
  display: inline-block;
  padding: 8px 15px;
  border-radius: 20px;
}

.index-guest-link:hover {
  color: var(--light-accent);
  background-color: rgba(4, 68, 52, 0.05);
  transform: translateY(-2px);
}

/* Responsividade */
@media (max-width: 576px) {
  .index-logo img {
    height: 150px;
  }

  .index-title {
    font-size: 2.2rem;
  }

  .index-box {
    padding: 30px;
  }
}
