﻿:root {
    --mint3: #3cd070;
    --magnea: #112668;
}

.text-magnea {
    color: var(--magnea) !important;
}

.btn-magnea {
    background-color: var(--magnea);
    border-color: var(--magnea);
    color: white;
    transition: all 0.3s ease;
}

    .btn-magnea:hover {
        background-color: #2ebf60;
        border-color: #2ebf60;
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(60, 208, 112, 0.3);
    }

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.hero-visual {
    animation: fadeInRight 1s ease-out 0.3s both;
}

.section {
    padding: 4rem 0;
}

.section-alt {
    background-color: #f8f9fa;
}

.hero-section {
    background: linear-gradient(135deg, #3CD070 0%, var(--magnea) 100%);
    min-height: 400px;
    color: var(--magnea);
}

.bg-gradient {
    background: linear-gradient(135deg, #3CD070 0%, var(--magnea) 100%);
    min-height: 400px;
}