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

body {
  font-family: "Inter", sans-serif;
  background-color: #000000;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px 0 80px 0;
}

.hero-content {
  max-width: 800px;
}

.logo-container {
  margin-bottom: 40px;
  height: 33.33vh; /* 1/3 da altura da viewport */
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  margin: 0 auto;
  display: block;
  filter: brightness(0) invert(1); /* Torna o logo branco */
  object-fit: contain;
}

.hero-title {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 15px;
  letter-spacing: -0.02em;
}

.bad-text {
  background: linear-gradient(135deg, #ffffff 0%, #cccccc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-weight: 400;
  margin-bottom: 40px;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  background: #ffffff;
  color: #000000;
  border: none;
  padding: 16px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cta-button:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

/* About Section */
.about {
  padding: 120px 0;
  text-align: center;
}

.about h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  margin-bottom: 40px;
  letter-spacing: -0.01em;
}

.about-text {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
  opacity: 0.9;
}

/* Features Section */
.features {
  padding: 120px 0;
}

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

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

.feature-number {
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  opacity: 0.3;
  margin-bottom: 20px;
}

.feature h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  letter-spacing: -0.01em;
}

.feature p {
  font-size: 1.1rem;
  opacity: 0.8;
  line-height: 1.6;
}

/* Categories Section */
.categories {
  padding: 120px 0;
  text-align: center;
}

.categories h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.categories-subtitle {
  font-size: 1.2rem;
  opacity: 0.8;
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.category {
  padding: 40px 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.category:hover {
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-5px);
}

.category h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  letter-spacing: -0.01em;
}

.category p {
  font-size: 1rem;
  opacity: 0.8;
  line-height: 1.6;
}

/* Quote Section */
.quote {
  padding: 120px 0;
  text-align: center;
}

.quote-content {
  max-width: 800px;
  margin: 0 auto;
}

blockquote {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.4;
  opacity: 0.9;
  position: relative;
}

blockquote::before {
  content: '"';
  font-size: 4rem;
  position: absolute;
  top: -20px;
  left: -40px;
  opacity: 0.3;
}

/* Lead Form Section */
.lead-form {
  padding: 120px 0;
  text-align: center;
}

.form-container {
  max-width: 500px;
  margin: 0 auto;
}

.lead-form h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.lead-form p {
  font-size: 1.2rem;
  opacity: 0.8;
  margin-bottom: 50px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  position: relative;
}

.form-group input {
  width: 100%;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.1);
}

.submit-button {
  background: #ffffff;
  color: #000000;
  border: none;
  padding: 16px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 20px;
}

.submit-button:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.success-message {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 40px;
  margin-top: 30px;
}

.success-message h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #ffffff;
}

.success-message p {
  opacity: 0.8;
  font-size: 1.1rem;
}

/* Footer */
.footer {
  padding: 80px 0 40px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
}

.footer-brand h3 {
  font-size: 2rem;
  font-weight: 700;
}

.footer-brand h2 {
  font-size: 2rem;
  font-weight: 700;
}

.footer-text {
  font-size: 0.9rem;
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto 30px;
  line-height: 1.6;
  text-align: left;
}

.footer-contact {
  font-size: 1rem;
  opacity: 0.7;
  margin-bottom: 20px;
}

.contact-email {
  font-weight: 500;
}

.contact-link {
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.contact-link:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.footer-copyright {
  font-size: 0.9rem;
  opacity: 0.6;
}

/* Responsividade */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

  .hero {
    padding: 15px 0 60px 0;
  }

  .logo-container {
    height: 30vh;
    margin-bottom: 30px;
  }

  .about,
  .features,
  .categories,
  .quote,
  .lead-form {
    padding: 80px 0;
  }

  .features-grid {
    gap: 40px;
  }

  .categories-grid {
    gap: 30px;
  }

  .category {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 10px 0 60px 0;
  }

  .logo-container {
    height: 25vh;
    margin-bottom: 25px;
  }

  .hero-title {
    font-size: 1.4rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .about h2,
  .categories h2,
  .lead-form h2 {
    font-size: 1.8rem;
  }

  .about-text {
    font-size: 1rem;
  }

  .feature-number {
    font-size: 2.5rem;
  }

  blockquote {
    font-size: 1.3rem;
  }

  blockquote::before {
    font-size: 3rem;
    top: -15px;
    left: -30px;
  }
}
