:root {
  --brand: #111827;
  --accent: #f5b2d2;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto,
               Helvetica, Arial, 'Apple Color Emoji', 'Segoe UI Emoji';
}

.glass {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.75);
}

/* Animation menu mobile */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fadeIn {
  animation: fadeIn 0.25s ease-out;
}

/* SnapWidget - responsive height */
.snapwidget-ig{
  border: none !important;
  overflow: hidden !important;
  width: 100% !important;
  max-width: 900px;
  height: 600px;           /* desktop */
  display: block;
}

/* Mobile */
@media (max-width: 600px){
  .snapwidget-ig{
    height: 215px;         /* ↓ ajuste ici */
  }
}