/* Section One Styles */
#section-one {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px 40px;
  position: relative;
}

.oneContainer {
  min-height: calc(100vh - 80px);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.section-one {
  font-weight: 300;
  font-size: 72px;
  max-width: 940px;
  line-height: 80px;
  margin-bottom: 30px;
  color: #FFFFFF;
}

.span-dourado {
  color: #F9BA4B;
}

/* Hero Subtitle in Section One */
#section-one .hero-subtitle {
  font-size: 1.25rem;
  font-weight: 400;
  color: #E0E0E0;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 800px;
  padding: 0 20px;
}

/* Buttons in Section One */
#section-one .about-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
}

/* Responsive Design - Tablets (768px - 992px) */
@media screen and (max-width: 992px) {
  #section-one {
    padding: 80px 20px 40px;
    min-height: auto;
  }

  .oneContainer {
    min-height: auto;
    padding: 40px 0;
  }

  .section-one {
    font-size: 56px;
    line-height: 64px;
    margin-bottom: 24px;
    padding: 0 20px;
  }

  #section-one .hero-subtitle {
    font-size: 1.15rem;
    margin-bottom: 1.75rem;
    padding: 0 30px;
  }

  #section-one .about-buttons {
    gap: 14px;
    padding: 0 20px;
  }

  #section-one .btn-primary,
  #section-one .btn-secondary {
    font-size: 15px;
    padding: 13px 28px;
  }
}

/* Responsive Design - Tablets Pequenos e Mobile Grande (481px - 767px) */
@media screen and (max-width: 768px) {
  #section-one {
    padding: 70px 16px 30px;
    min-height: auto;
  }

  .oneContainer {
    min-height: auto;
    padding: 30px 0;
  }

  .section-one {
    font-size: 42px;
    line-height: 50px;
    margin-bottom: 20px;
    padding: 0 16px;
    max-width: 100%;
  }

  #section-one .hero-subtitle {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    padding: 0 20px;
  }

  #section-one .about-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    gap: 12px;
    padding: 0 16px;
  }

  #section-one .btn-primary,
  #section-one .btn-secondary {
    width: 100%;
    font-size: 15px;
    padding: 14px 24px;
    text-align: center;
  }
}

/* Responsive Design - Mobile (até 480px) */
@media screen and (max-width: 480px) {
  #section-one {
    padding: 70px 15px 25px;
    min-height: auto;
  }

  .oneContainer {
    padding: 25px 0;
  }

  .section-one {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 18px;
    padding: 0 12px;
  }

  #section-one .hero-subtitle {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.25rem;
    padding: 0 15px;
  }

  #section-one .about-buttons {
    max-width: 100%;
    padding: 0 12px;
    gap: 10px;
  }

  #section-one .btn-primary,
  #section-one .btn-secondary {
    font-size: 14px;
    padding: 12px 20px;
  }
}

/* Responsive Design - Mobile Muito Pequeno (até 360px) */
@media screen and (max-width: 360px) {
  .section-one {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 16px;
  }

  #section-one .hero-subtitle {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }

  #section-one .btn-primary,
  #section-one .btn-secondary {
    font-size: 13px;
    padding: 11px 18px;
  }
}