/**
 * Hero Section Block Styles
 * 
 * @package TerapiadoStress
 */

.hero-section {
  position: relative;
  width: 100vw;
  min-height: 100vh;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  overflow: visible;
  display: flex;
  /*   align-items: center; */
  justify-content: center;
}

/* Background Image */
.hero-section__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

/* Desktop background - visível por padrão */
.hero-section__background--desktop {
  display: block;
}

/* Mobile background - escondido por padrão */
.hero-section__background--mobile {
  display: none;
}

/* Mostrar mobile background em tablets e mobile */
@media (max-width: 1024px) {
  .hero-section__background--desktop {
    display: none;
  }

  .hero-section__background--mobile {
    display: block;
  }
}

/* Container Principal */
.hero-section__container {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  padding: 20px 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

/* Conteúdo */
.hero-section__content {
  flex: 0 0 50%;
  max-width: 585px;
  color: #fff;
}

.hero-section__logo {
  margin-bottom: 10px;
}

.hero-section__logo img {
  max-width: 500px;
  width: 100%;
  height: auto;
  display: block;
}

.hero-section__quote-mark {
  max-width: 30px;
  height: auto;
  margin: 15px 0 15px 0;
  display: block;
  opacity: 0.9;
}

.hero-section__quote {
  font-size: 42px;
  line-height: 1;
  font-weight: 700;
  margin: 0 0 20px;
  padding: 0;
  border: none;
  color: var(--color-brown);
  font-family: 'Montserrat', sans-serif;
}

.hero-section__author {
  font-size: 32px;
  line-height: 1;
  font-weight: 500;
  margin: 0 0 25px;
  color: var(--color-brown);
  font-style: italic;
  font-family: 'Montserrat', sans-serif;
}

.hero-section__divider {
  width: 200px;
  height: 10px;
  background-color: var(--color-green);
  margin: 15px 0;
}

.hero-section__teaser {
  font-size: 25px;
  line-height: 1.2;
  margin: 0 0 30px;
  color: var(--color-white);
  font-family: 'Montserrat', sans-serif;
}

.hero-section__cta {
  margin-top: 40px;
}

.hero-section__cta-button {
  display: inline-block;
  padding: 16px 40px;
  background-color: var(--color-green-light);
  color: var(--color-white);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-section__cta-button:hover {
  background-color: var(--color-green);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-section {
    height: auto;
    min-height: 100vh;
    padding: 15px 0 600px 0;
  }

  .hero-section__container {
    flex-direction: column;
    justify-content: center;
    gap: 30px;
  }

  .hero-section__content {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
  }

  .hero-section__logo img {
    margin: 0 auto;
    max-width: 280px;
  }

  .hero-section__quote-mark {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-section__divider {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-section__quote {
    font-size: 32px;
  }

  .hero-section__author {
    font-size: 16px;
  }

  .hero-section__teaser {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .hero-section__quote {
    font-size: 24px;
  }

  .hero-section__author {
    font-size: 16px;
  }

  .hero-section__teaser {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .hero-section {
    /*  padding: 40px 0 150px 0; */
  }

  .hero-section__quote {
    font-size: 20px;
  }

  .hero-section__author {
    font-size: 14px;
  }

  .hero-section__teaser {
    font-size: 16px;
  }

  .hero-section__logo img {
    max-width: 220px;
  }

  .hero-section__cta-button {
    padding: 14px 30px;
    font-size: 14px;
  }
}
