html { scroll-behavior: smooth; }
body { font-family: 'Montserrat', sans-serif; }
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 50;
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.glass {
    background: rgba(255,255,255,0.7);
    box-shadow: 0 8px 32px 0 rgba(31,38,135,0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.18);
}
.hero-bg {
    background: linear-gradient(120deg, #38bdf8 0%, #22d3ee 100%);
    position: relative;
    overflow: hidden;
}
.hero-bg::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #fbbf24 0%, transparent 70%);
    opacity: 0.3;
    z-index: 0;
    animation: float 8s ease-in-out infinite alternate;
}
@keyframes float {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(40px) scale(1.1); }
}
.hero-content { position: relative; z-index: 1; }
/* Removed .icon-card svg rule for better control with Tailwind */
.footer-link:hover { color: #22d3ee; }
.sticky-nav {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 8px 0 rgba(31,38,135,0.07);
    transition: background 0.3s;
}
.nav-link {
    transition: color 0.2s;
}
.nav-link:hover, .nav-link.active {
    color: #0ea5e9;
}
.gallery-img {
    transition: transform 0.3s, box-shadow 0.3s;
}
.gallery-img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 32px 0 rgba(31,38,135,0.15);
}