* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Mulish", sans-serif;
  background: linear-gradient(135deg, #e7f0f7 0%, #ffffff 100%);
}

/* CONTENEDOR */
.trends-wrapper {
  padding: 60px 20px;
}

.trends-container {
  max-width: 900px;
  margin: auto;
  background: #ffffff;
  border-radius: 28px;
  padding: 45px;
  box-shadow: 0 20px 50px rgba(34, 54, 69, 0.15);
}

/* HEADER */
.trends-header {
  text-align: center;
  margin-bottom: 35px;
}

.badge {
  display: inline-block;
  background: linear-gradient(90deg, #0b6fa4, #1e9ac7);
  color: white;
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.trends-header h1 {
  font-family: "Poppins", sans-serif;
  font-size: 34px;
  color: #223645;
}

.trends-header h3 {
  font-size: 22px;
  color: #0b6fa4;
  margin-bottom: 10px;
}

.trends-info {
  color: #696A87;
  font-size: 15px;
  line-height: 1.6;
}

/* FORM */
.trends-form {
  margin-top: 20px;
}

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full {
  grid-column: span 2;
}

.form-group label {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 6px;
  color: #223645;
}

.form-group input {
  height: 50px;
  border: none;
  border-radius: 25px;
  padding: 0 15px;
  background: #f4f7fb;
  font-size: 15px;
}

.form-group input:focus {
  outline: none;
  border: 2px solid #1e9ac7;
  background: #fff;
}

/* BOTON */
.submit {
  text-align: center;
  margin-top: 25px;
}

.submit button {
  background: linear-gradient(90deg, #e6252a, #fa0368);
  color: white;
  border: none;
  padding: 14px 35px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.submit button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(230, 37, 42, 0.3);
}

/* MOBILE */
@media (max-width: 768px) {
  .grid {
    grid-template-columns: 1fr;
  }

  .form-group.full {
    grid-column: span 1;
  }

  .trends-container {
    padding: 30px 20px;
  }

  .trends-header h1 {
    font-size: 26px;
  }
}