/* Hero Section Styles */
.hero {
  position: relative;
  overflow: hidden;
  padding: 2rem 0 6rem;
}

/* Caution Stripe at the bottom */
.hero-caution-stripe {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  height: 3rem;
  background-color: var(--color-preto);
}

.hero-caution-segment {
  height: 100%;
  flex: 1;
}

.hero-caution-segment:nth-child(odd) {
  background-color: var(--color-amarelo);
}

/* Hero Content */
.hero-container {
  position: relative;
  z-index: 2;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 1rem 0;
}

/* Hero Text Content */
.hero-text {
  text-align: center;
  max-width: 100%;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-title-highlight {
  color: var(--color-dourado);
}

.hero-title-secondary {
  color: var(--color-azul-zz);
}

.hero-description {
  font-size: 1.25rem;
  color: #555;
  margin-bottom: 1.5rem;
}

.hero-sub-description {
  font-size: 1rem;
  color: #666;
  margin-bottom: 2rem;
}

/* Hero Action Buttons */
.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  margin: 0 auto;
}

.hero-button {
  width: 100%;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.hero-button:hover {
  transform: scale(1.05);
}

.hero-button-icon {
  margin-right: 0.5rem;
}

/* Hero Visual (Ralph) */
.hero-visual {
  display: flex;
  justify-content: center;
  position: relative;
  width: 100%;
}

/* Service Features */
.hero-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

.hero-feature {
  background-color: white;
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-top: 0.25rem solid var(--color-dourado);
}

.hero-feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-azul-zz);
  margin-bottom: 0.5rem;
}

.hero-feature-description {
  color: #666;
  font-size: 0.95rem;
}

/* Media Queries */
@media (min-width: 768px) {
  .hero {
    padding: 3rem 0 6rem;
  }

  .hero-content {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }

  .hero-text {
    text-align: left;
    flex: 1;
    max-width: 50%;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-buttons {
    flex-direction: row;
    justify-content: flex-start;
    margin: 0;
  }

  .hero-button {
    width: auto;
  }

  .hero-visual {
    justify-content: flex-end;
    flex: 1;
  }

  .hero-features {
    grid-template-columns: repeat(3, 1fr);
  }
}
