.contacto-general {
    padding: var(--space-2) 20px var(--space-5);
    text-align: center;
    background-color: #f8f9fa;
    animation: fadeIn 0.8s ease;
  }

  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .contacto-container {
    max-width: 1100px;
    margin: 0 auto;
  }

  .contacto-general h1 {
    font-size: var(--fs-h1);
    color: #2e7d32;
    margin-bottom: var(--space-3);
    font-weight: 700;
    line-height: var(--lh-tight);
    position: relative;
  }

  .contacto-general h1::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: #2e7d32;
    margin: 10px auto 0;
    border-radius: 3px;
  }

  .contacto-general p {
    font-size: var(--fs-md);
    color: #444;
    margin-bottom: var(--space-5);
    line-height: var(--lh-relax);
  }

  .contacto-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
  }

  /* ======== BLOQUE INFO ======== */
  .contacto-info {
    flex: 1;
    min-width: 320px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    animation: fadeIn 1s ease;
  }

  /* 🔹 Quitamos subrayados de todos los enlaces */
  .contacto-link {
    text-decoration: none;
    color: inherit;
  }

  .contacto-link:hover,
  .contacto-link:focus,
  .contacto-link:active {
    text-decoration: none;
    color: inherit;
  }

  .contacto-item {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    cursor: pointer;
  }

  .contacto-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(46,125,50,0.25);
  }

  .contacto-item i {
    font-size: 1.6rem;
    color: #2e7d32;
    background: rgba(46,125,50,0.1);
    padding: 12px;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .contacto-item h3 {
    font-size: var(--fs-h5);
    color: #2e7d32;
    margin-bottom: 4px;
    text-align: left;
  }

  .contacto-item p {
    margin: 0;
    color: #444;
    text-align: left;
    font-size: var(--fs-sm);
    line-height: var(--lh-base);
  }

  /* ======== FORMULARIO ======== */
  .contacto-form {
    flex: 1;
    min-width: 340px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
    padding: 30px;
    text-align: left;
    border-top: 5px solid #2e7d32;
    animation: fadeIn 1.2s ease;
  }

  .contacto-form h2 {
    color: #2e7d32;
    font-size: var(--fs-h3);
    text-align: center;
    margin-top: 0;
    margin-bottom: var(--space-3);
  }

  .contacto-form .form-group {
    margin-bottom: var(--space-3);
    display: flex;
    flex-direction: column;
  }

  .contacto-form label {
    font-weight: 600;
    color: #2e7d32;
    margin-bottom: 6px;
    font-size: var(--fs-sm);
  }

  .contacto-form input,
  .contacto-form textarea,
  .contacto-form select {
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: var(--fs-md);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background-color: #fff;
    color: #333;
  }

  .contacto-form input:focus,
  .contacto-form textarea:focus,
  .contacto-form select:focus {
    border-color: #2e7d32;
    box-shadow: 0 0 0 3px rgba(46,125,50,0.15);
    outline: none;
  }

  .btn-enviar {
    background: linear-gradient(135deg, #2e7d32, #43a047);
    color: white;
    border: none;
    padding: 0.9rem 1.4rem;
    font-size: var(--fs-md);
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    width: 100%;
    font-weight: 600;
  }

  .btn-enviar:hover {
    background: linear-gradient(135deg, #256628, #388e3c);
    transform: translateY(-2px);
  }

  .contacto-form .confirmacion {
    background: #e8f5e9;
    color: #2e7d32;
    border-radius: 8px;
    padding: 14px;
    margin-top: 18px;
    text-align: center;
    font-weight: bold;
    font-size: var(--fs-md);
    display: none;
  }

  .legal-consent {
    margin-top: var(--space-2);
    font-size: var(--fs-sm);
    color: #444;
    margin-bottom: var(--space-2);
  }

  .legal-consent a {
    color: #2e7d32;
    text-decoration: underline;
    font-weight: 500;
  }

  .legal-consent a:hover {
    text-decoration: none;
  }

  @media (max-width: 768px) {
    .contacto-grid {
      flex-direction: column;
      gap: 30px;
    }

    .contacto-form,
    .contacto-info {
      width: 100%;
    }

    .contacto-item i {
      font-size: 1.4rem;
      width: 38px;
      height: 38px;
      padding: 10px;
    }

    .contacto-general {
      padding: var(--space-2) 15px var(--space-7);
    }
  }