:root {
  --weftun-font: 'Inter Tight', sans-serif;
  --weftun-radius: 16px;
  --weftun-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  --weftun-transition: all 0.3s ease-in-out;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px; /* Compensa la navbar fija */
}

body {
  font-family: var(--weftun-font);
  color: #111;
  background-color: #fdfdfd;
}

/* NAVBAR */
.custom-navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: var(--weftun-transition);
}
.navbar-logo {
  height: 40px;
  width: auto;
}
.nav-link {
  font-weight: 500;
  color: #333 !important;
  transition: var(--weftun-transition);
}
.nav-link:hover {
  color: #dc3545 !important;
}

/* HERO SECTION */
.hero-section {
  padding-top: 60px;
  padding-bottom: 40px;
}
.hero-img {
  max-height: 600px;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

/* CARDS & HOVER EFFECTS */
.custom-card {
  transition: var(--weftun-transition);
  overflow: hidden;
}
.custom-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--weftun-shadow) !important;
}
.card-img-top {
  height: 250px;
  object-fit: cover;
}

/* SOCIAL ICONS */
.social-links {
  margin-top: 20px;
}
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9rem;
  transition: var(--weftun-transition);
}
.social-icon:hover {
  transform: scale(1.1);
  opacity: 0.9;
  color: white;
}
.social-ig {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

/* MODAL TOAST */
.toast-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}
.toast-modal {
  width: 100%;
  max-width: 400px;
}