/* 
   Arquivo CSS para adicionar elementos visuais premium
   Complementa o style.css com efeitos visuais sofisticados
*/

/* ===== EFEITOS VISUAIS PREMIUM ===== */

/* Animações de entrada */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Classes de animação */
.animate-fade-up {
    animation: fadeInUp 0.8s ease forwards;
}

.animate-fade-left {
    animation: fadeInLeft 0.8s ease forwards;
}

.animate-fade-right {
    animation: fadeInRight 0.8s ease forwards;
}

/* Atrasos de animação */
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }

/* Efeitos de hover premium */
.premium-hover {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.premium-hover:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Gradientes premium */
.premium-gradient {
    background: linear-gradient(135deg, var(--primary-color), #0c3b4d);
    color: var(--white-color);
}

.gold-gradient {
    background: linear-gradient(135deg, var(--accent-color), #b08c2f);
    color: var(--white-color);
}

/* Bordas decorativas */
.premium-border {
    position: relative;
}

.premium-border::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

/* Efeito de vidro (glassmorphism) */
.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Botões premium */
.btn-premium {
    background: linear-gradient(135deg, var(--accent-color), #b08c2f);
    color: var(--white-color);
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
}

/* Ícones premium */
.icon-premium {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(134, 183, 254, 0.2), rgba(26, 95, 122, 0.2));
    margin-bottom: 25px;
}

.icon-premium::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    z-index: -1;
    opacity: 0.3;
}

.icon-premium i {
    font-size: 2rem;
    color: var(--primary-color);
}

/* Cards premium */
.card-premium {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border-bottom: 3px solid var(--accent-color);
}

.card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Efeito de destaque para textos importantes */
.text-highlight {
    position: relative;
    display: inline-block;
}

.text-highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background-color: rgba(212, 175, 55, 0.2);
    z-index: -1;
    transition: height 0.3s ease;
}

.text-highlight:hover::after {
    height: 100%;
}

/* Separadores elegantes */
.elegant-divider {
    position: relative;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.1);
    margin: 40px 0;
}

.elegant-divider::before {
    content: '';
    position: absolute;
    top: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 7px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    border-radius: 3px;
}

/* Efeito de sombra para imagens */
.image-shadow {
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1), -20px -20px 60px rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    transition: all 0.4s ease;
}

.image-shadow:hover {
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.15), -10px -10px 30px rgba(255, 255, 255, 0.8);
}

/* Efeito de borda dourada */
.gold-border {
    position: relative;
    padding: 3px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--accent-color), #b08c2f);
}

.gold-border-inner {
    background-color: var(--white-color);
    border-radius: 7px;
    padding: 30px;
}

/* Efeito de texto dourado */
.gold-text {
    background: linear-gradient(135deg, var(--accent-color), #b08c2f);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
}

/* Efeito de fundo com padrão sutil */
.pattern-bg {
    background-color: var(--white-color);
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4af37' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Efeito de brilho em hover */
.shine-effect {
    position: relative;
    overflow: hidden;
}

.shine-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: skewX(-25deg);
    transition: all 0.75s ease;
}

.shine-effect:hover::before {
    left: 125%;
}
