/* =============================================
   Giulia Glass - Estilos Personalizados
   ============================================= */

:root {
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-bg: rgba(255, 255, 255, 0.1);
}

body {
    background-color: #F9FAFB;
    color: #111111;
    overflow-x: hidden;
}

/* Classes de Utilitários Personalizados */
.glass-panel {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.text-outline-hover {
    -webkit-text-stroke: 1px transparent;
    transition: all 0.3s ease;
}
.text-outline-hover:hover {
    -webkit-text-stroke: 1px #111;
    color: transparent;
}

/* Scrollbar Personalizada */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #111;
}

/* =============================================
   Animações
   ============================================= */

@keyframes pulse-subtle {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
.whatsapp-pulse {
    animation: pulse-subtle 2s infinite;
}

@keyframes zoom-out-slow {
    0% { transform: scale(1.15); }
    100% { transform: scale(1.0); }
}
.hero-zoom {
    animation: zoom-out-slow 12s ease-out forwards;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}
.shimmer-effect::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent 0%, rgba(255,255,255,0.4) 50%, transparent 100%);
    transform: skewX(-25deg) translateX(-150%);
    animation: shimmer 3s infinite 2s;
}

/* =============================================
   Efeito Fade In
   ============================================= */

.fade-element {
    opacity: 0;
    transform: translateY(2.5rem);
    filter: blur(4px);
    transition: all 1s ease-out;
}

.fade-element.visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.fade-element.fast-transition {
    transition-duration: 700ms;
}
