/* Panel 4 custom style for "Para Siempre Empieza Hoy" layout */
.panel4 {
  display: flex;
  flex-direction: row;
  min-height: 600px;
  align-items: center;
  padding: 40px 0;
}

.panel4-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.panel4-image img {
  width: 90%;
  max-width: 500px;
  filter: grayscale(100%);
  border-radius: 8px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.panel4-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-left: 40px;
}

.panel4-content h3 {
  font-family: "Georgia", serif;
  font-size: 1.1rem;
  font-weight: bold;
  letter-spacing: 1px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.panel4-content p {
  font-family: "Georgia", serif;
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 18px;
}

.panel4-monogram {
  font-family: "Georgia", serif;
  font-size: 5rem;
  color: #e0e0e0;
  font-weight: 500;
  letter-spacing: 2px;
  margin-top: 40px;
  user-select: none;
}

/* Mobile styles for Panel 4 */
@media (max-width: 768px) {
  .panel4 {
    flex-direction: column;
    min-height: auto;
    padding: 20px 0;
    gap: 24px;
  }

  .panel4-image {
    width: 100%;
  }

  .panel4-image img {
    width: 100%;
    max-width: none;
  }

  .panel4-content {
    padding-left: 0;
    padding: 0 10px;
    align-items: center;
    text-align: center;
  }

  .panel4-content h3 {
    font-size: 1rem;
  }

  .panel4-content p {
    font-size: 0.95rem;
  }

  .panel4-monogram {
    font-size: 3rem;
    margin-top: 20px;
  }
}
