.section-hero-consultadoria {
  background-color: #f2f2f2;
  padding: 0 45px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.section-hero-consultadoria-container {
  max-width: 1500px;
  width: 100%;
  margin: 0 auto;
}

.section-hero-consultadoria-content {
  text-align: center;
  margin-bottom: 50px;
}

.section-hero-consultadoria-title {
    font-size: 50px;
    font-weight: 600;
    color: #1c1c1c;
    margin-bottom: 30px;
    line-height: normal;
    letter-spacing: -2.35px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
}

.section-hero-consultadoria-subtitle {
    font-family: 'Open Sans';
    font-size: 22px;
    color: #1c1c1c;
    margin-top: 40px;
    margin-bottom: 40px;
    letter-spacing: -0.8px;
    line-height: 150%;
    max-width: 65%;
    margin-left: auto;
    margin-right: auto;
}

.section-hero-consultadoria-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}

.section-hero-consultadoria-btn {
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  border: 2px solid #9a2686;
}

.section-hero-consultadoria-btn-primary {
  background-color: #9a2686;
  color: white;
}

.section-hero-consultadoria-btn-primary:hover {
  background-color: #7d1f6b;
  transform: translateY(-2px);
}

.section-hero-consultadoria-btn-secondary {
  background-color: transparent;
  color: #9a2686;
}

.section-hero-consultadoria-btn-secondary:hover {
  background-color: #9a2686;
  color: white;
  transform: translateY(-2px);
}

.section-hero-consultadoria-arrow {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.section-hero-consultadoria-image-container {
  width: 100%;
/*  max-width: 1000px;*/
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.section-hero-consultadoria-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  
}

/* NOVO LAYOUT: título e botões à esquerda, parágrafo à direita */
.section-hero-consultadoria-content.titulo-botoes-paragrafo {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  text-align: left;
  flex-wrap: wrap;
}

.section-hero-consultadoria-content.titulo-botoes-paragrafo
  .section-hero-consultadoria-left {
  flex: 1;
  min-width: 300px;
}

.section-hero-consultadoria-content.titulo-botoes-paragrafo
  .section-hero-consultadoria-right {
  flex: 1;
  min-width: 300px;
	  padding-top: 5%;
}

.section-hero-consultadoria-content.titulo-botoes-paragrafo
  .section-hero-consultadoria-buttons {
  justify-content: flex-start;
  margin-top: 20px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .section-hero-consultadoria {
    padding: 40px 15px;
    min-height: auto;
  }

  .section-hero-consultadoria-title {
    margin-left: auto;
    font-size: 2.2rem;
    margin-bottom: 20px;
  }

  .section-hero-consultadoria-subtitle {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }

  .section-hero-consultadoria-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }

  .section-hero-consultadoria-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
    padding: 18px 25px;
    margin-left: 0;
  }

  .section-hero-consultadoria-content {
    margin-bottom: 40px;
  }

  .section-hero-consultadoria-image-container {
    border-radius: 15px;
  }

  .section-hero-consultadoria-image {
    min-height: 250px;
    object-fit: cover;
  }
  .section-hero-consultadoria-content.titulo-botoes-paragrafo {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .section-hero-consultadoria-content.titulo-botoes-paragrafo
    .section-hero-consultadoria-left,
  .section-hero-consultadoria-content.titulo-botoes-paragrafo
    .section-hero-consultadoria-right {
    width: 100%;
    max-width: 800px;
    text-align: center;
  }

  /* REORDENAR os elementos para: título → parágrafo → botões */
  .section-hero-consultadoria-left {
    order: 1;
  }

  .section-hero-consultadoria-right {
    order: 2;
  }

  .section-hero-consultadoria-buttons {
    order: 3;
    justify-content: center;
    margin-top: 30px;
  }
}

@media (max-width: 480px) {
  .section-hero-consultadoria-title {
    font-size: 1.8rem;
  }

  .section-hero-consultadoria-subtitle {
    font-size: 1rem;
    max-width: 100%;
  }

  .section-hero-consultadoria-btn {
    font-size: 0.85rem;
    padding: 10px 20px;
  }
}

/* Ensure image loads properly on all devices */
@media (max-width: 768px) {
  .section-hero-consultadoria-image {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    max-width: 100% !important;
  }
}
