/* Hero Component Styles */
.hero {
  position: relative;
  min-height: 75vh;
  padding-top: 133px; /* Account for fixed header */
  overflow: hidden;
}

.hero__container {
  position: relative;
  max-width: 855px;
  margin: 0 auto;
  padding: var(--spacing-xl) var(--spacing-lg);
  height: 75vh;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;

  right: 75px;
  z-index: 1;
}

.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-items: flex-start;

  position: relative;
  /* left: 70px; */
}

/* Title */
.hero__title {
  margin-bottom: var(--spacing-lg);
  z-index: 10;
  position: relative;
}

.hero__title-text {
  font-family: var(--font-secondary);
  font-size: 30px;
  line-height: 35px;
  color: var(--color-cyan-4);

  max-width: 452px;
}

.hero__title-normal {
  font-weight: 400;
}

.hero__title-bold {
  font-weight: 700;
}

/* Description */
.hero__description {
  margin-bottom: var(--spacing-xl);
  z-index: 10;
  position: relative;
}

.hero__description-text {
  font-family: var(--font-primary);
  font-size: 24px;
  font-weight: 400;
  line-height: 30px;
  color: var(--color-dark-blue-2);

  max-width: 452px;
}

/* CTA Button */
.hero__cta {
  z-index: 10;
  position: relative;
}

.hero__cta-button {
  background: var(--color-orange-2);
  border: 1px solid var(--color-orange-2);
  border-radius: var(--radius-xl);
  padding: 0;
  width: 429px;
  max-width: 429px;
  height: 55px;
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration: none;
  color: inherit;
}

.hero__cta-button:hover {
  background: var(--color-orange-3);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.hero__cta-text {
  color: var(--color-white);
  font-family: var(--font-tertiary);
  font-size: 27px;
  font-weight: 400;
  text-transform: uppercase;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero__image { /* Posicionado em relação ao container */
  z-index: 1;
  position: relative;
  /* right: 70px; */
}

.hero__image-img {
  object-fit: cover;
  border-radius: var(--radius-sm);
  width: 582px;
  height: auto;
}

/* Responsive Design */

/* Large Desktop (1200px and up) */
@media (min-width: 1200px) {
  .hero__container {
    padding: var(--spacing-xxl) var(--spacing-xl);
  }
  
  .hero__content {
    left: 60px;
  }
  
  .hero__image {
    right: 60px;
    max-width: 375px;
    width: 100%;
  }
  
  .hero__title-text {
    font-size: 33px;
    line-height: 39px;
  }
  
  .hero__description-text {
    font-size: 27px;
    line-height: 33px;
  }
  
  .hero__cta-button {
    width: 465px;
    height: 60px;
  }
  
  .hero__cta-text {
    font-size: 30px;
  }
}

/* Desktop (992px to 1199px) */
@media (max-width: 1199px) and (min-width: 992px) {
  .hero__container {
    padding: var(--spacing-xl) var(--spacing-lg);
  }
  
  .hero__content {
    left: 38px;
  }
  
  .hero__image {
    right: 38px;
    max-width: 338px;
    width: 100%;
  }
  
  .hero__title-text {
    font-size: 29px;
    line-height: 34px;
  }
  
  .hero__description-text {
    font-size: 23px;
    line-height: 28px;
  }
  
  .hero__cta-button {
    width: 390px;
    height: 53px;
  }
  
  .hero__cta-text {
    font-size: 26px;
  }
}

/* Tablet (768px to 991px) */
@media (max-width: 991px) and (min-width: 768px) {
  .hero {
    padding-top: 120px;
  }
  
  .hero__container {
    padding: var(--spacing-lg) var(--spacing-md);
    flex-direction: column;
    text-align: center;
    height: auto;
    min-height: 75vh;
  }
  
  .hero__content {
    left: 0;
    margin-bottom: var(--spacing-xl);
    align-items: center;
  }
  
  .hero__image {
    right: 0;
    order: 2;
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
  }
  
  .hero__title-text {
    font-size: 36px;
    line-height: 42px;
    max-width: 100%;
  }
  
  .hero__description-text {
    font-size: 28px;
    line-height: 34px;
    max-width: 100%;
  }
  
  .hero__cta-button {
    width: 100%;
    max-width: 480px;
    height: 65px;
  }
  
  .hero__cta-text {
    font-size: 32px;
  }
}

/* Mobile Large (576px to 767px) */
@media (max-width: 767px) and (min-width: 576px) {
  .hero {
    padding-top: 100px;
  }
  
  .hero__container {
    padding: var(--spacing-md) var(--spacing-sm);
    flex-direction: column;
    text-align: center;
    height: auto;
    min-height: 100vh;
  }
  
  .hero__content {
    left: 0;
    margin-bottom: var(--spacing-lg);
    align-items: center;
  }
  
  .hero__image {
    right: 0;
    order: 2;
    max-width: 350px;
    width: 100%;
    margin: 0 auto;
  }
  
  .hero__title-text {
    font-size: 32px;
    line-height: 38px;
    max-width: 100%;
  }
  
  .hero__description-text {
    font-size: 26px;
    line-height: 32px;
    max-width: 100%;
  }
  
  .hero__cta-button {
    width: 100%;
    max-width: 400px;
    height: 60px;
  }
  
  .hero__cta-text {
    font-size: 28px;
  }
}

/* Mobile Small (up to 575px) */
@media (max-width: 575px) {
  .hero {
    padding-top: 100px;
  }
  
  .hero__container {
    padding: var(--spacing-sm) var(--spacing-xs);
    flex-direction: column;
    text-align: center;
    height: auto;
    min-height: 100vh;

    right: 0;
  }
  
  .hero__content {
    left: 0;
    margin-bottom: var(--spacing-md);
    align-items: center;
  }
  
  .hero__image {
    right:50px;
    order: 2;
    width: 320px;
    max-width: 320px;
    margin: 0 auto;
  }
  .hero__image img {
    width: 320px;
    max-width: 320px;
  }
  
  .hero__title-text {
    font-size: 28px;
    line-height: 34px;
    max-width: 100%;
  }
  
  .hero__description-text {
    font-size: 22px;
    line-height: 28px;
    max-width: 100%;
  }
  
  .hero__cta-button {
    width: 572px;
    max-width: 350px;
    height: 55px;
  }
  
  .hero__cta-text {
    font-size: 24px;
  }
}

/* Extra Small Mobile (up to 375px) */
@media (max-width: 375px) {
  .hero {
    padding-top: 90px;
  }
  
  .hero__container {
    padding: var(--spacing-xs);
  }
  
  .hero__image {
    max-width: 320px;
    width: 100%;
    margin: 0 auto;
  }
  
  .hero__title-text {
    font-size: 26px;
    line-height: 32px;
  }
  
  .hero__description-text {
    font-size: 20px;
    line-height: 26px;
  }
  
  .hero__cta-button {
    width: 572px;
    max-width: 300px;
    height: 50px;
  }
  
  .hero__cta-text {
    font-size: 22px;
  }
}