/* Custom Scrollbar */
textarea::-webkit-scrollbar,
::-webkit-scrollbar {
    width: 8px;
}

textarea::-webkit-scrollbar-track,
::-webkit-scrollbar-track {
    background: #201d12;
}

textarea::-webkit-scrollbar-thumb,
::-webkit-scrollbar-thumb {
    background: #433d28;
    border-radius: 4px;
}

textarea::-webkit-scrollbar-thumb:hover,
::-webkit-scrollbar-thumb:hover {
    background: #d4af35;
}

/* Animations & Glow Effects */
.glow-base {
    transition: box-shadow 0.4s ease-out, transform 0.3s ease;
}

.glow-primary {
    box-shadow: 0 0 20px rgba(212, 175, 53, 0.3);
}

.glow-primary:hover {
    box-shadow: 0 0 40px 5px rgba(212, 175, 53, 0.6);
    transform: translateY(-2px);
}

.glow-secondary:hover {
    box-shadow: 0 0 30px rgba(212, 175, 53, 0.5);
    transform: translateY(-2px);
}

.gold-glow {
    box-shadow: 0 0 20px rgba(238, 192, 43, 0.3);
}

/* Glassmorphism */
.glass-panel {
    background: rgba(30, 30, 30, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(238, 192, 43, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.glass-card:hover {
    border-color: rgba(212, 175, 53, 0.3);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

/* Text Gradients & Effects */
.text-gradient-gold {
    background: linear-gradient(135deg, #fff 30%, #eec02b 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: shine 5s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #d4af35 0%, #fae185 100%);
    color: #201d12;
    font-weight: 700;
    border-radius: 9999px;
    box-shadow: 0 0 20px rgba(212, 175, 53, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: pulse-gold 2s infinite;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.875rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.floating-cta:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 0 30px rgba(212, 175, 53, 0.6);
}

.floating-cta .material-symbols-outlined {
    margin-right: 0.5rem;
    font-size: 1.25rem;
}

@keyframes pulse-gold {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 53, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(212, 175, 53, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 53, 0);
    }
}

@media (max-width: 768px) {
    .floating-cta {
        bottom: 1.5rem;
        right: 1.5rem;
        padding: 0.75rem 1.5rem;
        font-size: 0.75rem;
    }

}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    background: #25D366;
    color: white;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: pulse-green 2s infinite;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.floating-whatsapp:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.6);
}

.floating-whatsapp svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 768px) {
    .floating-whatsapp {
        bottom: 1.5rem;
        left: 1.5rem;
        width: 3rem;
        height: 3rem;
    }

    .floating-whatsapp svg {
        width: 20px;
        height: 20px;
    }
}