.contacto-block-1 h1 strong {
  color: var(--color-rojo-2);
}

.contacto-block-1 h1 {
  font-size: 55px;
  font-weight: 900;
}

@media (max-width: 700px) {
  .contacto-block-1 h1 {
    font-size: 30px;
    font-weight: 900;
  }
}

.contacto-block-1 p {
  max-width: 570px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  color: var(--color-gris-parrafos);
}

.custom-code .code-card {
  max-width: 750px;
  background: var(--color-negro-4);
  border-radius: 10px;
  padding: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  position: relative;
  margin-top: 35px;
  margin-bottom: 35px;
  margin-left: auto;
  margin-right: auto;
}

.custom-code .header {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.custom-code .dots {
  display: flex;
  gap: 6px;
  margin-right: 12px;
}

.custom-code .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.custom-code .red {
  background: #ff5f56;
}

.custom-code .yellow {
  background: #ffbd2e;
}

.custom-code .green {
  background: #27c93f;
}

.custom-code .title {
  color: #6c7a89;
  font-size: 12px;
  letter-spacing: 1px;
}

.custom-code .code {
  font-family: 'Fira Code', monospace;
  font-size: 14px;
  color: #c9d1d9;
}

.custom-code .line {
  display: block;
  margin-bottom: 6px;
}

.custom-code .num {
  display: inline-block;
  width: 30px;
  color: #3b4654;
}

.custom-code .keyword {
  color: #ff7b72;
}

.custom-code .fn {
  color: #d2a8ff;
}

.custom-code .type {
  color: #79c0ff;
}

.custom-code .string {
  color: #a5d6ff;
}

.custom-code .comment {
  color: #6e7681;
}

.custom-code .status {
  position: absolute;
  bottom: 12px;
  right: 16px;
  font-size: 12px;
  color: #6e7681;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 800;
}

.custom-code .status-dot {
  width: 8px;
  height: 8px;
  background: #2ea043;
  border-radius: 50%;
}

.contacto-form label {
  color: var(--color-blanco-1);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 300;
}

.contacto-form .btn-rojo {
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
  font-weight: 800;
  letter-spacing: 2px;
}

.seccion-contacto:after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at right top, rgba(136,0,0,0.09), transparent 50%);
  pointer-events: none;
}

.contacto-form {
  margin-top: 30px;
  margin-bottom: 30px;
  background-color: var(--color-negro-3);
}

.contacto-form .btn-rojo .bi {
  font-size: 22px;
  margin-left: 5px;
}

