/* ==========================================
   HERO SECTION BLOCK
   ========================================== */

.hero-section-block {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 0 20px;
}

.hero-section-container {
  max-width: 1170px;
  margin: 0 auto;
}

.hero-section-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: stretch;
}

/* ==========================================
   COLUNA ESQUERDA (2/3)
   ========================================== */

.hero-section-col-left {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto auto auto;
  gap: 15px 0px;
  padding: 80px 0px;
}

.hero-left-side-image {
  grid-column: 1;
  grid-row: 2;
  width: 100%;
}

.hero-left-side-image img {
  max-width: 165px;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 8px;
}

.hero-left-title {
  grid-column: 2;
  grid-row: 1;
  font-size: 34px;
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
  line-height: 1.3;
  color: white;
  margin: 0;
}

.hero-left-image {
  grid-column: 2;
  grid-row: 2;
  width: 100%;
}

.hero-left-text-1 {
  grid-column: 2;
  grid-row: 3;
  font-size: 24px;
  font-weight: 300;
  font-family: 'Montserrat', sans-serif;
  color: white;
  line-height: 1.6;
}

.hero-left-text-1 strong {
  font-weight: 600;
}

.hero-left-text-2 {
  grid-column: 2;
  grid-row: 4;
  font-size: 20px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.hero-left-image {
  width: 100%;
}

.hero-left-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.hero-left-text-1 {
  font-size: 20px;
  font-weight: 300;
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  color: white;
}

.hero-left-text-2 {
  font-size: 18px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  color: white;
}

/* ==========================================
   COLUNA DIREITA (1/3)
   ========================================== */

.hero-section-col-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: var(--color-white);
  padding: 30px 20px;
  height: 100%;
}

.hero-right-item {
  padding: 0px 20px;
  border-radius: 4px;
  line-height: 1;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
}

.hero-right-item strong {
  font-weight: 600;
}

.hero-right-item:nth-child(1) {
  color: var(--color-primary);
  font-size: 104px;
  font-weight: 700;
}

.hero-right-item:nth-child(2) {
  color: var(--color-primary);
  font-size: 54px;
  font-weight: 200;
}

.hero-right-item:nth-child(3) {
  color: var(--color-secondary);
  font-size: 20px;
  font-weight: 700;
}

.hero-right-item:nth-child(4) {
  color: var(--color-primary);
  font-size: 38px;
  font-weight: 200;
}

.hero-right-item:nth-child(5) {
  color: #e7ebee;
  font-size: 116px;
  font-weight: 700;
}

.hero-right-image {
  width: 100%;
  margin-top: 8px;
}

.hero-right-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
}

/* ==========================================
   RESPONSIVE
   ========================================== */

@media (max-width: 1024px) {
  .hero-section-content {
    gap: 30px;
  }

  .hero-left-title {
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  .hero-section-block {
    padding: 60px 20px;
  }

  .hero-section-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-section-col-left {
    display: flex;
    flex-direction: column;
  }

  .hero-left-side-image {
    order: 2;
  }

  .hero-left-title {
    order: 1;
    font-size: 26px;
  }

  .hero-left-image {
    order: 3;
  }

  .hero-left-text-1 {
    order: 4;
  }

  .hero-left-text-2 {
    order: 5;
  }

  .hero-left-content-wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero-section-col-right {
    gap: 12px;
  }

  .hero-right-item {
    padding: 0px 18px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .hero-section-block {
    padding: 40px 15px;
  }

  .hero-section-container {
    padding: 0 10px;
  }

  .hero-left-title {
    font-size: 22px;
  }

  .hero-left-text-1 {
    font-size: 18px;
  }

  .hero-left-text-2 {
    font-size: 15px;
  }
}
