/* Reset e base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', sans-serif;
  color: #E6F1FF;
  background: #0A192F;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

/* Splash Screen */
#splash {
  position: fixed;
  inset: 0;
  background: #0A192F;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  color: #00E5FF;
  font-size: 2rem;
  animation: fadeOut 3s forwards 2s;
}

#splash img {
  max-width: 180px;
  margin-bottom: 20px;
  animation: pulse 2s infinite;
}

@keyframes fadeOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

/* Tela de carregamento */
#loading {
  position: fixed;
  inset: 0;
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9998;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid #00E5FF;
  border-top: 5px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Menu responsivo */
.menu-toggle {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #00E5FF;
  border: none;
  padding: 10px;
  border-radius: 6px;
  z-index: 999;
  cursor: pointer;
  display: none;
}

.menu-toggle i {
  color: #0A192F;
  font-size: 20px;
}

nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin: 20px;
}

nav a {
  background: #00E5FF;
  color: #0A192F;
  padding: 12px 25px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

nav a i {
  font-size: 1.2rem;
}

nav a:hover {
  background: #112240;
  color: #E6F1FF;
}

/* Ocultar menu no mobile */
@media screen and (max-width: 768px) {
  nav {
    flex-direction: column;
    display: none;
    margin-top: 60px;
  }

  nav.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .logo {
    max-width: 200px;
  }
}

header {
  text-align: center;
  padding: 40px 20px;
}

.logo {
  max-width: 300px;
  margin-bottom: 20px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* Seções */
main {
  max-width: 1000px;
  margin: auto;
  padding: 20px;
}

section {
  background: #112240;
  margin: 40px 0;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.1);
}

section h2 {
  margin-bottom: 15px;
  color: #00E5FF;
  border-bottom: 2px solid #00E5FF;
  padding-bottom: 5px;
  text-align: center;
}

section p {
  margin-bottom: 20px;
  line-height: 1.6;
}

ul {
  list-style: none;
  margin-top: 10px;
}

ul li::before {
  content: '✔ ';
  color: #00E5FF;
}

/* Parceiros */
.parceiros-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.parceiros-grid img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.parceiros-grid img:hover {
  transform: scale(1.05);
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  background: #121640;
  padding: 20px;
  border-radius: 10px;
}

input, textarea {
  padding: 12px;
  border-radius: 6px;
  border: 2px solid #eee;
  font-size: 1rem;
  background: #0A192F;
  color: #E6F1FF;
}

.whatsapp-link {
  color: #00E5FF;
  font-weight: bold;
  text-decoration: none;
}

.whatsapp-link:hover {
  text-decoration: underline;
  color: #00BCD4;
}

::placeholder {
  color: #fff;
}

button {
  background: #00E5FF;
  color: #0A192F;
  padding: 12px;
  border: none;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background: #00B7D9;
}

/* Toast */
.toast {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(145deg, #00e5ff, #00bcd4);
  color: #0A192F;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
  z-index: 9999;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

/* Footer */
footer {
  text-align: center;
  padding: 30px;
  background: rgba(0, 0, 0, 0.5);
  font-size: 0.9rem;
  color: #aaa;
  position: relative;
}

.social-icons {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 15px;
}

.social-icons a {
  color: #00E5FF;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #00B7D9;
};