.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}
.soft-elevation {
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
}
.premium-card {
    background: #ffffff;
    border: 1px solid #E9ECEF;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.premium-card:hover {
    transform: translateY(-12px);
    box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 100, 0, 0.1);
}
.gradient-mesh {
    background-color: #f5fced;
    background-image: 
        radial-gradient(at 0% 0%, rgba(141, 251, 119, 0.15) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(253, 139, 0, 0.05) 0px, transparent 50%);
}
.hero-gradient { 
    background: radial-gradient(circle at top left, #008c00 0%, #004d00 100%); 
}
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}
.animate-float {
    animation: float 5s ease-in-out infinite;
}
@keyframes shake {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    50% { transform: rotate(10deg); }
    75% { transform: rotate(-10deg); }
}
.animate-shake {
    animation: shake 2s infinite ease-in-out;
}
.step-line::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    width: 100%;
    height: 2px;
    background: repeating-linear-gradient(to right, #008c00, #008c00 4px, transparent 4px, transparent 8px);
    z-index: 0;
}

/* Storefront Awning (Toldo de Fachada) */
.awning {
    width: 100%;
    height: 40px;
    background: repeating-linear-gradient(
        to right,
        #008c00,
        #008c00 60px,
        #ffffff 60px,
        #ffffff 120px
    );
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 20;
    margin-bottom: -15px; /* Overlap with the container below */
}
.awning::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100%;
    height: 15px;
    background: repeating-linear-gradient(
        to right,
        rgba(0, 0, 0, 0.15),
        rgba(0, 0, 0, 0.15) 60px,
        rgba(0, 0, 0, 0.05) 60px,
        rgba(0, 0, 0, 0.05) 120px
    );
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 0);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}
.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

@keyframes bgPan {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}
.animate-bg-pan {
    animation: bgPan 20s ease-in-out infinite;
    transform-origin: center center;
}

.delay-100 { animation-delay: 100ms; }
.delay-200 { animation-delay: 200ms; }
.delay-300 { animation-delay: 300ms; }
.delay-400 { animation-delay: 400ms; }

.hover-lift {
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.hover-lift:hover {
    transform: translateY(-8px);
}

