/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 18px;
}

body {
  font-family: 'Poppins', Arial, sans-serif;
  background-color: #000;
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

/* HEADER */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 25px 0;
  z-index: 1000;
  background: transparent;
  transition: all 0.3s ease;
}

header.scrolled {
  background: rgba(0, 0, 0, 0.9);
  padding: 20px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 20px 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(0,0,0,0.7) 0%, rgba(0,0,0,1) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
}

.hero-content h1 {
  font-size: 4rem;
  margin-bottom: 30px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-content p {
  font-size: 1.8rem;
  margin-bottom: 50px;
  color: #ddd;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-subtitle {
  font-size: 1.4rem !important;
  line-height: 1.4;
  margin: 0 auto 30px !important;
  max-width: 90% !important;
}

/* FORM */
.lead-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.lead-form input {
  padding: 22px 30px;
  font-size: 1.3rem;
  border: 2px solid #fff;
  border-radius: 6px;
  width: 100%;
  outline: none;
  background: #fff;
  color: #000;
  transition: all 0.3s ease;
  font-weight: 500;
}

.lead-form input:focus {
  border-color: #ffd700;
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.3);
}

.lead-form input::placeholder {
  color: #666;
}

.lead-form button {
  padding: 22px 35px;
  font-size: 1.4rem;
  font-weight: 700;
  border: none;
  border-radius: 6px;
  background: #ffd700;
  color: #000;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: 100%;
}

.lead-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
  background: #ffdf33;
}

/* SEÇÕES DE CONTEÚDO */
.conteudo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  min-height: 100vh;
  max-width: 1400px;
  margin: 0 auto;
  padding: 100px 40px;
  position: relative;
}

.conteudo::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background: #0a0a0a;
  z-index: -1;
}

.conteudo img {
  max-width: 700px;
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s ease;
}

.conteudo img:hover {
  transform: scale(1.02);
}

.conteudo .texto {
  flex: 1;
  padding: 30px;
}

.conteudo h2 {
  font-size: 4rem;
  margin-bottom: 40px;
  color: #fff;
  position: relative;
  display: inline-block;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.conteudo h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 100px;
  height: 5px;
  background: #fff;
}

.conteudo p {
  font-size: 1.8rem;
  color: #ccc;
  line-height: 1.7;
  margin-bottom: 40px;
}

.conteudo.left {
  flex-direction: row;
}

.conteudo.right {
  flex-direction: row-reverse;
}

.conteudo.center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* ENTREGÁVEIS */
.entregaveis-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.entregavel {
  flex: 1;
  min-width: 250px;
  max-width: 400px;
  background: #111;
  padding: 30px 25px;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #222;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.entregavel:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.icone-container {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  color: #fff;
}

.entregavel h3 {
  font-size: 1.8rem;
  margin: 15px 0 20px;
  color: #fff;
  font-weight: 600;
}

.entregavel p {
  color: #bbb;
  font-size: 1.3rem;
  line-height: 1.6;
  margin: 0 auto;
  max-width: 100%;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* SOBRE */
.sobre {
  text-align: center;
  padding: 150px 40px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.sobre::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #333, transparent);
}

.sobre h2 {
  font-size: 4rem;
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
}

.sobre h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: #fff;
}

.sobre span {
  color: #fff;
  font-weight: 700;
  position: relative;
}

.sobre p {
  font-size: 1.6rem;
  color: #aaa;
  margin-bottom: 35px;
  line-height: 1.7;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

#btnInscrever {
  padding: 25px 60px;
  font-size: 1.4rem;
  font-weight: 700;
  border: 2px solid #fff;
  border-radius: 6px;
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 40px;
  outline: none;
}

#btnInscrever:hover {
  background: #fff;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

/* RESPONSIVIDADE */
@media (max-width: 1200px) {
  html {
    font-size: 17px;
  }
  
  .hero-content h1 {
    font-size: 3.5rem;
  }
  
  .hero-content p {
    font-size: 1.6rem;
  }
  
  .conteudo {
    max-width: 1100px;
    padding: 80px 30px;
  }
  
  .conteudo h2 {
    font-size: 3.2rem;
  }
  
  .conteudo p,
  .sobre p {
    font-size: 1.5rem;
  }
  
  .sobre {
    padding: 120px 30px;
    max-width: 1000px;
  }
  
  .sobre h2 {
    font-size: 3.2rem;
  }
  
  .entregavel {
    min-width: 280px;
    max-width: 320px;
    padding: 40px 30px;
    min-height: 350px;
  }
  
  .icone-container {
    width: 80px;
    height: 80px;
    font-size: 32px;
  }
  
  .entregavel h3 {
    font-size: 2rem;
  }
}

@media (max-width: 1024px) {
  html {
    font-size: 16px;
  }
  
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .hero-content p {
    font-size: 1.4rem;
  }
  
  .conteudo {
    flex-direction: column !important;
    text-align: center;
    padding: 70px 25px;
  }
  
  .conteudo .texto {
    order: 2;
  }
  
  .conteudo .imagem-container {
    order: 1;
    margin-bottom: 40px;
  }
  
  .conteudo img {
    max-width: 100%;
    height: auto;
  }
  
  .conteudo img {
    max-width: 100%;
    margin-bottom: 40px;
  }
  
  .conteudo h2 {
    font-size: 2.8rem;
  }
  
  .conteudo h2::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .conteudo p,
  .sobre p {
    font-size: 1.3rem;
  }
  
  .sobre h2 {
    font-size: 2.8rem;
  }
  
  .entregavel {
    min-width: 250px;
    max-width: 300px;
    padding: 35px 25px;
    min-height: 320px;
  }
  
  .icone-container {
    width: 70px;
    height: 70px;
    font-size: 28px;
    margin: 0 auto 25px;
  }
  
  .entregavel h3 {
    font-size: 1.8rem;
    margin: 25px 0 20px;
  }
  
  .entregavel p {
    font-size: 1.2rem;
  }
  
  /* Testimonials section was removed as per user request */
  
  /* Highlight styles removed as per user request */
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  
  header {
    padding: 20px 0;
  }
  
  header.scrolled {
    padding: 15px 0;
  }
  
  .hero {
    padding: 100px 15px 40px;
  }
  
  .hero-content {
    max-width: 90%;
    padding: 15px;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
  }
  
  .lead-form {
    max-width: 100%;
    gap: 15px;
  }
  
  .lead-form input,
  .lead-form button {
    padding: 18px 25px;
    font-size: 1.1rem;
  }
  
  .conteudo {
    padding: 60px 20px;
    gap: 50px;
  }
  
  .conteudo h2 {
    font-size: 2.3rem;
    margin-bottom: 30px;
  }
  
  .conteudo h2::after {
    bottom: -10px;
    width: 70px;
    height: 4px;
  }
  
  .conteudo p {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }
  
  .conteudo .texto {
    padding: 20px;
  }
  
  .sobre {
    padding: 100px 20px;
  }
  
  .sobre h2 {
    font-size: 2.3rem;
    margin-bottom: 30px;
  }
  
  .sobre h2::after {
    bottom: -10px;
    width: 70px;
    height: 3px;
  }
  
  .sobre p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    max-width: 100%;
  }
  
  #btnInscrever {
    padding: 20px 40px;
    font-size: 1.1rem;
    margin-top: 30px;
    width: 100%;
    max-width: 300px;
  }
  
  .entregaveis-grid {
    gap: 30px;
    margin-top: 40px;
  }
  
  .entregavel {
    min-width: 100%;
    max-width: 100%;
    padding: 30px 20px;
    min-height: 280px;
  }
  
  .icone-container {
    width: 60px;
    height: 60px;
    font-size: 24px;
    margin: 0 auto 20px;
  }
  
  .entregavel h3 {
    font-size: 1.6rem;
    margin: 20px 0 15px;
  }
  
  .entregavel p {
    font-size: 1rem;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }
  
  header {
    padding: 15px 0;
  }
  
  .hero {
    padding: 80px 10px 30px;
  }
  
  .hero-content h1 {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  
  .hero-content p {
    font-size: 1rem;
    margin-bottom: 30px;
  }
  
  .lead-form input,
  .lead-form button {
    padding: 15px 20px;
    font-size: 1rem;
  }
  
  .conteudo {
    padding: 50px 15px;
    gap: 40px;
  }
  
  .conteudo h2 {
    font-size: 2rem;
    margin-bottom: 25px;
  }
  
  .conteudo p {
    font-size: 1rem;
    margin-bottom: 25px;
  }
  
  .sobre {
    padding: 80px 15px;
  }
  
  .sobre h2 {
    font-size: 2rem;
    margin-bottom: 25px;
  }
  
  #btnInscrever {
    padding: 18px 30px;
    font-size: 1rem;
    margin-top: 25px;
  }
  
  .entregaveis-grid {
    gap: 20px;
    margin-top: 30px;
  }
  
  .entregavel {
    padding: 25px 15px;
    min-height: 250px;
  }
  
  .icone-container {
    width: 50px;
    height: 50px;
    font-size: 20px;
    margin: 0 auto 15px;
  }
  
  .entregavel h3 {
    font-size: 1.4rem;
    margin: 15px 0 10px;
  }
}