
/* Global Styles */
body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    scroll-behavior: smooth;
    background-color: #ffffff;
    color: #0f172a;
    margin: 0;
}

/* Brand Colors & Utilities */
.text-gota { color: #388e3c; }
.bg-gota { background-color: #388e3c; }
.border-gota { border-color: #388e3c; }

.glass-effect {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.gota-gradient {
    background: linear-gradient(135deg, #388e3c 0%, #4caf50 100%);
}

.gota-shadow {
    box-shadow: 0 10px 30px -5px rgba(56, 142, 60, 0.25);
}

/* Logo Pin Animation */
@keyframes pin-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

.logo-pin {
    animation: pin-bounce 2s infinite ease-in-out;
}

/* Custom UI Helpers */
.transition-standard {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }
