body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #f0f8ff;
  }
  
  .contacto {
    text-align: center;
    padding: 60px 20px;
    margin-top: 3px;
    margin-bottom: 100px;
    background: linear-gradient(to right, #dceeff, #fdf6f0);
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  .contacto h1 {
    font-size: 2.8em;
    color: #18469E;
    margin-bottom: 10px;
  }
  
  .contacto p {
    font-size: 1.2em;
    color: #555;
    margin-bottom: 70px;
  }
  
  .botones-contacto {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
  }
  
  .btn {
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    font-size: 1.2em;
    cursor: pointer;
    text-decoration: none;
    color: white;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
  }
  
  .btn:hover {
    transform: scale(1.05);
  }
  
  .whatsapp {
    background-color: #25D366;
  }
  
  .correo {
    background-color: #18469E;
  }
  
  .instagram {
    background-color: #E1306C;
  }
  
  .facebook {
    background-color: #3B5998;
  }
  
  