/* Cotizap Section Styles */

/* Neon Glow Animation for the Badge */
@keyframes neon-pulse {
    0% {
        box-shadow: 0 0 5px rgba(0, 210, 106, 0.2), 0 0 10px rgba(0, 210, 106, 0.1);
    }

    50% {
        box-shadow: 0 0 10px rgba(0, 210, 106, 0.5), 0 0 20px rgba(0, 210, 106, 0.3);
    }

    100% {
        box-shadow: 0 0 5px rgba(0, 210, 106, 0.2), 0 0 10px rgba(0, 210, 106, 0.1);
    }
}

#agrocotiza .agrocotiza-badge {
    animation: neon-pulse 2s infinite;
}

/* Floating Animation for the Phone Mockup */
@keyframes float-phone {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

#agrocotiza .phone-mockup-container {
    animation: float-phone 6s ease-in-out infinite;
}

/* Gradient Text for AgroCotiza Title (Optional override) */
.text-agrocotiza-gradient {
    background: linear-gradient(to right, #ffffff, #00D26A);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.wave-logo-blue {
    filter: brightness(0) saturate(100%) invert(46%) sepia(99%) saturate(1854%) hue-rotate(166deg) brightness(93%) contrast(96%);
}