/*-- Use For Custom Styling --*/

/* Estilos para botones de descarga de aplicaciones */
.download-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 25px;
    align-items: center;
}

.app-badge-link {
    display: inline-block;
    transition: transform 0.3s ease, opacity 0.3s ease;
    text-decoration: none;
}

.app-badge-link:hover {
    transform: translateY(-5px);
    opacity: 0.9;
}

.app-badge {
    height: 60px;
    width: auto;
    display: block;
    cursor: pointer;
    transition: filter 0.3s ease;
}

.app-badge:hover {
    filter: brightness(1.1);
}

/* Responsive para móviles */
@media (max-width: 768px) {
    .download-buttons {
        justify-content: center;
        gap: 10px;
    }
    
    .app-badge {
        height: 50px;
    }
}

@media (max-width: 480px) {
    .download-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .app-badge {
        height: 45px;
    }
}