/* Custom Utilities for SACKS CMA Website */

@tailwind base;
@tailwind components;
@tailwind utilities;

/* 
 * Nota: Tailwind CSS está sendo carregado via CDN no HTML para prototipagem rápida.
 * Estas classes complementares servem para efeitos específicos.
 */

.clip-path-slant {
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.text-glow {
    text-shadow: 0 0 20px rgba(6, 182, 212, 0.5);
    /* Brand Cyan Glow */
}

/* Animações sutis */
@keyframes fade-in-up {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fade-in-up 0.8s ease-out forwards;
}

/* Cinematic Background Animation */
@keyframes cinematic-zoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

.animate-cinematic-zoom {
    animation: cinematic-zoom 20s ease-in-out infinite alternate;
    will-change: transform;
}

/* Interactive List Items */
.tech-list-item {
    transition: all 0.3s ease;
}

.tech-list-item:hover {
    background-color: rgba(6, 182, 212, 0.05);
    transform: translateX(4px);
    border-radius: 4px;
}

/* Logo Shine Effect */
@keyframes shine {
    0% {
        left: -100%;
        opacity: 0;
    }

    10% {
        opacity: 0.5;
    }

    20% {
        left: 200%;
        opacity: 0;
    }

    100% {
        left: 200%;
        opacity: 0;
    }
}

.logo-shine {
    position: relative;
    overflow: hidden;
}

.logo-shine::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.4) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    animation: shine 8.5s ease-in-out infinite;
    pointer-events: none;
}