
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.animate-spin-slow {
  animation: spin-slow 20s linear infinite;
}
 .whatsapp{

 background-color: green;
 
   .accordion {
    max-width: 700px;
    margin: 20px auto;
    font-family: Arial, sans-serif;
  }
  .accordion-item {
    border-bottom: 1px solid #ccc;
  }
  .accordion-item input {
    display: none;
  }
  .accordion-item label {
    display: block;
    padding: 15px;
    font-weight: bold;
    cursor: pointer;
    background: #f2f2f2;
    transition: background 0.3s ease;
  }
  .accordion-item label:hover {
    background: #e0e0e0;
  }
  .accordion-item .content {
    max-height: 0;
    overflow: hidden;
    padding: 0 15px;
    background: #fafafa;
    transition: max-height 0.3s ease;
  }
  .accordion-item input:checked ~ .content {
    max-height: 300px; /* Ajusta si querés más espacio */
    padding: 15px;
  }

 }