/* =========================================================
   CONTACTO.CSS - SISTEMAS DE NICARAGUA
   ========================================================= */

/* =========================================
   01. FONDO GLOBAL
   ========================================= */
   body {
    background:
      linear-gradient(rgba(241, 245, 249, 0.70), rgba(241, 245, 249, 0.70)),
      url('../img/fondos/ejemplo.jpeg') no-repeat center center fixed !important;
    background-size: cover !important;
    color: var(--text);
    min-height: 100vh;
  }
  
  /* =========================================
     02. TARJETAS DE CONTACTO
     ========================================= */
  .contact-card {
    background: white;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-radius: 12px;
    padding: 40px;
    height: 100%;
  }
  
  /* =========================================
     03. LISTA DE CONTACTO
     ========================================= */
  .contact-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 30px;
  }
  
  .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 15px;
    border-radius: 8px;
    transition: background 0.3s;
  }
  
  .contact-item:hover {
    background: #f8fafc;
  }
  
  .c-icon {
    width: 50px;
    height: 50px;
    background: rgba(11, 37, 69, 0.05);
    color: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: all 0.3s;
  }
  
  .contact-item:hover .c-icon {
    background: var(--navy);
    color: white;
    transform: scale(1.1);
  }
  
  .c-info h3 {
    margin: 0 0 5px 0;
    font-size: 1rem;
    color: #64748b;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
  }
  
  .c-info p,
  .c-info a {
    margin: 0;
    font-size: 1.1rem;
    color: var(--navy);
    font-weight: 600;
    text-decoration: none;
    line-height: 1.4;
  }
  
  /* =========================================
     04. BOTÓN WHATSAPP INTERNO
     ========================================= */
  .btn-wa-contact {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
    background: #25D366;
    color: white !important;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem !important;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  
  .btn-wa-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
  }
  
  /* =========================================
     05. FORMULARIO
     ========================================= */
  .form-grid {
    display: grid;
    gap: 15px;
    margin-top: 20px;
  }
  
  .input,
  .select,
  textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    background: #f8fafc;
    transition: all 0.3s;
    color: var(--navy);
  }
  
  .input:focus,
  .select:focus,
  textarea:focus {
    background: white;
    border-color: var(--accent);
    outline: none;
    box-shadow: 0 0 0 4px rgba(232, 93, 4, 0.1);
  }
  
  textarea {
    resize: vertical;
    min-height: 120px;
  }
  
  .contact-submit {
    margin-top: 10px;
  }
  
  /* =========================================
     06. RESPONSIVE
     ========================================= */
  @media (max-width: 900px) {
    .contact-card {
      padding: 25px;
    }
  
    .contact-item {
      padding: 10px 0;
    }
  }