body {
    font-family: 'Poppins', sans-serif;
}
.text-primary {
    color: #10b981; /* emerald-500/600 approx */
}
.bg-primary {
    background-color: #10b981;
}
.bg-primary-hover:hover {
    background-color: #059669;
}
/* Custom underline effect for 'amor' if needed, mimicking the green line */
.highlight-underline {
    position: relative;
    display: inline-block;
}
.highlight-underline::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 100%;
    height: 8px;
    background-color: #10b981;
    opacity: 0.2;
    z-index: -1;
    border-radius: 2px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9; /* slate-100 */
}

::-webkit-scrollbar-thumb {
    background: #10b981; /* emerald-500 */
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #059669; /* emerald-600 */
}

/* Firefox support */
html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: #10b981 #f1f5f9;
}

/* Animations */
@keyframes bounceIn {
    0% { opacity: 0; transform: scale(0.9) translateY(10px); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
}

.animate-bounce-in {
    animation: bounceIn 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

@keyframes drawLine {
    0% { stroke-dasharray: 100; stroke-dashoffset: 100; }
    100% { stroke-dasharray: 100; stroke-dashoffset: 0; }
}

.animate-draw-line {
    animation: drawLine 2s ease-out forwards infinite alternate;
}
