* {
    scroll-behavior: smooth;
}

.gradient-hero {
    background: linear-gradient(135deg, #003366 0%, #1e3a5f 50%, #0a4d7a 100%);
}

.pulse-animation {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.shadow-premium {
    box-shadow: none;
}

.shadow-hover {
    transition: all 0.3s ease;
}

.shadow-hover:hover {
    box-shadow: none;
    transform: none;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: none;
    box-shadow: none;
}

.btn-secondary {
    background: linear-gradient(135deg, #003366 0%, #0a4d7a 100%);
    border: 2px solid #ff6b35;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #0a4d7a 0%, #003366 100%);
    transform: none;
}

.card-hover {
    transition: all 0.4s ease;
}

.card-hover:hover {
    transform: none;
    box-shadow: none;
}

.section-title {
    position: relative;
    padding-bottom: 1.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #ffa500);
    border-radius: 2px;
}

.form-input {
    transition: all 0.3s ease;
    border: 2px solid #e5e7eb;
}

.form-input:focus {
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
    outline: none;
}

.badge-material {
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
    border: 2px solid #d1d5db;
    transition: all 0.3s ease;
}

.badge-material:hover {
    background: linear-gradient(135deg, #e5e7eb, #d1d5db);
    border-color: #ff6b35;
    transform: none;
}

.shadow-xl, .shadow-2xl, .shadow-lg, .shadow-md, .shadow-sm {
    box-shadow: none !important;
}

.floating-whatsapp {
    animation: none;
}
