/* Problema Section Styles */
.problema {
  padding: 4rem 0;
  background-color: #f8f9fa;
}

.problema-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.problema-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

/* Problems List Column */
.problema-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.problema-list-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-azul-zz);
  margin-bottom: 1.5rem;
}

.problema-item {
  background-color: white;
  border-radius: 0.5rem;
  padding: 1.5rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.problema-icon-container {
  background-color: var(--color-dourado);
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.problema-icon {
  color: var(--color-preto);
  font-size: 1.25rem;
}

.problema-content {
  flex: 1;
}

.problema-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-dourado);
  margin-bottom: 0.5rem;
}

.problema-description {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Solution Column with Ralph */
.solucao {
  background-color: white;
  border-radius: 0.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-top: 0.25rem solid var(--color-dourado);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.solucao-mascote {
  margin-bottom: 1.5rem;
}

.solucao-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-dourado);
  margin-bottom: 1rem;
}

.solucao-description {
  color: #666;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.solucao-contato {
  margin-bottom: 1rem;
}

.solucao-contato-label {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-azul-zz);
  display: block;
  margin-bottom: 0.5rem;
}

.solucao-phone {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-azul-zz);
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.solucao-phone:hover {
  text-decoration: underline;
}

.solucao-whatsapp {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-whatsapp);
  display: block;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.solucao-whatsapp:hover {
  text-decoration: underline;
}

.solucao-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-whatsapp);
  color: white;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  transition: transform 0.3s ease;
  gap: 0.5rem;
}

.solucao-button i {
  font-size: 20px;
}

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

/* Media Queries */
@media (min-width: 1024px) {
  .problema-grid {
    grid-template-columns: 3fr 2fr;
  }
}
