/* Source: app/templates/pages/contact.html — Figma "Formulario de contacto" (2615:1673) */
.contact-figma-main {
    padding: 66px 0 110px;
  }

  /* Títol 32/400 + subtítol 18/200, bloc a y=194 amb 15px entre línies */
  .contact-figma-main .figma-title {
    width: auto;
    min-height: 0;
    font-size: 32px;
    line-height: 33px;
    font-weight: 400;
    color: #111;
    margin: 0 0 15px 3px;
  }

  .contact-figma-main .figma-subtitle {
    font-size: 18px;
    line-height: 18px;
    font-weight: 200;
    color: #111;
    margin: 0 0 0 3px;
  }

  .contact-figma-form {
    margin-top: 51px;
  }

  .contact-figma-form .row {
    display: grid;
    grid-template-columns: 395px 395px;
    gap: 34px 30px;
    margin: 0;
  }

  .contact-figma-form .row > [class*="col-"] {
    width: auto;
    max-width: none;
    padding: 0;
  }

  .contact-figma-form .contact-field-wide {
    grid-column: 1 / -1;
    margin-top: 0;
  }

  /* Figma: 39px entre Asunto i Mensaje (34 + 5) */
  .contact-figma-form .contact-field-message {
    margin-top: 5px;
  }

  .contact-figma-form label {
    display: block;
    font-size: 18px;
    line-height: 18px;
    font-weight: 300;
    color: #111;
    margin-bottom: 17px;
  }

  .contact-figma-form label.required::after {
    content: "*";
    color: #c64740;
  }

  .contact-figma-form .form-control {
    width: 100%;
    border: 1px solid #d1d1d1;
    border-radius: 0;
    min-height: 50px;
    padding: 12px 19px;
    font-size: 18px;
    line-height: 22px;
    font-weight: 300;
    color: #111;
    box-shadow: none;
  }

  .contact-figma-form textarea.form-control {
    display: block;
    min-height: 200px;
    line-height: 24px;
  }

  .contact-figma-form .figma-hint {
    color: #868686;
    font-size: 15px;
    line-height: 15px;
    font-weight: 300;
    margin-top: 17px;
  }

  /* Dropzone 600x152, vora discontínua 4/4, radi 4 */
  .contact-drop {
    width: 600px;
    height: 152px;
    margin: 43px 0 0;
    border: 1px dashed #d1d1d1;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 32px;
    cursor: pointer;
  }

  .contact-drop-icon {
    width: 24px;
    height: 24px;
    display: block;
  }

  .contact-drop-title {
    margin-top: 16px;
    font-size: 16px;
    line-height: 28px;
    font-weight: 400;
    color: #111;
  }

  .contact-drop-link {
    color: #513bfe;
    text-decoration: underline;
  }

  .contact-drop-hint {
    margin-top: 8px;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: #868686;
  }

  .contact-figma-form label.contact-privacy {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 30px 0 0;
    font-size: 14px;
    line-height: 20px;
    font-weight: 300;
    color: #111;
  }

  .contact-privacy input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    margin: 0;
    border: 1.5px solid #d1d1d1;
    border-radius: 6px;
    background: #fff;
    cursor: pointer;
  }

  .contact-privacy input[type="checkbox"]:checked {
    background: #513bfe url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='9' viewBox='0 0 12 9' fill='none'%3E%3Cpath d='M1 4.5L4.5 8L11 1' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center no-repeat;
    border-color: #513bfe;
  }

  .contact-privacy a {
    color: #513bfe;
    text-decoration: underline;
  }

  /* Botó 254x50, icona avió blanca al 50%, text 20/400 */
  .contact-send-btn.figma-btn {
    min-width: 254px;
    min-height: 50px;
    margin-top: 61px;
    gap: 8px;
    font-size: 20px;
    line-height: 25px;
    font-weight: 400;
  }

  .contact-send-icon {
    width: 20px;
    height: 16px;
    display: block;
  }

  @media (max-width: 900px) {
    .contact-figma-form .row {
      grid-template-columns: 1fr;
    }

    .contact-drop {
      width: 100%;
    }
  }
