/* Import Google Fonts - Roboto */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Corpo da página */
body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  background-color: #000;
  color: #fff;
  background-image: url('../assets/background.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  min-height: 100vh;
  padding-top: 100px;
  padding-bottom: 120px;
}

/* Container principal */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Cabeçalho Fixo */
header {
  background-color: transparent;
  backdrop-filter: blur(10px);
  color: white;
  padding: 20px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

header .logo {
  display: flex;
  align-items: center;
}

header .logo img {
  height: 50px;
  margin-right: 15px;
}

header h1 {
  font-size: 2rem;
  font-weight: 700;
  color: #FFD700;
  margin: 0;
}

nav {
  display: flex;
  gap: 20px;
  align-items: center;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  padding: 8px 12px;
}

nav a:hover {
  color: #FFD700;
}

/* Conteúdo principal */
main {
  margin-top: 40px;
  padding-bottom: 60px;
}

.content-wrapper {
  background-color: transparent;
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 12px;
}

section {
  margin-bottom: 50px;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 60px 20px;
  background-color: transparent;
  backdrop-filter: blur(10px);
  border-radius: 12px;
  margin-bottom: 40px;
}

/* Títulos */
h2 {
  color: #FFD700;
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: 700;
}

h3 {
  color: #FFD700;
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: 600;
}

p {
  color: #fff;
  margin-bottom: 15px;
  font-weight: 300;
  line-height: 1.8;
}

/* Botões CTA */
.cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #000;
  padding: 8px 20px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 15px;
}

.cta-button:hover {
  background-color: #FFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
  text-decoration: none;
}

/* Grid de features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.feature-card {
  background-color: transparent;
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 8px;
}

.feature-card img {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 15px;
}
/* Formulário */
form {
  background-color: transparent;
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 8px;
  margin-top: 20px;
}

label {
  display: block;
  margin-top: 15px;
  margin-bottom: 5px;
  font-weight: 500;
  color: #FFD700;
}

input, textarea {
  width: 100%;
  padding: 12px;
  margin-top: 5px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  background-color: transparent;
  backdrop-filter: blur(10px);
  color: #fff;
  font-family: 'Roboto', sans-serif;
  transition: border-color 0.3s ease;
}

input:focus, textarea:focus {
  outline: none;
  border-color: #FFD700;
}

button {
  width: 100%;
  padding: 12px;
  background-color: #FFD700;
  color: #000;
  border: none;
  cursor: pointer;
  margin-top: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 6px;
  transition: all 0.3s ease;
}

button:hover {
  background-color: #FFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}

/* Imagens */
img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Rodapé Fixo */
footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 0;
  text-align: center;
  background-color: transparent;
  backdrop-filter: blur(10px);
  z-index: 1000;
}

footer p {
  color: #fff;
  margin-bottom: 5px;
  font-size: 0.9rem;
}

footer a {
  color: #FFD700;
  margin: 0 10px;
}

/* Responsividade */
@media (max-width: 768px) {
  body {
    padding-top: 140px;
    padding-bottom: 140px;
  }

  header .container {
    flex-direction: column;
    text-align: center;
  }

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

  .hero h2 {
    font-size: 2rem;
  }

  .content-wrapper {
    padding: 20px;
  }

  .cta-button {
    padding: 6px 16px;
    font-size: 0.85rem;
  }
}
